diff --git a/analyze_construction_tasks.py b/analyze_construction_tasks.py new file mode 100644 index 0000000..2879033 --- /dev/null +++ b/analyze_construction_tasks.py @@ -0,0 +1,39 @@ +import boto3 +import os +import json +import re +from botocore.exceptions import ClientError +import json +import argparse +from tqdm import tqdm +import glob + + +def analyze_json_file(file_path): + """ + Analyzes a single JSON file to extract the task outcome. + + Args: + file_path (str): Path to the JSON file. + + Returns: + str or None: The task outcome string if found, otherwise None. + """ + try: + with open(file_path, 'r') as f: + data = json.load(f) + if 'turns' in data and isinstance(data['turns'], list): + for turn in reversed(data['turns']): # Check turns from the end + if turn.get('role') == 'system' and isinstance(turn.get('content'), str): + if "Task successful ended with code : 2" in turn['content'] or "Task ended in score: 1" in turn["content"]: + return True + return False + except FileNotFoundError: + print(f"Error: File not found: {file_path}") + return None + except json.JSONDecodeError: + print(f"Error: Invalid JSON format in: {file_path}") + return None + except Exception as e: + print(f"An unexpected error occurred while processing {file_path}: {e}") + return None \ No newline at end of file diff --git a/analyze_cooking_tasks.py b/analyze_cooking_tasks.py new file mode 100644 index 0000000..d727d5b --- /dev/null +++ b/analyze_cooking_tasks.py @@ -0,0 +1,222 @@ +import os +import json +import re +from collections import defaultdict + +def extract_cooking_items(exp_dir): + """Extract cooking items from experiment directory name.""" + # Remove prefix and blocked access part + clean_name = re.sub(r'^multiagent_cooking_', '', exp_dir) + clean_name = re.sub(r'_blocked_access_[0-9_]+$', '', clean_name) + + # Extract individual items + items = [] + for item_match in re.finditer(r'([0-9]+)_([a-zA-Z_]+)', clean_name): + count = int(item_match.group(1)) + item = item_match.group(2) + # Remove trailing underscores to fix the item name issue + item = item.rstrip('_') + items.append(item) + + return items + +def analyze_experiments(root_dir): + # Store results by number of blocked agents + blocked_access_results = defaultdict(lambda: { + "success": 0, + "total": 0, + "cake_success": 0, + "cake_total": 0, + "non_cake_success": 0, + "non_cake_total": 0 + }) + + # Store results by cooking item + cooking_item_results = defaultdict(lambda: { + "success": 0, + "total": 0 + }) + + # Keep track of all unique cooking items + all_cooking_items = set() + + # Get a list of all experiment directories + experiment_dirs = [d for d in os.listdir(root_dir) if os.path.isdir(os.path.join(root_dir, d)) + and d.startswith("multiagent_cooking_")] + + for exp_dir in experiment_dirs: + # Extract cooking items + cooking_items = extract_cooking_items(exp_dir) + + # Add to unique items set + all_cooking_items.update(cooking_items) + + # Check if experiment involves cake + has_cake = any(item == "cake" for item in cooking_items) + + # Extract blocked access information from directory name + blocked_access_match = re.search(r'blocked_access_([0-9_]+)$', exp_dir) + + if blocked_access_match: + blocked_access_str = blocked_access_match.group(1) + # Count how many agents have blocked access + num_blocked_agents = len(blocked_access_str.split('_')) + blocked_key = f"{num_blocked_agents} agent(s)" + else: + # No agents blocked + blocked_key = "0 agent(s)" + + # Check if the task was successful + is_successful = False + full_exp_path = os.path.join(root_dir, exp_dir) + + # Get all JSON files in the experiment directory + agent_files = [f for f in os.listdir(full_exp_path) if f.endswith(".json")] + + # Check each agent file for success information + for agent_file in agent_files: + agent_file_path = os.path.join(full_exp_path, agent_file) + + try: + with open(agent_file_path, 'r') as f: + agent_data = json.load(f) + + # Check for success in the turns data + if "turns" in agent_data: + for turn in agent_data["turns"]: + if turn.get("role") == "system" and "content" in turn: + if isinstance(turn["content"], str) and "Task ended with score : 1" in turn["content"]: + is_successful = True + break + + # If we found success, no need to check other files + if is_successful: + break + + except (json.JSONDecodeError, IOError) as e: + print(f"Error reading {agent_file_path}: {e}") + # Continue to check other agent files instead of failing + continue + + # Update cooking item results + for item in cooking_items: + cooking_item_results[item]["total"] += 1 + if is_successful: + cooking_item_results[item]["success"] += 1 + + # Update the appropriate blocked access counters + # First update the category-specific counters + if has_cake: + blocked_access_results[blocked_key]["cake_total"] += 1 + if is_successful: + blocked_access_results[blocked_key]["cake_success"] += 1 + else: + blocked_access_results[blocked_key]["non_cake_total"] += 1 + if is_successful: + blocked_access_results[blocked_key]["non_cake_success"] += 1 + + # Only count non-cake experiments in the main totals + blocked_access_results[blocked_key]["total"] += 1 + if is_successful: + blocked_access_results[blocked_key]["success"] += 1 + + return blocked_access_results, cooking_item_results, all_cooking_items + +def print_blocked_results(results): + print("\nExperiment Results by Number of Agents with Blocked Access (Excluding Cake Experiments):") + print("=" * 80) + print(f"{'Blocked Agents':<15} | {'Success Rate':<15} | {'Success/Total':<15} | {'Cake Tasks':<15} | {'Non-Cake Tasks':<15}") + print("-" * 80) + + # Calculate totals + total_success = 0 + total_experiments = 0 + total_cake = 0 + total_non_cake = 0 + + # Sort by number of blocked agents + for key in sorted(results.keys(), key=lambda x: int(x.split()[0])): + success = results[key]["success"] + total = results[key]["total"] + cake_total = results[key]["cake_total"] + non_cake_total = results[key]["non_cake_total"] + + # Verify that non_cake_total matches total + if non_cake_total != total: + print(f"Warning: Non-cake total ({non_cake_total}) doesn't match the total ({total}) for {key}") + + total_success += success + total_experiments += total + total_cake += cake_total + total_non_cake += non_cake_total + + success_rate = (success / total * 100) if total > 0 else 0 + + print(f"{key:<15} | {success_rate:>6.2f}% | {success}/{total:<13} | {cake_total:<15} | {non_cake_total:<15}") + + # Calculate overall success rate (excluding cake experiments) + overall_success_rate = (total_success / total_experiments * 100) if total_experiments > 0 else 0 + + print("-" * 80) + print(f"{'Overall':<15} | {overall_success_rate:>6.2f}% | {total_success}/{total_experiments:<13} | {total_cake:<15} | {total_non_cake:<15}") + + # Print cake experiment details + print("\nCake Experiment Details:") + print("=" * 60) + print(f"{'Blocked Agents':<15} | {'Success Rate':<15} | {'Success/Total':<15}") + print("-" * 60) + + cake_total_success = 0 + cake_total_experiments = 0 + + for key in sorted(results.keys(), key=lambda x: int(x.split()[0])): + cake_success = results[key]["cake_success"] + cake_total = results[key]["cake_total"] + + cake_total_success += cake_success + cake_total_experiments += cake_total + + cake_success_rate = (cake_success / cake_total * 100) if cake_total > 0 else 0 + + print(f"{key:<15} | {cake_success_rate:>6.2f}% | {cake_success}/{cake_total}") + + cake_overall_success_rate = (cake_total_success / cake_total_experiments * 100) if cake_total_experiments > 0 else 0 + + print("-" * 60) + print(f"{'Overall':<15} | {cake_overall_success_rate:>6.2f}% | {cake_total_success}/{cake_total_experiments}") + +def print_cooking_items(cooking_items): + print("\nUnique Cooking Items Found:") + print("=" * 60) + print(", ".join(sorted(cooking_items))) + print(f"Total unique items: {len(cooking_items)}") + +def print_item_results(item_results): + print("\nExperiment Results by Cooking Item:") + print("=" * 60) + print(f"{'Cooking Item':<20} | {'Success Rate':<15} | {'Success/Total':<15}") + print("-" * 60) + + # Sort by item name + for item in sorted(item_results.keys()): + success = item_results[item]["success"] + total = item_results[item]["total"] + success_rate = (success / total * 100) if total > 0 else 0 + + print(f"{item:<20} | {success_rate:>6.2f}% | {success}/{total}") + + print("-" * 60) + +def main(): + # Update this path to your experiments directory + experiments_root = "../results/llama_70b_hells_kitchen_cooking_tasks" + + print(f"Analyzing experiments in: {os.path.abspath(experiments_root)}") + blocked_results, item_results, unique_items = analyze_experiments(experiments_root) + + print_blocked_results(blocked_results) + print_cooking_items(unique_items) + print_item_results(item_results) + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/evaluation_script.py b/evaluation_script.py index 2c8654c..3389262 100644 --- a/evaluation_script.py +++ b/evaluation_script.py @@ -8,6 +8,8 @@ import re import sys import os import time +import filecmp +import json BLOCKED_ACTIONS_COOKING = [ '!activate', '!attackPlayer', '!checkBlueprint', '!checkBlueprintLevel', @@ -225,6 +227,8 @@ def launch_server_experiment(task_path, subprocess.run(['tmux', 'new-session', '-d', '-s', session_name], check=True) + + # set environment variables set_environment_variable_tmux_session(session_name, "MINECRAFT_PORT", server_port) set_environment_variable_tmux_session(session_name, "MINDSERVER_PORT", mindserver_port) @@ -233,13 +237,14 @@ def launch_server_experiment(task_path, set_environment_variable_tmux_session(session_name, "INSECURE_CODING", "true") # you need to add the bots to the world first before you can add them as op - cmd = f"node main.js --task_path example_tasks.json --task_id debug_{num_agents}_agent_timeout" + # cmd = f"node main.js --task_path example_tasks.json --task_id debug_{num_agents}_agent_timeout" - subprocess.run(["tmux", "send-keys", "-t", session_name, cmd, "C-m"]) + # subprocess.run(["tmux", "send-keys", "-t", session_name, cmd, "C-m"]) - time.sleep(40) + # time.sleep(40) - subprocess.run(["tmux", "send-keys", "-t", "server_" + session_name, f"/op {agent_names[0]}", "C-m"]) + # subprocess.run(["tmux", "send-keys", "-t", "server_" + session_name, f"/op @a", "C-m"]) + make_ops(agent_names, session_name) # add the bots as op # op_script_content = "sleep 5\n\op @p" * 20 @@ -252,6 +257,11 @@ def launch_server_experiment(task_path, elif task_type == "construction": set_environment_variable_tmux_session(session_name, "BLOCKED_ACTIONS", BLOCKED_ACTIONS_CONSTRUCTION) + split_task_path = task_path.split("/") + if len(split_task_path) > 1: + task_path_name = split_task_path[-2] + else: + task_path_name = "tasks" script_content = "" for task_id in task_ids: @@ -274,8 +284,7 @@ def launch_server_experiment(task_path, script_content += f"{cp_cmd}\n" script_content += "sleep 1\n" if s3: - s3_cmd = f"aws s3 cp {agent_file_path} s3://{bucket_name}/{exp_name}/{task_id}/{agent}_{_}.json" - s3_upload_experiment = f"aws s3 cp {agent_file_path} s3://{bucket_name}/{exp_name}/{task_id}/{agent}_{_}.json" + s3_cmd = f"aws s3 cp {agent_file_path} s3://{bucket_name}/{task_type}/{model}/{task_path_name}/{exp_name}/{task_id}/{agent}_{_}.json" script_content += f"echo 'Uploading {agent_file_path} to S3'\n" script_content += f"echo '{s3_cmd}'\n" script_content += f"{s3_cmd}\n" @@ -283,12 +292,42 @@ def launch_server_experiment(task_path, script_content += f"sleep 10\n" if s3: for agent in agent_names: - script_content += f"aws s3 cp bots/{agent} s3://{bucket_name}/{exp_name}/bots/{agent} --recursive\n" + script_content += f"aws s3 cp bots/{agent} s3://{bucket_name}/{task_type}/{model}/{task_path_name}/{exp_name}/bots/{agent} --recursive\n" # Create a temporary shell script file script_file = f"./tmp/experiment_script_{session_name}.sh" make_script_file_and_run(script_content, session_name, script_file) +def make_ops(agent_names, session_name): + """Make the agents operators in the Minecraft world.""" + print('Making agents operators...') + + cmd = f"node main.js --task_path example_tasks.json --task_id debug_{len(agent_names)}_agent_timeout" + + subprocess.run(["tmux", "send-keys", "-t", session_name, cmd, "C-m"]) + + time.sleep(30) + + subprocess.run(["tmux", "send-keys", "-t", "server_" + session_name, f"/op @a", "C-m"]) + + agents_op = check_agent_ops(agent_names, ops_file=f"./server_data_{session_name}/ops.json") + if agents_op: + print("Agents are operators! You are good to go :D") + else: + print("Agents are not operators! Something went wrong :(") + make_ops(agent_names, session_name) + +def check_agent_ops(agent_names, ops_file="ops.json"): + with open(ops_file, "r") as f: + ops_data = json.load(f) + + ops_names = [op["name"] for op in ops_data] + + for agent in agent_names: + if agent not in ops_names: + return False + return True + def make_script_file_and_run(script_content, session_name, file_name): script_dir = os.path.dirname(file_name) os.makedirs(script_dir, exist_ok=True) @@ -372,6 +411,23 @@ def copy_server_files(source_path, dest_path): print(f"Server files copied to {dest_path}") except Exception as e: print(f"Error copying server files: {e}") + time.sleep(10) + + same_files = check_same_files(source_path, dest_path) + if not same_files: + copy_server_files(source_path, dest_path) + print("The destination path does not contain all the same files as the source path.") + else: + print("The destination path contains all the same files as the source path.") + +def check_same_files(d1, d2): + + items1 = set(os.listdir(d1)) + items2 = set(os.listdir(d2)) + + if items1 != items2: + return False + return True def delete_server_files(dest_path): """Delete server files from the specified location.""" diff --git a/settings.js b/settings.js index a0c2292..d66ce1e 100644 --- a/settings.js +++ b/settings.js @@ -39,7 +39,7 @@ export default "code_timeout_mins": -1, // minutes code is allowed to run. -1 for no timeout "relevant_docs_count": 5, // Parameter: -1 = all, 0 = no references, 5 = five references. If exceeding the maximum, all reference documents are returned. - "max_messages": 150, // max number of messages to keep in context + "max_messages": process.env.MAX_MESSAGES || 15, // max number of messages to keep in context "num_examples": 2, // number of examples to give to the model "max_commands": -1, // max number of commands that can be used in consecutive responses. -1 for no limit "verbose_commands": true, // show full command syntax diff --git a/src/agent/library/skills.js b/src/agent/library/skills.js index c4710d3..f149ef8 100644 --- a/src/agent/library/skills.js +++ b/src/agent/library/skills.js @@ -830,7 +830,7 @@ export async function putInChest(bot, itemName, num=-1) { export async function takeFromChest(bot, itemName, num=-1) { /** - * Take the given item from the nearest chest. + * Take the given item from the nearest chest, potentially from multiple slots. * @param {MinecraftBot} bot, reference to the minecraft bot. * @param {string} itemName, the item or block name to take from the chest. * @param {number} num, the number of items to take from the chest. Defaults to -1, which takes all items. @@ -845,17 +845,33 @@ export async function takeFromChest(bot, itemName, num=-1) { } await goToPosition(bot, chest.position.x, chest.position.y, chest.position.z, 2); const chestContainer = await bot.openContainer(chest); - let item = chestContainer.containerItems().find(item => item.name === itemName); - if (!item) { + + // Find all matching items in the chest + let matchingItems = chestContainer.containerItems().filter(item => item.name === itemName); + if (matchingItems.length === 0) { log(bot, `Could not find any ${itemName} in the chest.`); await chestContainer.close(); return false; } - let to_take = num === -1 ? item.count : Math.min(num, item.count); - await chestContainer.withdraw(item.type, null, to_take); + + let totalAvailable = matchingItems.reduce((sum, item) => sum + item.count, 0); + let remaining = num === -1 ? totalAvailable : Math.min(num, totalAvailable); + let totalTaken = 0; + + // Take items from each slot until we've taken enough or run out + for (const item of matchingItems) { + if (remaining <= 0) break; + + let toTakeFromSlot = Math.min(remaining, item.count); + await chestContainer.withdraw(item.type, null, toTakeFromSlot); + + totalTaken += toTakeFromSlot; + remaining -= toTakeFromSlot; + } + await chestContainer.close(); - log(bot, `Successfully took ${to_take} ${itemName} from the chest.`); - return true; + log(bot, `Successfully took ${totalTaken} ${itemName} from the chest.`); + return totalTaken > 0; } export async function viewChest(bot) { diff --git a/tasks/crafting_tasks/dev_tasks/tasks_2_agents.json b/tasks/crafting_tasks/dev_tasks/tasks_2_agents.json new file mode 100644 index 0000000..61145a2 --- /dev/null +++ b/tasks/crafting_tasks/dev_tasks/tasks_2_agents.json @@ -0,0 +1,5432 @@ +{ + "multiagent_crafting_waxed_exposed_cut_copper_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an waxed_exposed_cut_copper", + "conversation": "Let's work together to craft an waxed_exposed_cut_copper.", + "initial_inventory": { + "0": { + "waxed_exposed_copper": 2 + }, + "1": { + "waxed_exposed_copper": 2 + } + }, + "agent_count": 2, + "target": "waxed_exposed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_bed_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_bed", + "conversation": "Let's work together to craft an purple_bed.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "black_wool": 1, + "oak_planks": 1 + }, + "1": { + "red_dye": 1, + "black_wool": 2, + "oak_planks": 2 + } + }, + "agent_count": 2, + "target": "purple_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_0_with_plan_missing_glass_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "quartz": 2, + "oak_slab": 1 + }, + "1": { + "quartz": 1, + "oak_slab": 2 + } + }, + "agent_count": 2, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "glass" + ] + }, + "multiagent_crafting_lime_banner_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 3, + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "lime_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_stone_bricks_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_stone_bricks", + "conversation": "Let's work together to craft an chiseled_stone_bricks.", + "initial_inventory": { + "0": { + "stone_brick_slab": 1 + }, + "1": { + "stone_brick_slab": 1 + } + }, + "agent_count": 2, + "target": "chiseled_stone_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_wool_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an white_wool", + "conversation": "Let's work together to craft an white_wool.", + "initial_inventory": { + "0": { + "bone_meal": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "white_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_smithing_table_0_with_plan_missing_iron_ingot_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an smithing_table", + "conversation": "Let's work together to craft an smithing_table.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 2, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "smithing_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_tripwire_hook_0_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an tripwire_hook", + "conversation": "Let's work together to craft an tripwire_hook.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "oak_log": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 1, + "stone_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "tripwire_hook", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_orange_wool_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an orange_wool", + "conversation": "Let's work together to craft an orange_wool.", + "initial_inventory": { + "0": { + "orange_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "orange_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 3, + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "brown_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_bed_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_bed", + "conversation": "Let's work together to craft an purple_bed.", + "initial_inventory": { + "0": { + "purple_dye": 1 + }, + "1": { + "black_bed": 1 + } + }, + "agent_count": 2, + "target": "purple_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_writable_book_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an writable_book", + "conversation": "Let's work together to craft an writable_book.", + "initial_inventory": { + "0": { + "paper": 2, + "leather": 1, + "feather": 1 + }, + "1": { + "paper": 1, + "ink_sac": 1 + } + }, + "agent_count": 2, + "target": "writable_book", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_quartz_pillar_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an quartz_pillar", + "conversation": "Let's work together to craft an quartz_pillar.", + "initial_inventory": { + "0": { + "quartz_block": 1 + }, + "1": { + "quartz_block": 1 + } + }, + "agent_count": 2, + "target": "quartz_pillar", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan_missing_redstone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 3, + "oak_planks": 1, + "diamond_pickaxe": 1 + }, + "1": { + "gold_ingot": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_hopper_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "chest": 1 + }, + "1": { + "iron_ingot": 2 + } + }, + "agent_count": 2, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "glass": 2, + "quartz": 1, + "oak_planks": 2 + }, + "1": { + "glass": 1, + "quartz": 2, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "hopper": 1 + }, + "1": { + "minecart": 1 + } + }, + "agent_count": 2, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_wool_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_wool", + "conversation": "Let's work together to craft an lime_wool.", + "initial_inventory": { + "0": { + "green_dye": 1, + "shears": 1 + }, + "1": { + "white_dye": 1 + } + }, + "agent_count": 2, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_beehive_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an beehive", + "conversation": "Let's work together to craft an beehive.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "honeycomb": 1 + }, + "1": { + "oak_planks": 3, + "honeycomb": 2 + } + }, + "agent_count": 2, + "target": "beehive", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_bed_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_bed", + "conversation": "Let's work together to craft an red_bed.", + "initial_inventory": { + "0": { + "beetroot": 1, + "oak_planks": 2 + }, + "1": { + "oak_planks": 1, + "shears": 1 + } + }, + "agent_count": 2, + "target": "red_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_daylight_detector_1_with_plan_missing_glass_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "quartz": 2, + "oak_slab": 1 + }, + "1": { + "quartz": 1, + "oak_slab": 2 + } + }, + "agent_count": 2, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "glass" + ] + }, + "multiagent_crafting_purple_bed_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_bed", + "conversation": "Let's work together to craft an purple_bed.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "red_dye": 1, + "oak_planks": 2 + } + }, + "agent_count": 2, + "target": "purple_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_magenta_wool_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an magenta_wool", + "conversation": "Let's work together to craft an magenta_wool.", + "initial_inventory": { + "0": { + "magenta_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "magenta_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_0_with_plan_missing_glass_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "quartz": 1, + "oak_planks": 2 + }, + "1": { + "quartz": 2, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "glass" + ] + }, + "multiagent_crafting_hopper_1_with_plan_missing_iron_ingot_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "chest": 1, + "furnace": 1 + }, + "1": { + "stone_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_powered_rail_1_with_plan_missing_redstone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 3, + "oak_planks": 1, + "diamond_pickaxe": 1 + }, + "1": { + "gold_ingot": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_gray_banner_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_wool": 3, + "stick": 1 + }, + "1": { + "gray_wool": 3 + } + }, + "agent_count": 2, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan_missing_gold_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "redstone": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 1, + "iron_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_purple_bed_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_bed", + "conversation": "Let's work together to craft an purple_bed.", + "initial_inventory": { + "0": { + "purple_dye": 1 + }, + "1": { + "black_bed": 1 + } + }, + "agent_count": 2, + "target": "purple_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_jack_o_lantern_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an jack_o_lantern", + "conversation": "Let's work together to craft an jack_o_lantern.", + "initial_inventory": { + "0": { + "carved_pumpkin": 1, + "stick": 1 + }, + "1": { + "coal": 1 + } + }, + "agent_count": 2, + "target": "jack_o_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_boots_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an leather_boots", + "conversation": "Let's work together to craft an leather_boots.", + "initial_inventory": { + "0": { + "leather": 2 + }, + "1": { + "leather": 2 + } + }, + "agent_count": 2, + "target": "leather_boots", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_1_with_plan_missing_gold_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "redstone": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 1, + "iron_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_chiseled_deepslate_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_deepslate", + "conversation": "Let's work together to craft an chiseled_deepslate.", + "initial_inventory": { + "0": { + "cobbled_deepslate_slab": 1 + }, + "1": { + "cobbled_deepslate_slab": 1 + } + }, + "agent_count": 2, + "target": "chiseled_deepslate", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_bed_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_bed", + "conversation": "Let's work together to craft an red_bed.", + "initial_inventory": { + "0": { + "beetroot": 1, + "oak_planks": 2 + }, + "1": { + "oak_planks": 1, + "shears": 1 + } + }, + "agent_count": 2, + "target": "red_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_banner_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_wool": 3, + "stick": 1 + }, + "1": { + "lime_wool": 3 + } + }, + "agent_count": 2, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_carpet_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_carpet", + "conversation": "Let's work together to craft an purple_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "shears": 1 + }, + "1": { + "red_dye": 1 + } + }, + "agent_count": 2, + "target": "purple_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_polished_blackstone_bricks_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_blackstone_bricks", + "conversation": "Let's work together to craft an polished_blackstone_bricks.", + "initial_inventory": { + "0": { + "polished_blackstone": 2 + }, + "1": { + "polished_blackstone": 2 + } + }, + "agent_count": 2, + "target": "polished_blackstone_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 3, + "oak_planks": 1, + "redstone": 1 + }, + "1": { + "gold_ingot": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_smithing_table_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an smithing_table", + "conversation": "Let's work together to craft an smithing_table.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 2 + } + }, + "agent_count": 2, + "target": "smithing_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_1_with_plan_missing_glass_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "quartz": 1, + "oak_planks": 2 + }, + "1": { + "quartz": 2, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "glass" + ] + }, + "multiagent_crafting_lime_wool_1_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_wool", + "conversation": "Let's work together to craft an lime_wool.", + "initial_inventory": { + "0": { + "lime_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_powered_rail_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 3, + "oak_planks": 1, + "redstone": 1 + }, + "1": { + "gold_ingot": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan_missing_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 3, + "stick": 1 + }, + "1": { + "gold_ingot": 3, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_hopper_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_planks": 4 + }, + "1": { + "iron_ingot": 3, + "oak_planks": 4 + } + }, + "agent_count": 2, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_1_with_plan_missing_gold_ingot_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "stick": 1, + "furnace": 1 + }, + "1": { + "iron_pickaxe": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "gold_ingot", + "redstone" + ] + }, + "multiagent_crafting_tripwire_hook_1_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an tripwire_hook", + "conversation": "Let's work together to craft an tripwire_hook.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "oak_log": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 1, + "stone_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "tripwire_hook", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_magenta_wool_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an magenta_wool", + "conversation": "Let's work together to craft an magenta_wool.", + "initial_inventory": { + "0": { + "magenta_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "magenta_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "lime_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_purple_carpet_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_carpet", + "conversation": "Let's work together to craft an purple_carpet.", + "initial_inventory": { + "0": { + "purple_dye": 1 + }, + "1": { + "black_carpet": 1 + } + }, + "agent_count": 2, + "target": "purple_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_ender_chest_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 4, + "ender_pearl": 1 + }, + "1": { + "obsidian": 4, + "blaze_powder": 1 + } + }, + "agent_count": 2, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "chest": 1 + }, + "1": { + "iron_ingot": 2 + } + }, + "agent_count": 2, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_writable_book_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an writable_book", + "conversation": "Let's work together to craft an writable_book.", + "initial_inventory": { + "0": { + "paper": 2, + "leather": 1, + "feather": 1 + }, + "1": { + "paper": 1, + "ink_sac": 1 + } + }, + "agent_count": 2, + "target": "writable_book", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_smithing_table_1_with_plan_missing_iron_ingot_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an smithing_table", + "conversation": "Let's work together to craft an smithing_table.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 2, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "smithing_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_polished_andesite_0_with_plan_missing_cobblestone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_andesite", + "conversation": "Let's work together to craft an polished_andesite.", + "initial_inventory": { + "0": { + "diorite": 1, + "wooden_pickaxe": 1 + }, + "1": { + "diorite": 1 + } + }, + "agent_count": 2, + "target": "polished_andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_lime_wool_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_wool", + "conversation": "Let's work together to craft an lime_wool.", + "initial_inventory": { + "0": { + "lime_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_iron_shovel_1_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an iron_shovel", + "conversation": "Let's work together to craft an iron_shovel.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "iron_shovel", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_jack_o_lantern_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an jack_o_lantern", + "conversation": "Let's work together to craft an jack_o_lantern.", + "initial_inventory": { + "0": { + "carved_pumpkin": 1 + }, + "1": { + "torch": 1 + } + }, + "agent_count": 2, + "target": "jack_o_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_dye_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_dye", + "conversation": "Let's work together to craft an lime_dye.", + "initial_inventory": { + "0": { + "green_dye": 1 + }, + "1": { + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "lime_dye", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_wool_0_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an white_wool", + "conversation": "Let's work together to craft an white_wool.", + "initial_inventory": { + "0": { + "white_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "white_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_purple_carpet_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_carpet", + "conversation": "Let's work together to craft an purple_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "black_wool": 1 + }, + "1": { + "red_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "purple_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_bed_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_bed", + "conversation": "Let's work together to craft an red_bed.", + "initial_inventory": { + "0": { + "red_dye": 1 + }, + "1": { + "black_bed": 1 + } + }, + "agent_count": 2, + "target": "red_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_bed_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_bed", + "conversation": "Let's work together to craft an purple_bed.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "black_wool": 1, + "oak_planks": 1 + }, + "1": { + "red_dye": 1, + "black_wool": 2, + "oak_planks": 2 + } + }, + "agent_count": 2, + "target": "purple_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "glass": 1, + "quartz": 1, + "oak_slab": 2 + }, + "1": { + "glass": 2, + "quartz": 2, + "oak_slab": 1 + } + }, + "agent_count": 2, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_1_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "chest": 1, + "furnace": 1 + }, + "1": { + "stone_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_magenta_wool_0_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an magenta_wool", + "conversation": "Let's work together to craft an magenta_wool.", + "initial_inventory": { + "0": { + "magenta_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "magenta_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_wool_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_wool", + "conversation": "Let's work together to craft an lime_wool.", + "initial_inventory": { + "0": { + "green_dye": 1, + "shears": 1 + }, + "1": { + "white_dye": 1 + } + }, + "agent_count": 2, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_leather_boots_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an leather_boots", + "conversation": "Let's work together to craft an leather_boots.", + "initial_inventory": { + "0": { + "leather": 2 + }, + "1": { + "leather": 2 + } + }, + "agent_count": 2, + "target": "leather_boots", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_wool_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an white_wool", + "conversation": "Let's work together to craft an white_wool.", + "initial_inventory": { + "0": { + "bone_meal": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "white_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_wool_0_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_wool", + "conversation": "Let's work together to craft an lime_wool.", + "initial_inventory": { + "0": { + "lime_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_banner_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "gray_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_quartz_pillar_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an quartz_pillar", + "conversation": "Let's work together to craft an quartz_pillar.", + "initial_inventory": { + "0": { + "quartz_block": 1 + }, + "1": { + "quartz_block": 1 + } + }, + "agent_count": 2, + "target": "quartz_pillar", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_0_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "chest": 1, + "furnace": 1 + }, + "1": { + "stone_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_ender_chest_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 4, + "ender_eye": 1 + }, + "1": { + "obsidian": 4 + } + }, + "agent_count": 2, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "gray_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_tripwire_hook_1_with_plan_missing_iron_ingot_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an tripwire_hook", + "conversation": "Let's work together to craft an tripwire_hook.", + "initial_inventory": { + "0": { + "stick": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "tripwire_hook", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_purple_bed_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_bed", + "conversation": "Let's work together to craft an purple_bed.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "red_dye": 1, + "oak_planks": 2 + } + }, + "agent_count": 2, + "target": "purple_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_brown_banner_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_wool": 3, + "stick": 1 + }, + "1": { + "brown_wool": 3 + } + }, + "agent_count": 2, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 3, + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "gray_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_wool_1_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an orange_wool", + "conversation": "Let's work together to craft an orange_wool.", + "initial_inventory": { + "0": { + "orange_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "orange_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_brown_banner_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "brown_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_powered_rail_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 3, + "stick": 1 + }, + "1": { + "gold_ingot": 3, + "redstone": 1 + } + }, + "agent_count": 2, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_carpet_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_carpet", + "conversation": "Let's work together to craft an purple_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "shears": 1 + }, + "1": { + "red_dye": 1 + } + }, + "agent_count": 2, + "target": "purple_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_ender_chest_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 4, + "ender_eye": 1 + }, + "1": { + "obsidian": 4 + } + }, + "agent_count": 2, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_wool_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_wool", + "conversation": "Let's work together to craft an lime_wool.", + "initial_inventory": { + "0": { + "green_dye": 1, + "black_wool": 1 + }, + "1": { + "white_dye": 1 + } + }, + "agent_count": 2, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_writable_book_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an writable_book", + "conversation": "Let's work together to craft an writable_book.", + "initial_inventory": { + "0": { + "book": 1, + "feather": 1 + }, + "1": { + "ink_sac": 1 + } + }, + "agent_count": 2, + "target": "writable_book", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_ender_chest_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 4, + "ender_pearl": 1 + }, + "1": { + "obsidian": 4, + "blaze_powder": 1 + } + }, + "agent_count": 2, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_furnace_minecart_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an furnace_minecart", + "conversation": "Let's work together to craft an furnace_minecart.", + "initial_inventory": { + "0": { + "furnace": 1 + }, + "1": { + "minecart": 1 + } + }, + "agent_count": 2, + "target": "furnace_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "brown_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_leather_horse_armor_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an leather_horse_armor", + "conversation": "Let's work together to craft an leather_horse_armor.", + "initial_inventory": { + "0": { + "leather": 4 + }, + "1": { + "leather": 3 + } + }, + "agent_count": 2, + "target": "leather_horse_armor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_wool_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an white_wool", + "conversation": "Let's work together to craft an white_wool.", + "initial_inventory": { + "0": { + "bone_meal": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "white_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_writable_book_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an writable_book", + "conversation": "Let's work together to craft an writable_book.", + "initial_inventory": { + "0": { + "book": 1, + "feather": 1 + }, + "1": { + "ink_sac": 1 + } + }, + "agent_count": 2, + "target": "writable_book", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_bed_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_bed", + "conversation": "Let's work together to craft an red_bed.", + "initial_inventory": { + "0": { + "beetroot": 1, + "black_wool": 2, + "oak_planks": 1 + }, + "1": { + "black_wool": 1, + "oak_planks": 2 + } + }, + "agent_count": 2, + "target": "red_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_wool_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an orange_wool", + "conversation": "Let's work together to craft an orange_wool.", + "initial_inventory": { + "0": { + "orange_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "orange_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 3, + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "brown_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_exposed_cut_copper_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an waxed_exposed_cut_copper", + "conversation": "Let's work together to craft an waxed_exposed_cut_copper.", + "initial_inventory": { + "0": { + "waxed_exposed_copper": 2 + }, + "1": { + "waxed_exposed_copper": 2 + } + }, + "agent_count": 2, + "target": "waxed_exposed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_wool_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_wool", + "conversation": "Let's work together to craft an lime_wool.", + "initial_inventory": { + "0": { + "green_dye": 1, + "black_wool": 1 + }, + "1": { + "white_dye": 1 + } + }, + "agent_count": 2, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_0_with_plan_missing_glass_oak_slab_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "quartz": 2 + }, + "1": { + "quartz": 1 + } + }, + "agent_count": 2, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "glass", + "oak_slab" + ] + }, + "multiagent_crafting_hopper_1_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "oak_planks": 4, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 4, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_leather_horse_armor_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an leather_horse_armor", + "conversation": "Let's work together to craft an leather_horse_armor.", + "initial_inventory": { + "0": { + "leather": 4 + }, + "1": { + "leather": 3 + } + }, + "agent_count": 2, + "target": "leather_horse_armor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "glass": 2, + "quartz": 1, + "oak_planks": 2 + }, + "1": { + "glass": 1, + "quartz": 2, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 3, + "stick": 1 + }, + "1": { + "gold_ingot": 3, + "redstone": 1 + } + }, + "agent_count": 2, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_stone_bricks_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_stone_bricks", + "conversation": "Let's work together to craft an chiseled_stone_bricks.", + "initial_inventory": { + "0": { + "stone_bricks": 1 + }, + "1": { + "stone_bricks": 2 + } + }, + "agent_count": 2, + "target": "chiseled_stone_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_snow_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an snow", + "conversation": "Let's work together to craft an snow.", + "initial_inventory": { + "0": { + "snow_block": 2 + }, + "1": { + "snow_block": 1 + } + }, + "agent_count": 2, + "target": "snow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_jack_o_lantern_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an jack_o_lantern", + "conversation": "Let's work together to craft an jack_o_lantern.", + "initial_inventory": { + "0": { + "carved_pumpkin": 1, + "stick": 1 + }, + "1": { + "coal": 1 + } + }, + "agent_count": 2, + "target": "jack_o_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_wool_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an white_wool", + "conversation": "Let's work together to craft an white_wool.", + "initial_inventory": { + "0": { + "white_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "white_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_bed_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_bed", + "conversation": "Let's work together to craft an red_bed.", + "initial_inventory": { + "0": { + "beetroot": 1, + "black_wool": 2, + "oak_planks": 1 + }, + "1": { + "black_wool": 1, + "oak_planks": 2 + } + }, + "agent_count": 2, + "target": "red_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_deepslate_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_deepslate", + "conversation": "Let's work together to craft an chiseled_deepslate.", + "initial_inventory": { + "0": { + "cobbled_deepslate_slab": 1 + }, + "1": { + "cobbled_deepslate_slab": 1 + } + }, + "agent_count": 2, + "target": "chiseled_deepslate", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "lime_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_powered_rail_0_with_plan_missing_gold_ingot_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "stick": 1, + "iron_pickaxe": 1 + }, + "1": { + "redstone": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_hopper_minecart_0_with_plan_missing_chest_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 5 + }, + "1": { + "iron_ingot": 5 + } + }, + "agent_count": 2, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_white_wool_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an white_wool", + "conversation": "Let's work together to craft an white_wool.", + "initial_inventory": { + "0": { + "white_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "white_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 3, + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "gray_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_snow_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an snow", + "conversation": "Let's work together to craft an snow.", + "initial_inventory": { + "0": { + "snow_block": 2 + }, + "1": { + "snow_block": 1 + } + }, + "agent_count": 2, + "target": "snow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_wool_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an white_wool", + "conversation": "Let's work together to craft an white_wool.", + "initial_inventory": { + "0": { + "bone_meal": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "white_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_andesite_1_with_plan_missing_cobblestone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an andesite", + "conversation": "Let's work together to craft an andesite.", + "initial_inventory": { + "0": { + "diorite": 1 + }, + "1": { + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_hopper_minecart_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 5, + "chest": 1 + }, + "1": { + "iron_ingot": 5 + } + }, + "agent_count": 2, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_0_with_plan_missing_oak_slab_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "glass": 2, + "quartz": 2 + }, + "1": { + "glass": 1, + "quartz": 1 + } + }, + "agent_count": 2, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "oak_slab" + ] + }, + "multiagent_crafting_purple_carpet_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_carpet", + "conversation": "Let's work together to craft an purple_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "black_wool": 1 + }, + "1": { + "red_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "purple_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_jack_o_lantern_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an jack_o_lantern", + "conversation": "Let's work together to craft an jack_o_lantern.", + "initial_inventory": { + "0": { + "carved_pumpkin": 1 + }, + "1": { + "torch": 1 + } + }, + "agent_count": 2, + "target": "jack_o_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_0_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "oak_planks": 4, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 4, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_polished_andesite_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_andesite", + "conversation": "Let's work together to craft an polished_andesite.", + "initial_inventory": { + "0": { + "andesite": 2 + }, + "1": { + "andesite": 2 + } + }, + "agent_count": 2, + "target": "polished_andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_dye_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_dye", + "conversation": "Let's work together to craft an lime_dye.", + "initial_inventory": { + "0": { + "green_dye": 1 + }, + "1": { + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "lime_dye", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_stone_bricks_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_stone_bricks", + "conversation": "Let's work together to craft an chiseled_stone_bricks.", + "initial_inventory": { + "0": { + "stone_brick_slab": 1 + }, + "1": { + "stone_brick_slab": 1 + } + }, + "agent_count": 2, + "target": "chiseled_stone_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_andesite_1_with_plan_missing_cobblestone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_andesite", + "conversation": "Let's work together to craft an polished_andesite.", + "initial_inventory": { + "0": { + "diorite": 1, + "wooden_pickaxe": 1 + }, + "1": { + "diorite": 1 + } + }, + "agent_count": 2, + "target": "polished_andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_firework_rocket_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an firework_rocket", + "conversation": "Let's work together to craft an firework_rocket.", + "initial_inventory": { + "0": { + "gunpowder": 1 + }, + "1": { + "paper": 1 + } + }, + "agent_count": 2, + "target": "firework_rocket", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_andesite_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_andesite", + "conversation": "Let's work together to craft an polished_andesite.", + "initial_inventory": { + "0": { + "diorite": 1, + "cobblestone": 1 + }, + "1": { + "diorite": 1, + "cobblestone": 1 + } + }, + "agent_count": 2, + "target": "polished_andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_dye_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_dye", + "conversation": "Let's work together to craft an lime_dye.", + "initial_inventory": { + "0": { + "green_dye": 1 + }, + "1": { + "white_dye": 1 + } + }, + "agent_count": 2, + "target": "lime_dye", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_planks": 4 + }, + "1": { + "iron_ingot": 3, + "oak_planks": 4 + } + }, + "agent_count": 2, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_dye_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_dye", + "conversation": "Let's work together to craft an lime_dye.", + "initial_inventory": { + "0": { + "green_dye": 1 + }, + "1": { + "white_dye": 1 + } + }, + "agent_count": 2, + "target": "lime_dye", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_1_with_plan_missing_gold_ingot_redstone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "iron_pickaxe": 1, + "diamond_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "gold_ingot", + "redstone" + ] + }, + "multiagent_crafting_white_wool_1_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an white_wool", + "conversation": "Let's work together to craft an white_wool.", + "initial_inventory": { + "0": { + "white_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "white_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_chiseled_stone_bricks_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_stone_bricks", + "conversation": "Let's work together to craft an chiseled_stone_bricks.", + "initial_inventory": { + "0": { + "stone_bricks": 1 + }, + "1": { + "stone_bricks": 2 + } + }, + "agent_count": 2, + "target": "chiseled_stone_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_wool": 3, + "stick": 1 + }, + "1": { + "lime_wool": 3 + } + }, + "agent_count": 2, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_andesite_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_andesite", + "conversation": "Let's work together to craft an polished_andesite.", + "initial_inventory": { + "0": { + "diorite": 1, + "cobblestone": 1 + }, + "1": { + "diorite": 1, + "cobblestone": 1 + } + }, + "agent_count": 2, + "target": "polished_andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cut_sandstone_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cut_sandstone", + "conversation": "Let's work together to craft an cut_sandstone.", + "initial_inventory": { + "0": { + "sandstone": 2 + }, + "1": { + "sandstone": 2 + } + }, + "agent_count": 2, + "target": "cut_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 3, + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "lime_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_1_with_plan_missing_oak_slab_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "glass": 2, + "quartz": 2 + }, + "1": { + "glass": 1, + "quartz": 1 + } + }, + "agent_count": 2, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "oak_slab" + ] + }, + "multiagent_crafting_hopper_minecart_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 5, + "chest": 1 + }, + "1": { + "iron_ingot": 5 + } + }, + "agent_count": 2, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_1_with_plan_missing_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 3, + "stick": 1 + }, + "1": { + "gold_ingot": 3, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_iron_shovel_0_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an iron_shovel", + "conversation": "Let's work together to craft an iron_shovel.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "iron_shovel", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_iron_shovel_1_with_plan_missing_iron_ingot_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an iron_shovel", + "conversation": "Let's work together to craft an iron_shovel.", + "initial_inventory": { + "0": { + "stick": 1, + "stone_pickaxe": 1 + }, + "1": { + "stick": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "iron_shovel", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_hopper_minecart_1_with_plan_missing_chest_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 5 + }, + "1": { + "iron_ingot": 5 + } + }, + "agent_count": 2, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_purple_carpet_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_carpet", + "conversation": "Let's work together to craft an purple_carpet.", + "initial_inventory": { + "0": { + "purple_dye": 1 + }, + "1": { + "black_carpet": 1 + } + }, + "agent_count": 2, + "target": "purple_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan_missing_gold_ingot_redstone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "iron_pickaxe": 1, + "diamond_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "gold_ingot", + "redstone" + ] + }, + "multiagent_crafting_orange_wool_0_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an orange_wool", + "conversation": "Let's work together to craft an orange_wool.", + "initial_inventory": { + "0": { + "orange_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "orange_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_polished_andesite_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_andesite", + "conversation": "Let's work together to craft an polished_andesite.", + "initial_inventory": { + "0": { + "andesite": 2 + }, + "1": { + "andesite": 2 + } + }, + "agent_count": 2, + "target": "polished_andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan_missing_gold_ingot_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "stick": 1, + "furnace": 1 + }, + "1": { + "iron_pickaxe": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "gold_ingot", + "redstone" + ] + }, + "multiagent_crafting_hopper_1_with_plan_missing_chest_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 3 + } + }, + "agent_count": 2, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_furnace_minecart_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an furnace_minecart", + "conversation": "Let's work together to craft an furnace_minecart.", + "initial_inventory": { + "0": { + "furnace": 1 + }, + "1": { + "minecart": 1 + } + }, + "agent_count": 2, + "target": "furnace_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "glass": 1, + "quartz": 1, + "oak_slab": 2 + }, + "1": { + "glass": 2, + "quartz": 2, + "oak_slab": 1 + } + }, + "agent_count": 2, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_andesite_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an andesite", + "conversation": "Let's work together to craft an andesite.", + "initial_inventory": { + "0": { + "diorite": 1 + }, + "1": { + "cobblestone": 1 + } + }, + "agent_count": 2, + "target": "andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_tripwire_hook_0_with_plan_missing_iron_ingot_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an tripwire_hook", + "conversation": "Let's work together to craft an tripwire_hook.", + "initial_inventory": { + "0": { + "stick": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "tripwire_hook", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_polished_blackstone_bricks_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_blackstone_bricks", + "conversation": "Let's work together to craft an polished_blackstone_bricks.", + "initial_inventory": { + "0": { + "polished_blackstone": 2 + }, + "1": { + "polished_blackstone": 2 + } + }, + "agent_count": 2, + "target": "polished_blackstone_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_iron_shovel_0_with_plan_missing_iron_ingot_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an iron_shovel", + "conversation": "Let's work together to craft an iron_shovel.", + "initial_inventory": { + "0": { + "stick": 1, + "stone_pickaxe": 1 + }, + "1": { + "stick": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "iron_shovel", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_magenta_wool_1_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an magenta_wool", + "conversation": "Let's work together to craft an magenta_wool.", + "initial_inventory": { + "0": { + "magenta_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "magenta_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_wool_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_wool", + "conversation": "Let's work together to craft an lime_wool.", + "initial_inventory": { + "0": { + "lime_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_smithing_table_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an smithing_table", + "conversation": "Let's work together to craft an smithing_table.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 2 + } + }, + "agent_count": 2, + "target": "smithing_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_wool": 3, + "stick": 1 + }, + "1": { + "brown_wool": 3 + } + }, + "agent_count": 2, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_bed_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_bed", + "conversation": "Let's work together to craft an red_bed.", + "initial_inventory": { + "0": { + "red_dye": 1 + }, + "1": { + "black_bed": 1 + } + }, + "agent_count": 2, + "target": "red_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "hopper": 1 + }, + "1": { + "minecart": 1 + } + }, + "agent_count": 2, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_wool": 3, + "stick": 1 + }, + "1": { + "gray_wool": 3 + } + }, + "agent_count": 2, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_0_with_plan_missing_chest_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 3 + } + }, + "agent_count": 2, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_powered_rail_1_with_plan_missing_gold_ingot_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "stick": 1, + "iron_pickaxe": 1 + }, + "1": { + "redstone": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_daylight_detector_1_with_plan_missing_glass_oak_slab_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "quartz": 2 + }, + "1": { + "quartz": 1 + } + }, + "agent_count": 2, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "glass", + "oak_slab" + ] + }, + "multiagent_crafting_firework_rocket_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an firework_rocket", + "conversation": "Let's work together to craft an firework_rocket.", + "initial_inventory": { + "0": { + "gunpowder": 1 + }, + "1": { + "paper": 1 + } + }, + "agent_count": 2, + "target": "firework_rocket", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_beehive_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an beehive", + "conversation": "Let's work together to craft an beehive.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "honeycomb": 1 + }, + "1": { + "oak_planks": 3, + "honeycomb": 2 + } + }, + "agent_count": 2, + "target": "beehive", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_andesite_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an andesite", + "conversation": "Let's work together to craft an andesite.", + "initial_inventory": { + "0": { + "diorite": 1 + }, + "1": { + "cobblestone": 1 + } + }, + "agent_count": 2, + "target": "andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_andesite_0_with_plan_missing_cobblestone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an andesite", + "conversation": "Let's work together to craft an andesite.", + "initial_inventory": { + "0": { + "diorite": 1 + }, + "1": { + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_hopper_0_with_plan_missing_iron_ingot_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "chest": 1, + "furnace": 1 + }, + "1": { + "stone_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_cut_sandstone_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cut_sandstone", + "conversation": "Let's work together to craft an cut_sandstone.", + "initial_inventory": { + "0": { + "sandstone": 2 + }, + "1": { + "sandstone": 2 + } + }, + "agent_count": 2, + "target": "cut_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_wool_0_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_wool", + "conversation": "Let's work together to craft an lime_wool.", + "initial_inventory": { + "0": { + "green_dye": 1, + "shears": 1 + }, + "1": { + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_wool_1_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_wool", + "conversation": "Let's work together to craft an lime_wool.", + "initial_inventory": { + "0": { + "green_dye": 1, + "shears": 1 + }, + "1": { + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_wool_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_wool", + "conversation": "Let's work together to craft an lime_wool.", + "initial_inventory": { + "0": { + "green_dye": 1, + "black_wool": 1 + }, + "1": { + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_wool_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_wool", + "conversation": "Let's work together to craft an lime_wool.", + "initial_inventory": { + "0": { + "green_dye": 1, + "black_wool": 1 + }, + "1": { + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_0_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 1, + "white_dye": 1, + "oak_log": 1 + }, + "1": { + "black_dye": 2, + "white_dye": 2, + "shears": 1 + } + }, + "agent_count": 2, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_banner_1_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 1, + "white_dye": 1, + "oak_log": 1 + }, + "1": { + "black_dye": 2, + "white_dye": 2, + "shears": 1 + } + }, + "agent_count": 2, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_banner_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 1, + "white_dye": 1, + "black_wool": 3, + "oak_log": 1 + }, + "1": { + "black_dye": 2, + "white_dye": 2, + "black_wool": 3 + } + }, + "agent_count": 2, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 1, + "white_dye": 1, + "black_wool": 3, + "oak_log": 1 + }, + "1": { + "black_dye": 2, + "white_dye": 2, + "black_wool": 3 + } + }, + "agent_count": 2, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_0_with_plan_missing_black_wool_depth_3_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 2, + "bone_meal": 2, + "oak_log": 1 + }, + "1": { + "ink_sac": 1, + "bone_meal": 1, + "shears": 1 + } + }, + "agent_count": 2, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 540, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_banner_1_with_plan_missing_black_wool_depth_3_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 2, + "bone_meal": 2, + "oak_log": 1 + }, + "1": { + "ink_sac": 1, + "bone_meal": 1, + "shears": 1 + } + }, + "agent_count": 2, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 540, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_banner_0_with_plan__depth_3_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 1, + "bone_meal": 1, + "black_wool": 3, + "oak_log": 1 + }, + "1": { + "ink_sac": 2, + "bone_meal": 2, + "black_wool": 3 + } + }, + "agent_count": 2, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan__depth_3_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 1, + "bone_meal": 1, + "black_wool": 3, + "oak_log": 1 + }, + "1": { + "ink_sac": 2, + "bone_meal": 2, + "black_wool": 3 + } + }, + "agent_count": 2, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "white_dye": 2, + "oak_log": 1 + }, + "1": { + "green_dye": 2, + "white_dye": 1, + "shears": 1 + } + }, + "agent_count": 2, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_banner_1_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "white_dye": 2, + "oak_log": 1 + }, + "1": { + "green_dye": 2, + "white_dye": 1, + "shears": 1 + } + }, + "agent_count": 2, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_banner_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "white_dye": 2, + "black_wool": 3, + "oak_log": 1 + }, + "1": { + "green_dye": 2, + "white_dye": 1, + "black_wool": 3 + } + }, + "agent_count": 2, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "white_dye": 2, + "black_wool": 3, + "oak_log": 1 + }, + "1": { + "green_dye": 2, + "white_dye": 1, + "black_wool": 3 + } + }, + "agent_count": 2, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan_missing_black_wool_depth_3_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 2, + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "green_dye": 1, + "bone_meal": 2, + "shears": 1 + } + }, + "agent_count": 2, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 540, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_banner_1_with_plan_missing_black_wool_depth_3_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 2, + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "green_dye": 1, + "bone_meal": 2, + "shears": 1 + } + }, + "agent_count": 2, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 540, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_banner_0_with_plan__depth_3_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "bone_meal": 1, + "black_wool": 3, + "oak_log": 1 + }, + "1": { + "green_dye": 2, + "bone_meal": 2, + "black_wool": 3 + } + }, + "agent_count": 2, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_1_with_plan__depth_3_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "bone_meal": 1, + "black_wool": 3, + "oak_log": 1 + }, + "1": { + "green_dye": 2, + "bone_meal": 2, + "black_wool": 3 + } + }, + "agent_count": 2, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_0_with_plan_missing_iron_ingot_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "oak_planks": 4, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 4, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_hopper_minecart_1_with_plan_missing_iron_ingot_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "oak_planks": 4, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 4, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_hopper_minecart_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 5, + "oak_planks": 4 + }, + "1": { + "iron_ingot": 5, + "oak_planks": 4 + } + }, + "agent_count": 2, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 5, + "oak_planks": 4 + }, + "1": { + "iron_ingot": 5, + "oak_planks": 4 + } + }, + "agent_count": 2, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_jack_o_lantern_0_with_plan_missing_coal_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an jack_o_lantern", + "conversation": "Let's work together to craft an jack_o_lantern.", + "initial_inventory": { + "0": { + "carved_pumpkin": 1, + "oak_planks": 1 + }, + "1": { + "oak_planks": 1, + "iron_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "jack_o_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "coal" + ] + }, + "multiagent_crafting_jack_o_lantern_1_with_plan_missing_coal_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an jack_o_lantern", + "conversation": "Let's work together to craft an jack_o_lantern.", + "initial_inventory": { + "0": { + "carved_pumpkin": 1, + "oak_planks": 1 + }, + "1": { + "oak_planks": 1, + "iron_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "jack_o_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "coal" + ] + }, + "multiagent_crafting_jack_o_lantern_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an jack_o_lantern", + "conversation": "Let's work together to craft an jack_o_lantern.", + "initial_inventory": { + "0": { + "carved_pumpkin": 1, + "oak_planks": 1 + }, + "1": { + "coal": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "jack_o_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_jack_o_lantern_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an jack_o_lantern", + "conversation": "Let's work together to craft an jack_o_lantern.", + "initial_inventory": { + "0": { + "carved_pumpkin": 1, + "oak_planks": 1 + }, + "1": { + "coal": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "jack_o_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/dev_tasks/tasks_2_agents_stats.txt b/tasks/crafting_tasks/dev_tasks/tasks_2_agents_stats.txt new file mode 100644 index 0000000..b3f64f4 --- /dev/null +++ b/tasks/crafting_tasks/dev_tasks/tasks_2_agents_stats.txt @@ -0,0 +1,16 @@ +{ + "num_tasks": 199, + "avg_depth": 2.2525252525252526, + "std_depth": 0.9248907589704736, + "num_tasks_based_depth": { + "0": 98, + "1": 72, + "2": 20, + "3": 8 + }, + "num_missing_resources": { + "0": 116, + "1": 76, + "2": 6 + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/dev_tasks/tasks_3_agents.json b/tasks/crafting_tasks/dev_tasks/tasks_3_agents.json new file mode 100644 index 0000000..9602a97 --- /dev/null +++ b/tasks/crafting_tasks/dev_tasks/tasks_3_agents.json @@ -0,0 +1,6044 @@ +{ + "multiagent_crafting_ender_chest_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 2, + "ender_eye": 1 + }, + "1": { + "obsidian": 4 + }, + "2": { + "obsidian": 2 + } + }, + "agent_count": 3, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 4 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 2 + } + }, + "agent_count": 3, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_horse_armor_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an leather_horse_armor", + "conversation": "Let's work together to craft an leather_horse_armor.", + "initial_inventory": { + "0": { + "leather": 3 + }, + "1": { + "leather": 2 + }, + "2": { + "leather": 2 + } + }, + "agent_count": 3, + "target": "leather_horse_armor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_carpet_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_carpet", + "conversation": "Let's work together to craft an purple_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "red_dye": 1 + }, + "2": { + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "purple_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_boots_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an leather_boots", + "conversation": "Let's work together to craft an leather_boots.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 2 + }, + "2": { + "leather": 1 + } + }, + "agent_count": 3, + "target": "leather_boots", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_wool_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_wool", + "conversation": "Let's work together to craft an lime_wool.", + "initial_inventory": { + "0": { + "green_dye": 1 + }, + "1": { + "white_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_writable_book_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an writable_book", + "conversation": "Let's work together to craft an writable_book.", + "initial_inventory": { + "0": { + "book": 1 + }, + "1": { + "ink_sac": 1 + }, + "2": { + "feather": 1 + } + }, + "agent_count": 3, + "target": "writable_book", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_ender_chest_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 2, + "ender_pearl": 1 + }, + "1": { + "obsidian": 4, + "blaze_powder": 1 + }, + "2": { + "obsidian": 2 + } + }, + "agent_count": 3, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_writable_book_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an writable_book", + "conversation": "Let's work together to craft an writable_book.", + "initial_inventory": { + "0": { + "book": 1 + }, + "1": { + "ink_sac": 1 + }, + "2": { + "feather": 1 + } + }, + "agent_count": 3, + "target": "writable_book", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_carpet_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_carpet", + "conversation": "Let's work together to craft an purple_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "red_dye": 1 + }, + "2": { + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "purple_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan_missing_redstone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "stick": 1 + }, + "1": { + "gold_ingot": 2, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 2 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_ender_chest_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 2, + "ender_pearl": 1 + }, + "1": { + "obsidian": 4, + "blaze_powder": 1 + }, + "2": { + "obsidian": 2 + } + }, + "agent_count": 3, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_wool": 2, + "stick": 1 + }, + "1": { + "gray_wool": 2 + }, + "2": { + "gray_wool": 2 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_0_with_plan_missing_iron_ingot_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "chest": 1 + }, + "1": { + "stone_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_powered_rail_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "stick": 1 + }, + "1": { + "gold_ingot": 2, + "redstone": 1 + }, + "2": { + "gold_ingot": 2 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_ender_chest_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 2, + "ender_pearl": 1 + }, + "1": { + "obsidian": 4, + "blaze_powder": 1 + }, + "2": { + "obsidian": 2 + } + }, + "agent_count": 3, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_wool": 2, + "stick": 1 + }, + "1": { + "brown_wool": 2 + }, + "2": { + "brown_wool": 2 + } + }, + "agent_count": 3, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_writable_book_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an writable_book", + "conversation": "Let's work together to craft an writable_book.", + "initial_inventory": { + "0": { + "paper": 1, + "leather": 1 + }, + "1": { + "paper": 1, + "ink_sac": 1 + }, + "2": { + "paper": 1, + "feather": 1 + } + }, + "agent_count": 3, + "target": "writable_book", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_ender_chest_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 2, + "ender_eye": 1 + }, + "1": { + "obsidian": 4 + }, + "2": { + "obsidian": 2 + } + }, + "agent_count": 3, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_2_with_plan_missing_iron_ingot_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "chest": 1 + }, + "1": { + "stone_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_leather_boots_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an leather_boots", + "conversation": "Let's work together to craft an leather_boots.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 2 + }, + "2": { + "leather": 1 + } + }, + "agent_count": 3, + "target": "leather_boots", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 4 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 2 + } + }, + "agent_count": 3, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_wool": 2, + "stick": 1 + }, + "1": { + "brown_wool": 2 + }, + "2": { + "brown_wool": 2 + } + }, + "agent_count": 3, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_2_with_plan_missing_chest_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 3 + }, + "1": { + "iron_ingot": 3 + }, + "2": { + "iron_ingot": 4 + } + }, + "agent_count": 3, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_gray_banner_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_wool": 2, + "stick": 1 + }, + "1": { + "gray_wool": 2 + }, + "2": { + "gray_wool": 2 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan_missing_gold_ingot_redstone_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "diamond_pickaxe": 1 + }, + "1": { + "iron_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "gold_ingot", + "redstone" + ] + }, + "multiagent_crafting_waxed_exposed_cut_copper_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an waxed_exposed_cut_copper", + "conversation": "Let's work together to craft an waxed_exposed_cut_copper.", + "initial_inventory": { + "0": { + "waxed_exposed_copper": 1 + }, + "1": { + "waxed_exposed_copper": 2 + }, + "2": { + "waxed_exposed_copper": 1 + } + }, + "agent_count": 3, + "target": "waxed_exposed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_0_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 2, + "oak_planks": 2 + }, + "1": { + "gray_dye": 2, + "shears": 1 + }, + "2": { + "gray_dye": 2 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_polished_blackstone_bricks_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_blackstone_bricks", + "conversation": "Let's work together to craft an polished_blackstone_bricks.", + "initial_inventory": { + "0": { + "polished_blackstone": 2 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + } + }, + "agent_count": 3, + "target": "polished_blackstone_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_stone_bricks_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an chiseled_stone_bricks", + "conversation": "Let's work together to craft an chiseled_stone_bricks.", + "initial_inventory": { + "0": { + "stone_bricks": 1 + }, + "1": { + "stone_bricks": 1 + }, + "2": { + "stone_bricks": 1 + } + }, + "agent_count": 3, + "target": "chiseled_stone_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "stick": 1 + }, + "1": { + "gold_ingot": 2, + "redstone": 1 + }, + "2": { + "gold_ingot": 2 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan_missing_gold_ingot_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "furnace": 1 + }, + "1": { + "redstone": 1 + }, + "2": { + "iron_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_leather_boots_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an leather_boots", + "conversation": "Let's work together to craft an leather_boots.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 2 + }, + "2": { + "leather": 1 + } + }, + "agent_count": 3, + "target": "leather_boots", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_bed_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an red_bed", + "conversation": "Let's work together to craft an red_bed.", + "initial_inventory": { + "0": { + "beetroot": 1, + "black_wool": 1, + "oak_planks": 1 + }, + "1": { + "black_wool": 1, + "oak_planks": 1 + }, + "2": { + "black_wool": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "red_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_ender_chest_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 2, + "ender_eye": 1 + }, + "1": { + "obsidian": 4 + }, + "2": { + "obsidian": 2 + } + }, + "agent_count": 3, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "brown_dye": 2, + "black_wool": 2 + }, + "2": { + "brown_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_0_with_plan_missing_iron_ingot_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "chest": 1 + }, + "1": { + "stone_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_purple_bed_1_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_bed", + "conversation": "Let's work together to craft an purple_bed.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "oak_planks": 1 + }, + "1": { + "red_dye": 1, + "oak_planks": 1 + }, + "2": { + "oak_planks": 1, + "shears": 1 + } + }, + "agent_count": 3, + "target": "purple_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cut_sandstone_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an cut_sandstone", + "conversation": "Let's work together to craft an cut_sandstone.", + "initial_inventory": { + "0": { + "sandstone": 1 + }, + "1": { + "sandstone": 2 + }, + "2": { + "sandstone": 1 + } + }, + "agent_count": 3, + "target": "cut_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_1_with_plan_missing_iron_ingot_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "chest": 1 + }, + "1": { + "stone_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_daylight_detector_0_with_plan_missing_oak_slab_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "glass": 1, + "quartz": 1 + }, + "1": { + "glass": 1, + "quartz": 1 + }, + "2": { + "glass": 1, + "quartz": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "oak_slab" + ] + }, + "multiagent_crafting_brown_banner_1_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 2, + "oak_planks": 2 + }, + "1": { + "brown_dye": 2, + "shears": 1 + }, + "2": { + "brown_dye": 2 + } + }, + "agent_count": 3, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_leather_horse_armor_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an leather_horse_armor", + "conversation": "Let's work together to craft an leather_horse_armor.", + "initial_inventory": { + "0": { + "leather": 3 + }, + "1": { + "leather": 2 + }, + "2": { + "leather": 2 + } + }, + "agent_count": 3, + "target": "leather_horse_armor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_bed_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an red_bed", + "conversation": "Let's work together to craft an red_bed.", + "initial_inventory": { + "0": { + "beetroot": 1, + "black_wool": 1, + "oak_planks": 1 + }, + "1": { + "black_wool": 1, + "oak_planks": 1 + }, + "2": { + "black_wool": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "red_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_wool": 2, + "stick": 1 + }, + "1": { + "lime_wool": 2 + }, + "2": { + "lime_wool": 2 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_0_with_plan_missing_glass_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "quartz": 1, + "oak_planks": 1 + }, + "1": { + "quartz": 1, + "oak_planks": 1 + }, + "2": { + "quartz": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "glass" + ] + }, + "multiagent_crafting_brown_banner_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_wool": 2, + "stick": 1 + }, + "1": { + "brown_wool": 2 + }, + "2": { + "brown_wool": 2 + } + }, + "agent_count": 3, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_carpet_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_carpet", + "conversation": "Let's work together to craft an purple_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "red_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "purple_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_hopper_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "chest": 1 + }, + "1": { + "iron_ingot": 3 + }, + "2": { + "iron_ingot": 1 + } + }, + "agent_count": 3, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_1_with_plan_missing_redstone_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 2, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 2 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_snow_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an snow", + "conversation": "Let's work together to craft an snow.", + "initial_inventory": { + "0": { + "snow_block": 1 + }, + "1": { + "snow_block": 1 + }, + "2": { + "snow_block": 1 + } + }, + "agent_count": 3, + "target": "snow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "gray_dye": 2, + "black_wool": 2 + }, + "2": { + "gray_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_1_with_plan_missing_redstone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "stick": 1 + }, + "1": { + "gold_ingot": 2, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 2 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_hopper_minecart_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "chest": 1 + }, + "1": { + "iron_ingot": 3 + }, + "2": { + "iron_ingot": 4 + } + }, + "agent_count": 3, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_0_with_plan_missing_chest_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 3 + }, + "2": { + "iron_ingot": 1 + } + }, + "agent_count": 3, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_powered_rail_1_with_plan_missing_gold_ingot_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "furnace": 1 + }, + "1": { + "redstone": 1 + }, + "2": { + "iron_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_writable_book_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an writable_book", + "conversation": "Let's work together to craft an writable_book.", + "initial_inventory": { + "0": { + "book": 1 + }, + "1": { + "ink_sac": 1 + }, + "2": { + "feather": 1 + } + }, + "agent_count": 3, + "target": "writable_book", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_writable_book_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an writable_book", + "conversation": "Let's work together to craft an writable_book.", + "initial_inventory": { + "0": { + "paper": 1, + "leather": 1 + }, + "1": { + "paper": 1, + "ink_sac": 1 + }, + "2": { + "paper": 1, + "feather": 1 + } + }, + "agent_count": 3, + "target": "writable_book", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "glass": 1, + "quartz": 1, + "oak_slab": 1 + }, + "1": { + "glass": 1, + "quartz": 1, + "oak_slab": 1 + }, + "2": { + "glass": 1, + "quartz": 1, + "oak_slab": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 2, + "oak_planks": 2 + }, + "1": { + "brown_dye": 2, + "shears": 1 + }, + "2": { + "brown_dye": 2 + } + }, + "agent_count": 3, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_polished_blackstone_bricks_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_blackstone_bricks", + "conversation": "Let's work together to craft an polished_blackstone_bricks.", + "initial_inventory": { + "0": { + "polished_blackstone": 2 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + } + }, + "agent_count": 3, + "target": "polished_blackstone_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_bed_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_bed", + "conversation": "Let's work together to craft an purple_bed.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "black_wool": 1, + "oak_planks": 1 + }, + "1": { + "red_dye": 1, + "black_wool": 1, + "oak_planks": 1 + }, + "2": { + "black_wool": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "purple_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_2_with_plan_missing_redstone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "stick": 1 + }, + "1": { + "gold_ingot": 2, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 2 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_powered_rail_2_with_plan_missing_gold_ingot_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "furnace": 1 + }, + "1": { + "redstone": 1 + }, + "2": { + "iron_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_polished_andesite_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_andesite", + "conversation": "Let's work together to craft an polished_andesite.", + "initial_inventory": { + "0": { + "andesite": 2 + }, + "1": { + "andesite": 1 + }, + "2": { + "andesite": 1 + } + }, + "agent_count": 3, + "target": "polished_andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "lime_dye": 2, + "black_wool": 2 + }, + "2": { + "lime_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cut_sandstone_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an cut_sandstone", + "conversation": "Let's work together to craft an cut_sandstone.", + "initial_inventory": { + "0": { + "sandstone": 1 + }, + "1": { + "sandstone": 2 + }, + "2": { + "sandstone": 1 + } + }, + "agent_count": 3, + "target": "cut_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_2_with_plan_missing_glass_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "quartz": 1, + "oak_planks": 1 + }, + "1": { + "quartz": 1, + "oak_planks": 1 + }, + "2": { + "quartz": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "glass" + ] + }, + "multiagent_crafting_beehive_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an beehive", + "conversation": "Let's work together to craft an beehive.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "honeycomb": 1 + }, + "1": { + "oak_planks": 2, + "honeycomb": 1 + }, + "2": { + "oak_planks": 2, + "honeycomb": 1 + } + }, + "agent_count": 3, + "target": "beehive", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_2_with_plan_missing_redstone_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 2, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 2 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_lime_banner_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_wool": 2, + "stick": 1 + }, + "1": { + "lime_wool": 2 + }, + "2": { + "lime_wool": 2 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_wool_0_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_wool", + "conversation": "Let's work together to craft an lime_wool.", + "initial_inventory": { + "0": { + "green_dye": 1 + }, + "1": { + "white_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_powered_rail_2_with_plan_missing_gold_ingot_redstone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "stick": 1, + "diamond_pickaxe": 1 + }, + "1": { + "iron_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "gold_ingot", + "redstone" + ] + }, + "multiagent_crafting_daylight_detector_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "glass": 1, + "quartz": 1, + "oak_planks": 1 + }, + "1": { + "glass": 1, + "quartz": 1, + "oak_planks": 1 + }, + "2": { + "glass": 1, + "quartz": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_horse_armor_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an leather_horse_armor", + "conversation": "Let's work together to craft an leather_horse_armor.", + "initial_inventory": { + "0": { + "leather": 3 + }, + "1": { + "leather": 2 + }, + "2": { + "leather": 2 + } + }, + "agent_count": 3, + "target": "leather_horse_armor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_carpet_1_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_carpet", + "conversation": "Let's work together to craft an purple_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "red_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "purple_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_hopper_1_with_plan_missing_chest_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 3 + }, + "2": { + "iron_ingot": 1 + } + }, + "agent_count": 3, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_daylight_detector_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "glass": 1, + "quartz": 1, + "oak_planks": 1 + }, + "1": { + "glass": 1, + "quartz": 1, + "oak_planks": 1 + }, + "2": { + "glass": 1, + "quartz": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_2_with_plan_missing_oak_slab_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "glass": 1, + "quartz": 1 + }, + "1": { + "glass": 1, + "quartz": 1 + }, + "2": { + "glass": 1, + "quartz": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "oak_slab" + ] + }, + "multiagent_crafting_powered_rail_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 2, + "redstone": 1 + }, + "2": { + "gold_ingot": 2 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_0_with_plan_missing_glass_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "quartz": 1, + "oak_slab": 1 + }, + "1": { + "quartz": 1, + "oak_slab": 1 + }, + "2": { + "quartz": 1, + "oak_slab": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "glass" + ] + }, + "multiagent_crafting_daylight_detector_1_with_plan_missing_glass_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "quartz": 1, + "oak_planks": 1 + }, + "1": { + "quartz": 1, + "oak_planks": 1 + }, + "2": { + "quartz": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "glass" + ] + }, + "multiagent_crafting_cut_sandstone_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an cut_sandstone", + "conversation": "Let's work together to craft an cut_sandstone.", + "initial_inventory": { + "0": { + "sandstone": 1 + }, + "1": { + "sandstone": 2 + }, + "2": { + "sandstone": 1 + } + }, + "agent_count": 3, + "target": "cut_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 2, + "oak_planks": 2 + }, + "1": { + "lime_dye": 2, + "shears": 1 + }, + "2": { + "lime_dye": 2 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_polished_andesite_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_andesite", + "conversation": "Let's work together to craft an polished_andesite.", + "initial_inventory": { + "0": { + "andesite": 2 + }, + "1": { + "andesite": 1 + }, + "2": { + "andesite": 1 + } + }, + "agent_count": 3, + "target": "polished_andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 4 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 2 + } + }, + "agent_count": 3, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_wool": 2, + "stick": 1 + }, + "1": { + "gray_wool": 2 + }, + "2": { + "gray_wool": 2 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "glass": 1, + "quartz": 1, + "oak_planks": 1 + }, + "1": { + "glass": 1, + "quartz": 1, + "oak_planks": 1 + }, + "2": { + "glass": 1, + "quartz": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan_missing_gold_ingot_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "stick": 1, + "furnace": 1 + }, + "1": { + "redstone": 1 + }, + "2": { + "iron_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_lime_banner_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "lime_dye": 2, + "black_wool": 2 + }, + "2": { + "lime_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan_missing_gold_ingot_redstone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "stick": 1, + "diamond_pickaxe": 1 + }, + "1": { + "iron_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "gold_ingot", + "redstone" + ] + }, + "multiagent_crafting_powered_rail_0_with_plan_missing_redstone_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 2, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 2 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_daylight_detector_2_with_plan_missing_glass_oak_slab_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "quartz": 1 + }, + "1": { + "quartz": 1 + }, + "2": { + "quartz": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "glass", + "oak_slab" + ] + }, + "multiagent_crafting_purple_bed_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_bed", + "conversation": "Let's work together to craft an purple_bed.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "black_wool": 1, + "oak_planks": 1 + }, + "1": { + "red_dye": 1, + "black_wool": 1, + "oak_planks": 1 + }, + "2": { + "black_wool": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "purple_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_beehive_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an beehive", + "conversation": "Let's work together to craft an beehive.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "honeycomb": 1 + }, + "1": { + "oak_planks": 2, + "honeycomb": 1 + }, + "2": { + "oak_planks": 2, + "honeycomb": 1 + } + }, + "agent_count": 3, + "target": "beehive", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 2, + "oak_planks": 2 + }, + "1": { + "gray_dye": 2, + "shears": 1 + }, + "2": { + "gray_dye": 2 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_daylight_detector_1_with_plan_missing_glass_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "quartz": 1, + "oak_slab": 1 + }, + "1": { + "quartz": 1, + "oak_slab": 1 + }, + "2": { + "quartz": 1, + "oak_slab": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "glass" + ] + }, + "multiagent_crafting_writable_book_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an writable_book", + "conversation": "Let's work together to craft an writable_book.", + "initial_inventory": { + "0": { + "paper": 1, + "leather": 1 + }, + "1": { + "paper": 1, + "ink_sac": 1 + }, + "2": { + "paper": 1, + "feather": 1 + } + }, + "agent_count": 3, + "target": "writable_book", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_2_with_plan_missing_gold_ingot_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "stick": 1, + "furnace": 1 + }, + "1": { + "redstone": 1 + }, + "2": { + "iron_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_hopper_minecart_1_with_plan_missing_chest_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 3 + }, + "1": { + "iron_ingot": 3 + }, + "2": { + "iron_ingot": 4 + } + }, + "agent_count": 3, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_powered_rail_1_with_plan_missing_gold_ingot_redstone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "stick": 1, + "diamond_pickaxe": 1 + }, + "1": { + "iron_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "gold_ingot", + "redstone" + ] + }, + "multiagent_crafting_purple_bed_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_bed", + "conversation": "Let's work together to craft an purple_bed.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "oak_planks": 1 + }, + "1": { + "red_dye": 1, + "oak_planks": 1 + }, + "2": { + "oak_planks": 1, + "shears": 1 + } + }, + "agent_count": 3, + "target": "purple_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_polished_andesite_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_andesite", + "conversation": "Let's work together to craft an polished_andesite.", + "initial_inventory": { + "0": { + "andesite": 2 + }, + "1": { + "andesite": 1 + }, + "2": { + "andesite": 1 + } + }, + "agent_count": 3, + "target": "polished_andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 2, + "oak_planks": 2 + }, + "1": { + "gray_dye": 2, + "shears": 1 + }, + "2": { + "gray_dye": 2 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_powered_rail_1_with_plan_missing_gold_ingot_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "stick": 1, + "furnace": 1 + }, + "1": { + "redstone": 1 + }, + "2": { + "iron_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_powered_rail_2_with_plan_missing_gold_ingot_redstone_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "diamond_pickaxe": 1 + }, + "1": { + "iron_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "gold_ingot", + "redstone" + ] + }, + "multiagent_crafting_polished_blackstone_bricks_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_blackstone_bricks", + "conversation": "Let's work together to craft an polished_blackstone_bricks.", + "initial_inventory": { + "0": { + "polished_blackstone": 2 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + } + }, + "agent_count": 3, + "target": "polished_blackstone_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "brown_dye": 2, + "black_wool": 2 + }, + "2": { + "brown_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_2_with_plan_missing_glass_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "quartz": 1, + "oak_slab": 1 + }, + "1": { + "quartz": 1, + "oak_slab": 1 + }, + "2": { + "quartz": 1, + "oak_slab": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "glass" + ] + }, + "multiagent_crafting_gray_banner_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "gray_dye": 2, + "black_wool": 2 + }, + "2": { + "gray_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_2_with_plan_missing_chest_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 3 + }, + "2": { + "iron_ingot": 1 + } + }, + "agent_count": 3, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_powered_rail_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 2, + "redstone": 1 + }, + "2": { + "gold_ingot": 2 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_snow_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an snow", + "conversation": "Let's work together to craft an snow.", + "initial_inventory": { + "0": { + "snow_block": 1 + }, + "1": { + "snow_block": 1 + }, + "2": { + "snow_block": 1 + } + }, + "agent_count": 3, + "target": "snow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_0_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 2, + "oak_planks": 2 + }, + "1": { + "brown_dye": 2, + "shears": 1 + }, + "2": { + "brown_dye": 2 + } + }, + "agent_count": 3, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_hopper_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "chest": 1 + }, + "1": { + "iron_ingot": 3 + }, + "2": { + "iron_ingot": 1 + } + }, + "agent_count": 3, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "gray_dye": 2, + "black_wool": 2 + }, + "2": { + "gray_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_exposed_cut_copper_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an waxed_exposed_cut_copper", + "conversation": "Let's work together to craft an waxed_exposed_cut_copper.", + "initial_inventory": { + "0": { + "waxed_exposed_copper": 1 + }, + "1": { + "waxed_exposed_copper": 2 + }, + "2": { + "waxed_exposed_copper": 1 + } + }, + "agent_count": 3, + "target": "waxed_exposed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_carpet_0_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_carpet", + "conversation": "Let's work together to craft an purple_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "red_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "purple_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_daylight_detector_1_with_plan_missing_oak_slab_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "glass": 1, + "quartz": 1 + }, + "1": { + "glass": 1, + "quartz": 1 + }, + "2": { + "glass": 1, + "quartz": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "oak_slab" + ] + }, + "multiagent_crafting_lime_wool_1_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_wool", + "conversation": "Let's work together to craft an lime_wool.", + "initial_inventory": { + "0": { + "green_dye": 1 + }, + "1": { + "white_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_banner_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_wool": 2, + "stick": 1 + }, + "1": { + "lime_wool": 2 + }, + "2": { + "lime_wool": 2 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_1_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 2, + "oak_planks": 2 + }, + "1": { + "lime_dye": 2, + "shears": 1 + }, + "2": { + "lime_dye": 2 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_daylight_detector_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "glass": 1, + "quartz": 1, + "oak_slab": 1 + }, + "1": { + "glass": 1, + "quartz": 1, + "oak_slab": 1 + }, + "2": { + "glass": 1, + "quartz": 1, + "oak_slab": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_stone_bricks_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an chiseled_stone_bricks", + "conversation": "Let's work together to craft an chiseled_stone_bricks.", + "initial_inventory": { + "0": { + "stone_bricks": 1 + }, + "1": { + "stone_bricks": 1 + }, + "2": { + "stone_bricks": 1 + } + }, + "agent_count": 3, + "target": "chiseled_stone_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_2_with_plan_missing_iron_ingot_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "chest": 1 + }, + "1": { + "stone_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_hopper_minecart_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "chest": 1 + }, + "1": { + "iron_ingot": 3 + }, + "2": { + "iron_ingot": 4 + } + }, + "agent_count": 3, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_snow_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an snow", + "conversation": "Let's work together to craft an snow.", + "initial_inventory": { + "0": { + "snow_block": 1 + }, + "1": { + "snow_block": 1 + }, + "2": { + "snow_block": 1 + } + }, + "agent_count": 3, + "target": "snow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_bed_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_bed", + "conversation": "Let's work together to craft an purple_bed.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "black_wool": 1, + "oak_planks": 1 + }, + "1": { + "red_dye": 1, + "black_wool": 1, + "oak_planks": 1 + }, + "2": { + "black_wool": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "purple_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_1_with_plan_missing_glass_oak_slab_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "quartz": 1 + }, + "1": { + "quartz": 1 + }, + "2": { + "quartz": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "glass", + "oak_slab" + ] + }, + "multiagent_crafting_lime_banner_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "lime_dye": 2, + "black_wool": 2 + }, + "2": { + "lime_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_beehive_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an beehive", + "conversation": "Let's work together to craft an beehive.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "honeycomb": 1 + }, + "1": { + "oak_planks": 2, + "honeycomb": 1 + }, + "2": { + "oak_planks": 2, + "honeycomb": 1 + } + }, + "agent_count": 3, + "target": "beehive", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_0_with_plan_missing_chest_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 3 + }, + "1": { + "iron_ingot": 3 + }, + "2": { + "iron_ingot": 4 + } + }, + "agent_count": 3, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_waxed_exposed_cut_copper_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an waxed_exposed_cut_copper", + "conversation": "Let's work together to craft an waxed_exposed_cut_copper.", + "initial_inventory": { + "0": { + "waxed_exposed_copper": 1 + }, + "1": { + "waxed_exposed_copper": 2 + }, + "2": { + "waxed_exposed_copper": 1 + } + }, + "agent_count": 3, + "target": "waxed_exposed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_stone_bricks_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an chiseled_stone_bricks", + "conversation": "Let's work together to craft an chiseled_stone_bricks.", + "initial_inventory": { + "0": { + "stone_bricks": 1 + }, + "1": { + "stone_bricks": 1 + }, + "2": { + "stone_bricks": 1 + } + }, + "agent_count": 3, + "target": "chiseled_stone_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "chest": 1 + }, + "1": { + "iron_ingot": 3 + }, + "2": { + "iron_ingot": 1 + } + }, + "agent_count": 3, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 2, + "oak_planks": 2 + }, + "1": { + "lime_dye": 2, + "shears": 1 + }, + "2": { + "lime_dye": 2 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_hopper_1_with_plan_missing_iron_ingot_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "chest": 1 + }, + "1": { + "stone_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_brown_banner_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "brown_dye": 2, + "black_wool": 2 + }, + "2": { + "brown_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "stick": 1 + }, + "1": { + "gold_ingot": 2, + "redstone": 1 + }, + "2": { + "gold_ingot": 2 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_wool_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_wool", + "conversation": "Let's work together to craft an lime_wool.", + "initial_inventory": { + "0": { + "green_dye": 1 + }, + "1": { + "white_dye": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "glass": 1, + "quartz": 1, + "oak_slab": 1 + }, + "1": { + "glass": 1, + "quartz": 1, + "oak_slab": 1 + }, + "2": { + "glass": 1, + "quartz": 1, + "oak_slab": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 2, + "redstone": 1 + }, + "2": { + "gold_ingot": 2 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_0_with_plan_missing_glass_oak_slab_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "quartz": 1 + }, + "1": { + "quartz": 1 + }, + "2": { + "quartz": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "glass", + "oak_slab" + ] + }, + "multiagent_crafting_purple_carpet_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_carpet", + "conversation": "Let's work together to craft an purple_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "red_dye": 1 + }, + "2": { + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "purple_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_wool_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_wool", + "conversation": "Let's work together to craft an lime_wool.", + "initial_inventory": { + "0": { + "green_dye": 1 + }, + "1": { + "white_dye": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_bed_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an red_bed", + "conversation": "Let's work together to craft an red_bed.", + "initial_inventory": { + "0": { + "beetroot": 1, + "black_wool": 1, + "oak_planks": 1 + }, + "1": { + "black_wool": 1, + "oak_planks": 1 + }, + "2": { + "black_wool": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "red_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_1_with_plan_missing_gold_ingot_redstone_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "diamond_pickaxe": 1 + }, + "1": { + "iron_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "gold_ingot", + "redstone" + ] + }, + "multiagent_crafting_purple_bed_0_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_bed", + "conversation": "Let's work together to craft an purple_bed.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "oak_planks": 1 + }, + "1": { + "red_dye": 1, + "oak_planks": 1 + }, + "2": { + "oak_planks": 1, + "shears": 1 + } + }, + "agent_count": 3, + "target": "purple_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_wool_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_wool", + "conversation": "Let's work together to craft an lime_wool.", + "initial_inventory": { + "0": { + "green_dye": 1 + }, + "1": { + "white_dye": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "chest": 1 + }, + "1": { + "iron_ingot": 3 + }, + "2": { + "iron_ingot": 4 + } + }, + "agent_count": 3, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_wool_0_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_wool", + "conversation": "Let's work together to craft an lime_wool.", + "initial_inventory": { + "0": { + "green_dye": 1 + }, + "1": { + "bone_meal": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_wool_1_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_wool", + "conversation": "Let's work together to craft an lime_wool.", + "initial_inventory": { + "0": { + "green_dye": 1 + }, + "1": { + "bone_meal": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_wool_2_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_wool", + "conversation": "Let's work together to craft an lime_wool.", + "initial_inventory": { + "0": { + "green_dye": 1 + }, + "1": { + "bone_meal": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_wool_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_wool", + "conversation": "Let's work together to craft an lime_wool.", + "initial_inventory": { + "0": { + "green_dye": 1 + }, + "1": { + "bone_meal": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_wool_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_wool", + "conversation": "Let's work together to craft an lime_wool.", + "initial_inventory": { + "0": { + "green_dye": 1 + }, + "1": { + "bone_meal": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_wool_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_wool", + "conversation": "Let's work together to craft an lime_wool.", + "initial_inventory": { + "0": { + "green_dye": 1 + }, + "1": { + "bone_meal": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_0_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 1, + "white_dye": 1, + "oak_log": 1 + }, + "1": { + "black_dye": 1, + "white_dye": 1, + "shears": 1 + }, + "2": { + "black_dye": 1, + "white_dye": 1 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_banner_1_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 1, + "white_dye": 1, + "oak_log": 1 + }, + "1": { + "black_dye": 1, + "white_dye": 1, + "shears": 1 + }, + "2": { + "black_dye": 1, + "white_dye": 1 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_banner_2_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 1, + "white_dye": 1, + "oak_log": 1 + }, + "1": { + "black_dye": 1, + "white_dye": 1, + "shears": 1 + }, + "2": { + "black_dye": 1, + "white_dye": 1 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_banner_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 1, + "white_dye": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "black_dye": 1, + "white_dye": 1, + "black_wool": 2 + }, + "2": { + "black_dye": 1, + "white_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 1, + "white_dye": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "black_dye": 1, + "white_dye": 1, + "black_wool": 2 + }, + "2": { + "black_dye": 1, + "white_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 1, + "white_dye": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "black_dye": 1, + "white_dye": 1, + "black_wool": 2 + }, + "2": { + "black_dye": 1, + "white_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_0_with_plan_missing_black_wool_depth_3_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 1, + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "ink_sac": 1, + "bone_meal": 1, + "shears": 1 + }, + "2": { + "ink_sac": 1, + "bone_meal": 1 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 540, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_banner_1_with_plan_missing_black_wool_depth_3_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 1, + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "ink_sac": 1, + "bone_meal": 1, + "shears": 1 + }, + "2": { + "ink_sac": 1, + "bone_meal": 1 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 540, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_banner_2_with_plan_missing_black_wool_depth_3_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 1, + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "ink_sac": 1, + "bone_meal": 1, + "shears": 1 + }, + "2": { + "ink_sac": 1, + "bone_meal": 1 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 540, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_banner_0_with_plan__depth_3_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 1, + "bone_meal": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "ink_sac": 1, + "bone_meal": 1, + "black_wool": 2 + }, + "2": { + "ink_sac": 1, + "bone_meal": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan__depth_3_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 1, + "bone_meal": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "ink_sac": 1, + "bone_meal": 1, + "black_wool": 2 + }, + "2": { + "ink_sac": 1, + "bone_meal": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_2_with_plan__depth_3_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 1, + "bone_meal": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "ink_sac": 1, + "bone_meal": 1, + "black_wool": 2 + }, + "2": { + "ink_sac": 1, + "bone_meal": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "white_dye": 1, + "oak_log": 1 + }, + "1": { + "green_dye": 1, + "white_dye": 1, + "shears": 1 + }, + "2": { + "green_dye": 1, + "white_dye": 1 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_banner_1_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "white_dye": 1, + "oak_log": 1 + }, + "1": { + "green_dye": 1, + "white_dye": 1, + "shears": 1 + }, + "2": { + "green_dye": 1, + "white_dye": 1 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_banner_2_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "white_dye": 1, + "oak_log": 1 + }, + "1": { + "green_dye": 1, + "white_dye": 1, + "shears": 1 + }, + "2": { + "green_dye": 1, + "white_dye": 1 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_banner_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "white_dye": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "green_dye": 1, + "white_dye": 1, + "black_wool": 2 + }, + "2": { + "green_dye": 1, + "white_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "white_dye": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "green_dye": 1, + "white_dye": 1, + "black_wool": 2 + }, + "2": { + "green_dye": 1, + "white_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "white_dye": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "green_dye": 1, + "white_dye": 1, + "black_wool": 2 + }, + "2": { + "green_dye": 1, + "white_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan_missing_black_wool_depth_3_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "green_dye": 1, + "bone_meal": 1, + "shears": 1 + }, + "2": { + "green_dye": 1, + "bone_meal": 1 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 540, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_banner_1_with_plan_missing_black_wool_depth_3_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "green_dye": 1, + "bone_meal": 1, + "shears": 1 + }, + "2": { + "green_dye": 1, + "bone_meal": 1 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 540, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_banner_2_with_plan_missing_black_wool_depth_3_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "green_dye": 1, + "bone_meal": 1, + "shears": 1 + }, + "2": { + "green_dye": 1, + "bone_meal": 1 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 540, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_banner_0_with_plan__depth_3_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "bone_meal": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "green_dye": 1, + "bone_meal": 1, + "black_wool": 2 + }, + "2": { + "green_dye": 1, + "bone_meal": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_1_with_plan__depth_3_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "bone_meal": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "green_dye": 1, + "bone_meal": 1, + "black_wool": 2 + }, + "2": { + "green_dye": 1, + "bone_meal": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_2_with_plan__depth_3_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "bone_meal": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "green_dye": 1, + "bone_meal": 1, + "black_wool": 2 + }, + "2": { + "green_dye": 1, + "bone_meal": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 4, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 3, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 3, + "oak_planks": 4 + } + }, + "agent_count": 3, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 4, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 3, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 3, + "oak_planks": 4 + } + }, + "agent_count": 3, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 4, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 3, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 3, + "oak_planks": 4 + } + }, + "agent_count": 3, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/dev_tasks/tasks_3_agents_stats.txt b/tasks/crafting_tasks/dev_tasks/tasks_3_agents_stats.txt new file mode 100644 index 0000000..60c7d8c --- /dev/null +++ b/tasks/crafting_tasks/dev_tasks/tasks_3_agents_stats.txt @@ -0,0 +1,16 @@ +{ + "num_tasks": 184, + "avg_depth": 2.4754098360655736, + "std_depth": 0.9684626549338964, + "num_tasks_based_depth": { + "0": 72, + "1": 78, + "2": 21, + "3": 12 + }, + "num_missing_resources": { + "0": 108, + "1": 66, + "2": 9 + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/dev_tasks/tasks_4_agents.json b/tasks/crafting_tasks/dev_tasks/tasks_4_agents.json new file mode 100644 index 0000000..6748528 --- /dev/null +++ b/tasks/crafting_tasks/dev_tasks/tasks_4_agents.json @@ -0,0 +1,4766 @@ +{ + "multiagent_crafting_leather_boots_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_boots", + "conversation": "Let's work together to craft an leather_boots.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + } + }, + "agent_count": 4, + "target": "leather_boots", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan_missing_redstone_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 3 + }, + "3": { + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_hopper_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "chest": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_writable_book_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an writable_book", + "conversation": "Let's work together to craft an writable_book.", + "initial_inventory": { + "0": { + "paper": 3 + }, + "1": { + "leather": 1 + }, + "2": { + "ink_sac": 1 + }, + "3": { + "feather": 1 + } + }, + "agent_count": 4, + "target": "writable_book", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cut_sandstone_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an cut_sandstone", + "conversation": "Let's work together to craft an cut_sandstone.", + "initial_inventory": { + "0": { + "sandstone": 1 + }, + "1": { + "sandstone": 1 + }, + "2": { + "sandstone": 1 + }, + "3": { + "sandstone": 1 + } + }, + "agent_count": 4, + "target": "cut_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 3, + "black_wool": 3, + "oak_planks": 2 + }, + "1": { + "gray_dye": 1, + "black_wool": 1 + }, + "2": { + "gray_dye": 1, + "black_wool": 1 + }, + "3": { + "gray_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_3_with_plan_missing_chest_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 2 + } + }, + "agent_count": 4, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_gray_banner_2_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 1, + "oak_planks": 2 + }, + "1": { + "gray_dye": 1, + "shears": 1 + }, + "2": { + "gray_dye": 3 + }, + "3": { + "gray_dye": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_ender_chest_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 2, + "ender_eye": 1 + }, + "1": { + "obsidian": 2 + }, + "2": { + "obsidian": 2 + }, + "3": { + "obsidian": 2 + } + }, + "agent_count": 4, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "chest": 1 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 4 + }, + "3": { + "iron_ingot": 2 + } + }, + "agent_count": 4, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_wool": 1, + "stick": 1 + }, + "1": { + "lime_wool": 1 + }, + "2": { + "lime_wool": 1 + }, + "3": { + "lime_wool": 3 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 2, + "oak_planks": 2 + } + }, + "agent_count": 4, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan_missing_redstone_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 1, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 3 + } + }, + "agent_count": 4, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_lime_banner_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 3, + "black_wool": 3 + }, + "2": { + "lime_dye": 1, + "black_wool": 1 + }, + "3": { + "lime_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 1, + "redstone": 1 + }, + "2": { + "gold_ingot": 3 + }, + "3": { + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 3, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 1, + "black_wool": 3 + }, + "2": { + "brown_dye": 1, + "black_wool": 1 + }, + "3": { + "brown_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_horse_armor_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_horse_armor", + "conversation": "Let's work together to craft an leather_horse_armor.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 4 + }, + "3": { + "leather": 1 + } + }, + "agent_count": 4, + "target": "leather_horse_armor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "chest": 1 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 4 + }, + "3": { + "iron_ingot": 2 + } + }, + "agent_count": 4, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 1, + "redstone": 1 + }, + "2": { + "gold_ingot": 3 + }, + "3": { + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 2, + "oak_planks": 2 + } + }, + "agent_count": 4, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_horse_armor_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_horse_armor", + "conversation": "Let's work together to craft an leather_horse_armor.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 4 + }, + "3": { + "leather": 1 + } + }, + "agent_count": 4, + "target": "leather_horse_armor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_ender_chest_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 2, + "ender_pearl": 1 + }, + "1": { + "obsidian": 2, + "blaze_powder": 1 + }, + "2": { + "obsidian": 2 + }, + "3": { + "obsidian": 2 + } + }, + "agent_count": 4, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cut_sandstone_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an cut_sandstone", + "conversation": "Let's work together to craft an cut_sandstone.", + "initial_inventory": { + "0": { + "sandstone": 1 + }, + "1": { + "sandstone": 1 + }, + "2": { + "sandstone": 1 + }, + "3": { + "sandstone": 1 + } + }, + "agent_count": 4, + "target": "cut_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_2_with_plan_missing_redstone_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 3 + }, + "3": { + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_ender_chest_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 2, + "ender_eye": 1 + }, + "1": { + "obsidian": 2 + }, + "2": { + "obsidian": 2 + }, + "3": { + "obsidian": 2 + } + }, + "agent_count": 4, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_3_with_plan_missing_chest_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 4 + } + }, + "agent_count": 4, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_polished_andesite_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_andesite", + "conversation": "Let's work together to craft an polished_andesite.", + "initial_inventory": { + "0": { + "andesite": 1 + }, + "1": { + "andesite": 1 + }, + "2": { + "andesite": 1 + }, + "3": { + "andesite": 1 + } + }, + "agent_count": 4, + "target": "polished_andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_2_with_plan_missing_chest_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 4 + } + }, + "agent_count": 4, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_powered_rail_3_with_plan_missing_redstone_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 1, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 3 + } + }, + "agent_count": 4, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_gray_banner_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 3, + "black_wool": 3, + "oak_planks": 2 + }, + "1": { + "gray_dye": 1, + "black_wool": 1 + }, + "2": { + "gray_dye": 1, + "black_wool": 1 + }, + "3": { + "gray_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_wool": 1, + "stick": 1 + }, + "1": { + "lime_wool": 1 + }, + "2": { + "lime_wool": 1 + }, + "3": { + "lime_wool": 3 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_writable_book_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an writable_book", + "conversation": "Let's work together to craft an writable_book.", + "initial_inventory": { + "0": { + "paper": 3 + }, + "1": { + "leather": 1 + }, + "2": { + "ink_sac": 1 + }, + "3": { + "feather": 1 + } + }, + "agent_count": 4, + "target": "writable_book", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cut_sandstone_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an cut_sandstone", + "conversation": "Let's work together to craft an cut_sandstone.", + "initial_inventory": { + "0": { + "sandstone": 1 + }, + "1": { + "sandstone": 1 + }, + "2": { + "sandstone": 1 + }, + "3": { + "sandstone": 1 + } + }, + "agent_count": 4, + "target": "cut_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_0_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 1, + "oak_planks": 2 + }, + "1": { + "gray_dye": 1, + "shears": 1 + }, + "2": { + "gray_dye": 3 + }, + "3": { + "gray_dye": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_polished_blackstone_bricks_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_blackstone_bricks", + "conversation": "Let's work together to craft an polished_blackstone_bricks.", + "initial_inventory": { + "0": { + "polished_blackstone": 1 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + }, + "3": { + "polished_blackstone": 1 + } + }, + "agent_count": 4, + "target": "polished_blackstone_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_ender_chest_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 2, + "ender_pearl": 1 + }, + "1": { + "obsidian": 2, + "blaze_powder": 1 + }, + "2": { + "obsidian": 2 + }, + "3": { + "obsidian": 2 + } + }, + "agent_count": 4, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_2_with_plan_missing_redstone_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 1, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 3 + } + }, + "agent_count": 4, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_writable_book_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an writable_book", + "conversation": "Let's work together to craft an writable_book.", + "initial_inventory": { + "0": { + "paper": 3 + }, + "1": { + "leather": 1 + }, + "2": { + "ink_sac": 1 + }, + "3": { + "feather": 1 + } + }, + "agent_count": 4, + "target": "writable_book", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_bricks_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_blackstone_bricks", + "conversation": "Let's work together to craft an polished_blackstone_bricks.", + "initial_inventory": { + "0": { + "polished_blackstone": 1 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + }, + "3": { + "polished_blackstone": 1 + } + }, + "agent_count": 4, + "target": "polished_blackstone_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 3, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 1, + "black_wool": 3 + }, + "2": { + "brown_dye": 1, + "black_wool": 1 + }, + "3": { + "brown_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_exposed_cut_copper_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an waxed_exposed_cut_copper", + "conversation": "Let's work together to craft an waxed_exposed_cut_copper.", + "initial_inventory": { + "0": { + "waxed_exposed_copper": 1 + }, + "1": { + "waxed_exposed_copper": 1 + }, + "2": { + "waxed_exposed_copper": 1 + }, + "3": { + "waxed_exposed_copper": 1 + } + }, + "agent_count": 4, + "target": "waxed_exposed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_3_with_plan_missing_redstone_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 3 + }, + "3": { + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_brown_banner_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_wool": 3, + "stick": 1 + }, + "1": { + "brown_wool": 1 + }, + "2": { + "brown_wool": 1 + }, + "3": { + "brown_wool": 1 + } + }, + "agent_count": 4, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_0_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 3, + "shears": 1 + }, + "2": { + "brown_dye": 1 + }, + "3": { + "brown_dye": 1 + } + }, + "agent_count": 4, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_polished_andesite_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_andesite", + "conversation": "Let's work together to craft an polished_andesite.", + "initial_inventory": { + "0": { + "andesite": 1 + }, + "1": { + "andesite": 1 + }, + "2": { + "andesite": 1 + }, + "3": { + "andesite": 1 + } + }, + "agent_count": 4, + "target": "polished_andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 3, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 1, + "black_wool": 3 + }, + "2": { + "brown_dye": 1, + "black_wool": 1 + }, + "3": { + "brown_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_exposed_cut_copper_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an waxed_exposed_cut_copper", + "conversation": "Let's work together to craft an waxed_exposed_cut_copper.", + "initial_inventory": { + "0": { + "waxed_exposed_copper": 1 + }, + "1": { + "waxed_exposed_copper": 1 + }, + "2": { + "waxed_exposed_copper": 1 + }, + "3": { + "waxed_exposed_copper": 1 + } + }, + "agent_count": 4, + "target": "waxed_exposed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_ender_chest_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 2, + "ender_pearl": 1 + }, + "1": { + "obsidian": 2, + "blaze_powder": 1 + }, + "2": { + "obsidian": 2 + }, + "3": { + "obsidian": 2 + } + }, + "agent_count": 4, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "chest": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 3, + "black_wool": 3 + }, + "2": { + "lime_dye": 1, + "black_wool": 1 + }, + "3": { + "lime_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_ender_chest_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 2, + "ender_eye": 1 + }, + "1": { + "obsidian": 2 + }, + "2": { + "obsidian": 2 + }, + "3": { + "obsidian": 2 + } + }, + "agent_count": 4, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_writable_book_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an writable_book", + "conversation": "Let's work together to craft an writable_book.", + "initial_inventory": { + "0": { + "paper": 3 + }, + "1": { + "leather": 1 + }, + "2": { + "ink_sac": 1 + }, + "3": { + "feather": 1 + } + }, + "agent_count": 4, + "target": "writable_book", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_wool": 3, + "stick": 1 + }, + "1": { + "gray_wool": 1 + }, + "2": { + "gray_wool": 1 + }, + "3": { + "gray_wool": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 3, + "redstone": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "chest": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 3, + "black_wool": 3 + }, + "2": { + "lime_dye": 1, + "black_wool": 1 + }, + "3": { + "lime_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_boots_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_boots", + "conversation": "Let's work together to craft an leather_boots.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + } + }, + "agent_count": 4, + "target": "leather_boots", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 3, + "redstone": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_boots_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_boots", + "conversation": "Let's work together to craft an leather_boots.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + } + }, + "agent_count": 4, + "target": "leather_boots", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "chest": 1 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 4 + }, + "3": { + "iron_ingot": 2 + } + }, + "agent_count": 4, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cut_sandstone_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an cut_sandstone", + "conversation": "Let's work together to craft an cut_sandstone.", + "initial_inventory": { + "0": { + "sandstone": 1 + }, + "1": { + "sandstone": 1 + }, + "2": { + "sandstone": 1 + }, + "3": { + "sandstone": 1 + } + }, + "agent_count": 4, + "target": "cut_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_2_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 1, + "shears": 1 + }, + "2": { + "lime_dye": 3 + }, + "3": { + "lime_dye": 1 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_powered_rail_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 1, + "redstone": 1 + }, + "2": { + "gold_ingot": 3 + }, + "3": { + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "chest": 1 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 4 + }, + "3": { + "iron_ingot": 2 + } + }, + "agent_count": 4, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_wool": 3, + "stick": 1 + }, + "1": { + "gray_wool": 1 + }, + "2": { + "gray_wool": 1 + }, + "3": { + "gray_wool": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 1, + "oak_planks": 2 + }, + "1": { + "gray_dye": 1, + "shears": 1 + }, + "2": { + "gray_dye": 3 + }, + "3": { + "gray_dye": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_leather_horse_armor_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_horse_armor", + "conversation": "Let's work together to craft an leather_horse_armor.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 4 + }, + "3": { + "leather": 1 + } + }, + "agent_count": 4, + "target": "leather_horse_armor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_0_with_plan_missing_chest_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 4 + } + }, + "agent_count": 4, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_brown_banner_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_wool": 3, + "stick": 1 + }, + "1": { + "brown_wool": 1 + }, + "2": { + "brown_wool": 1 + }, + "3": { + "brown_wool": 1 + } + }, + "agent_count": 4, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 2, + "oak_planks": 2 + } + }, + "agent_count": 4, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_horse_armor_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_horse_armor", + "conversation": "Let's work together to craft an leather_horse_armor.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 4 + }, + "3": { + "leather": 1 + } + }, + "agent_count": 4, + "target": "leather_horse_armor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_2_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 3, + "shears": 1 + }, + "2": { + "brown_dye": 1 + }, + "3": { + "brown_dye": 1 + } + }, + "agent_count": 4, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_hopper_2_with_plan_missing_chest_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 2 + } + }, + "agent_count": 4, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_powered_rail_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 3, + "redstone": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_wool": 3, + "stick": 1 + }, + "1": { + "gray_wool": 1 + }, + "2": { + "gray_wool": 1 + }, + "3": { + "gray_wool": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_1_with_plan_missing_redstone_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 3 + }, + "3": { + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_lime_banner_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_wool": 1, + "stick": 1 + }, + "1": { + "lime_wool": 1 + }, + "2": { + "lime_wool": 1 + }, + "3": { + "lime_wool": 3 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 3, + "black_wool": 3, + "oak_planks": 2 + }, + "1": { + "gray_dye": 1, + "black_wool": 1 + }, + "2": { + "gray_dye": 1, + "black_wool": 1 + }, + "3": { + "gray_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_1_with_plan_missing_chest_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 2 + } + }, + "agent_count": 4, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_ender_chest_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 2, + "ender_pearl": 1 + }, + "1": { + "obsidian": 2, + "blaze_powder": 1 + }, + "2": { + "obsidian": 2 + }, + "3": { + "obsidian": 2 + } + }, + "agent_count": 4, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_wool": 3, + "stick": 1 + }, + "1": { + "brown_wool": 1 + }, + "2": { + "brown_wool": 1 + }, + "3": { + "brown_wool": 1 + } + }, + "agent_count": 4, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 2, + "oak_planks": 2 + } + }, + "agent_count": 4, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_andesite_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_andesite", + "conversation": "Let's work together to craft an polished_andesite.", + "initial_inventory": { + "0": { + "andesite": 1 + }, + "1": { + "andesite": 1 + }, + "2": { + "andesite": 1 + }, + "3": { + "andesite": 1 + } + }, + "agent_count": 4, + "target": "polished_andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_3_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 1, + "shears": 1 + }, + "2": { + "lime_dye": 3 + }, + "3": { + "lime_dye": 1 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_waxed_exposed_cut_copper_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an waxed_exposed_cut_copper", + "conversation": "Let's work together to craft an waxed_exposed_cut_copper.", + "initial_inventory": { + "0": { + "waxed_exposed_copper": 1 + }, + "1": { + "waxed_exposed_copper": 1 + }, + "2": { + "waxed_exposed_copper": 1 + }, + "3": { + "waxed_exposed_copper": 1 + } + }, + "agent_count": 4, + "target": "waxed_exposed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 1, + "shears": 1 + }, + "2": { + "lime_dye": 3 + }, + "3": { + "lime_dye": 1 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_polished_blackstone_bricks_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_blackstone_bricks", + "conversation": "Let's work together to craft an polished_blackstone_bricks.", + "initial_inventory": { + "0": { + "polished_blackstone": 1 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + }, + "3": { + "polished_blackstone": 1 + } + }, + "agent_count": 4, + "target": "polished_blackstone_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_1_with_plan_missing_chest_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 4 + } + }, + "agent_count": 4, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_ender_chest_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 2, + "ender_eye": 1 + }, + "1": { + "obsidian": 2 + }, + "2": { + "obsidian": 2 + }, + "3": { + "obsidian": 2 + } + }, + "agent_count": 4, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 3, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 1, + "black_wool": 3 + }, + "2": { + "brown_dye": 1, + "black_wool": 1 + }, + "3": { + "brown_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_1_with_plan_missing_redstone_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 1, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 3 + } + }, + "agent_count": 4, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_gray_banner_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 3, + "black_wool": 3, + "oak_planks": 2 + }, + "1": { + "gray_dye": 1, + "black_wool": 1 + }, + "2": { + "gray_dye": 1, + "black_wool": 1 + }, + "3": { + "gray_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_wool": 3, + "stick": 1 + }, + "1": { + "gray_wool": 1 + }, + "2": { + "gray_wool": 1 + }, + "3": { + "gray_wool": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_1_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 3, + "shears": 1 + }, + "2": { + "brown_dye": 1 + }, + "3": { + "brown_dye": 1 + } + }, + "agent_count": 4, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_leather_boots_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_boots", + "conversation": "Let's work together to craft an leather_boots.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + } + }, + "agent_count": 4, + "target": "leather_boots", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_1_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 1, + "shears": 1 + }, + "2": { + "lime_dye": 3 + }, + "3": { + "lime_dye": 1 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_hopper_0_with_plan_missing_chest_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 2 + } + }, + "agent_count": 4, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_lime_banner_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 3, + "black_wool": 3 + }, + "2": { + "lime_dye": 1, + "black_wool": 1 + }, + "3": { + "lime_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_wool": 1, + "stick": 1 + }, + "1": { + "lime_wool": 1 + }, + "2": { + "lime_wool": 1 + }, + "3": { + "lime_wool": 3 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 3, + "redstone": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_wool": 3, + "stick": 1 + }, + "1": { + "brown_wool": 1 + }, + "2": { + "brown_wool": 1 + }, + "3": { + "brown_wool": 1 + } + }, + "agent_count": 4, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_3_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 3, + "shears": 1 + }, + "2": { + "brown_dye": 1 + }, + "3": { + "brown_dye": 1 + } + }, + "agent_count": 4, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_hopper_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "chest": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_3_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 1, + "oak_planks": 2 + }, + "1": { + "gray_dye": 1, + "shears": 1 + }, + "2": { + "gray_dye": 3 + }, + "3": { + "gray_dye": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_polished_blackstone_bricks_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_blackstone_bricks", + "conversation": "Let's work together to craft an polished_blackstone_bricks.", + "initial_inventory": { + "0": { + "polished_blackstone": 1 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + }, + "3": { + "polished_blackstone": 1 + } + }, + "agent_count": 4, + "target": "polished_blackstone_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 1, + "redstone": 1 + }, + "2": { + "gold_ingot": 3 + }, + "3": { + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_exposed_cut_copper_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an waxed_exposed_cut_copper", + "conversation": "Let's work together to craft an waxed_exposed_cut_copper.", + "initial_inventory": { + "0": { + "waxed_exposed_copper": 1 + }, + "1": { + "waxed_exposed_copper": 1 + }, + "2": { + "waxed_exposed_copper": 1 + }, + "3": { + "waxed_exposed_copper": 1 + } + }, + "agent_count": 4, + "target": "waxed_exposed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_andesite_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_andesite", + "conversation": "Let's work together to craft an polished_andesite.", + "initial_inventory": { + "0": { + "andesite": 1 + }, + "1": { + "andesite": 1 + }, + "2": { + "andesite": 1 + }, + "3": { + "andesite": 1 + } + }, + "agent_count": 4, + "target": "polished_andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_0_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 3, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 3, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_2_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 3, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_3_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 3, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_0_with_plan__depth_3_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 3, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan__depth_3_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 3, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_2_with_plan__depth_3_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 3, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_3_with_plan__depth_3_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 3, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_1_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_2_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_3_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan__depth_3_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 3 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_1_with_plan__depth_3_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 3 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_2_with_plan__depth_3_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 3 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_3_with_plan__depth_3_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 3 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_0_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 4, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 2, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 2, + "oak_planks": 2 + } + }, + "agent_count": 4, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_1_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 4, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 2, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 2, + "oak_planks": 2 + } + }, + "agent_count": 4, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_2_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 4, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 2, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 2, + "oak_planks": 2 + } + }, + "agent_count": 4, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_3_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 4, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 2, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 2, + "oak_planks": 2 + } + }, + "agent_count": 4, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/dev_tasks/tasks_4_agents_stats.txt b/tasks/crafting_tasks/dev_tasks/tasks_4_agents_stats.txt new file mode 100644 index 0000000..8e9c523 --- /dev/null +++ b/tasks/crafting_tasks/dev_tasks/tasks_4_agents_stats.txt @@ -0,0 +1,15 @@ +{ + "num_tasks": 129, + "avg_depth": 2.5625, + "std_depth": 1.0879309490955758, + "num_tasks_based_depth": { + "0": 56, + "1": 52, + "2": 12, + "3": 8 + }, + "num_missing_resources": { + "0": 100, + "1": 28 + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/dev_tasks/tasks_5_agents.json b/tasks/crafting_tasks/dev_tasks/tasks_5_agents.json new file mode 100644 index 0000000..7b990e4 --- /dev/null +++ b/tasks/crafting_tasks/dev_tasks/tasks_5_agents.json @@ -0,0 +1,5582 @@ +{ + "multiagent_crafting_brown_banner_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_wool": 1, + "stick": 1 + }, + "1": { + "brown_wool": 1 + }, + "2": { + "brown_wool": 1 + }, + "3": { + "brown_wool": 2 + }, + "4": { + "brown_wool": 1 + } + }, + "agent_count": 5, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 1, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "gray_dye": 2, + "black_wool": 1 + }, + "2": { + "gray_dye": 1, + "black_wool": 1 + }, + "3": { + "gray_dye": 1, + "black_wool": 1 + }, + "4": { + "gray_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 1, + "redstone": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 2 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_2_with_plan_missing_redstone_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 2 + }, + "4": { + "gold_ingot": 1 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_powered_rail_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 1, + "redstone": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 2 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 1, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "gray_dye": 2, + "black_wool": 1 + }, + "2": { + "gray_dye": 1, + "black_wool": 1 + }, + "3": { + "gray_dye": 1, + "black_wool": 1 + }, + "4": { + "gray_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_wool": 1, + "stick": 1 + }, + "1": { + "lime_wool": 1 + }, + "2": { + "lime_wool": 1 + }, + "3": { + "lime_wool": 2 + }, + "4": { + "lime_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "3": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "4": { + "iron_ingot": 1, + "oak_planks": 4 + } + }, + "agent_count": 5, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "chest": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_2_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 1, + "oak_planks": 2 + }, + "1": { + "gray_dye": 1, + "shears": 1 + }, + "2": { + "gray_dye": 1 + }, + "3": { + "gray_dye": 1 + }, + "4": { + "gray_dye": 2 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_powered_rail_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 1, + "redstone": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 2 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "3": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "4": { + "iron_ingot": 1, + "oak_planks": 4 + } + }, + "agent_count": 5, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_horse_armor_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an leather_horse_armor", + "conversation": "Let's work together to craft an leather_horse_armor.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 3 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + }, + "4": { + "leather": 1 + } + }, + "agent_count": 5, + "target": "leather_horse_armor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "chest": 1 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 2 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_ender_chest_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 1, + "ender_eye": 1 + }, + "1": { + "obsidian": 1 + }, + "2": { + "obsidian": 4 + }, + "3": { + "obsidian": 1 + }, + "4": { + "obsidian": 1 + } + }, + "agent_count": 5, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_3_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 2, + "shears": 1 + }, + "2": { + "lime_dye": 1 + }, + "3": { + "lime_dye": 1 + }, + "4": { + "lime_dye": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_hopper_1_with_plan_missing_chest_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_brown_banner_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 2, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 1, + "black_wool": 1 + }, + "2": { + "brown_dye": 1, + "black_wool": 1 + }, + "3": { + "brown_dye": 1, + "black_wool": 1 + }, + "4": { + "brown_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_horse_armor_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an leather_horse_armor", + "conversation": "Let's work together to craft an leather_horse_armor.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 3 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + }, + "4": { + "leather": 1 + } + }, + "agent_count": 5, + "target": "leather_horse_armor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1, + "redstone": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_ender_chest_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 1, + "ender_eye": 1 + }, + "1": { + "obsidian": 1 + }, + "2": { + "obsidian": 4 + }, + "3": { + "obsidian": 1 + }, + "4": { + "obsidian": 1 + } + }, + "agent_count": 5, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 1, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "gray_dye": 2, + "black_wool": 1 + }, + "2": { + "gray_dye": 1, + "black_wool": 1 + }, + "3": { + "gray_dye": 1, + "black_wool": 1 + }, + "4": { + "gray_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_ender_chest_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 1, + "ender_eye": 1 + }, + "1": { + "obsidian": 1 + }, + "2": { + "obsidian": 4 + }, + "3": { + "obsidian": 1 + }, + "4": { + "obsidian": 1 + } + }, + "agent_count": 5, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "3": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "4": { + "iron_ingot": 1, + "oak_planks": 4 + } + }, + "agent_count": 5, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_2_with_plan_missing_chest_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_hopper_minecart_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "chest": 1 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 2 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_0_with_plan_missing_chest_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_lime_banner_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 1, + "black_wool": 1 + }, + "2": { + "lime_dye": 2, + "black_wool": 1 + }, + "3": { + "lime_dye": 1, + "black_wool": 2 + }, + "4": { + "lime_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_horse_armor_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an leather_horse_armor", + "conversation": "Let's work together to craft an leather_horse_armor.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 3 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + }, + "4": { + "leather": 1 + } + }, + "agent_count": 5, + "target": "leather_horse_armor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 1, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "gray_dye": 2, + "black_wool": 1 + }, + "2": { + "gray_dye": 1, + "black_wool": 1 + }, + "3": { + "gray_dye": 1, + "black_wool": 1 + }, + "4": { + "gray_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_2_with_plan_missing_redstone_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 2, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_hopper_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "3": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "4": { + "iron_ingot": 1, + "oak_planks": 4 + } + }, + "agent_count": 5, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_3_with_plan_missing_chest_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_powered_rail_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1, + "redstone": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 1, + "redstone": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 2 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_2_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 2, + "shears": 1 + }, + "2": { + "lime_dye": 1 + }, + "3": { + "lime_dye": 1 + }, + "4": { + "lime_dye": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_ender_chest_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 1, + "ender_eye": 1 + }, + "1": { + "obsidian": 1 + }, + "2": { + "obsidian": 4 + }, + "3": { + "obsidian": 1 + }, + "4": { + "obsidian": 1 + } + }, + "agent_count": 5, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_0_with_plan_missing_chest_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 2 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_lime_banner_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_wool": 1, + "stick": 1 + }, + "1": { + "lime_wool": 1 + }, + "2": { + "lime_wool": 1 + }, + "3": { + "lime_wool": 2 + }, + "4": { + "lime_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 1, + "black_wool": 1 + }, + "2": { + "lime_dye": 2, + "black_wool": 1 + }, + "3": { + "lime_dye": 1, + "black_wool": 2 + }, + "4": { + "lime_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "chest": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_3_with_plan_missing_chest_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 2 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_powered_rail_3_with_plan_missing_redstone_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 2, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_powered_rail_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1, + "redstone": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "chest": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 2, + "shears": 1 + }, + "2": { + "lime_dye": 1 + }, + "3": { + "lime_dye": 1 + }, + "4": { + "lime_dye": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_powered_rail_1_with_plan_missing_redstone_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 2, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_ender_chest_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 1, + "ender_pearl": 1 + }, + "1": { + "obsidian": 1, + "blaze_powder": 1 + }, + "2": { + "obsidian": 4 + }, + "3": { + "obsidian": 1 + }, + "4": { + "obsidian": 1 + } + }, + "agent_count": 5, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_wool": 1, + "stick": 1 + }, + "1": { + "lime_wool": 1 + }, + "2": { + "lime_wool": 1 + }, + "3": { + "lime_wool": 2 + }, + "4": { + "lime_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_0_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 1, + "oak_planks": 2 + }, + "1": { + "gray_dye": 1, + "shears": 1 + }, + "2": { + "gray_dye": 1 + }, + "3": { + "gray_dye": 1 + }, + "4": { + "gray_dye": 2 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_banner_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_wool": 1, + "stick": 1 + }, + "1": { + "lime_wool": 1 + }, + "2": { + "lime_wool": 1 + }, + "3": { + "lime_wool": 2 + }, + "4": { + "lime_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_4_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 1, + "oak_planks": 2 + }, + "1": { + "gray_dye": 1, + "shears": 1 + }, + "2": { + "gray_dye": 1 + }, + "3": { + "gray_dye": 1 + }, + "4": { + "gray_dye": 2 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_ender_chest_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 1, + "ender_eye": 1 + }, + "1": { + "obsidian": 1 + }, + "2": { + "obsidian": 4 + }, + "3": { + "obsidian": 1 + }, + "4": { + "obsidian": 1 + } + }, + "agent_count": 5, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 2, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 1, + "black_wool": 1 + }, + "2": { + "brown_dye": 1, + "black_wool": 1 + }, + "3": { + "brown_dye": 1, + "black_wool": 1 + }, + "4": { + "brown_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "chest": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_4_with_plan_missing_redstone_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 2 + }, + "4": { + "gold_ingot": 1 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_gray_banner_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_wool": 1, + "stick": 1 + }, + "1": { + "gray_wool": 1 + }, + "2": { + "gray_wool": 1 + }, + "3": { + "gray_wool": 1 + }, + "4": { + "gray_wool": 2 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 1, + "oak_planks": 2 + }, + "1": { + "gray_dye": 1, + "shears": 1 + }, + "2": { + "gray_dye": 1 + }, + "3": { + "gray_dye": 1 + }, + "4": { + "gray_dye": 2 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_powered_rail_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 1, + "redstone": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 2 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1, + "redstone": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_wool": 1, + "stick": 1 + }, + "1": { + "brown_wool": 1 + }, + "2": { + "brown_wool": 1 + }, + "3": { + "brown_wool": 2 + }, + "4": { + "brown_wool": 1 + } + }, + "agent_count": 5, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_0_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 1, + "shears": 1 + }, + "2": { + "brown_dye": 1 + }, + "3": { + "brown_dye": 1 + }, + "4": { + "brown_dye": 2 + } + }, + "agent_count": 5, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_banner_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_wool": 1, + "stick": 1 + }, + "1": { + "gray_wool": 1 + }, + "2": { + "gray_wool": 1 + }, + "3": { + "gray_wool": 1 + }, + "4": { + "gray_wool": 2 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_1_with_plan_missing_chest_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 2 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_lime_banner_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_wool": 1, + "stick": 1 + }, + "1": { + "lime_wool": 1 + }, + "2": { + "lime_wool": 1 + }, + "3": { + "lime_wool": 2 + }, + "4": { + "lime_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_1_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 2, + "shears": 1 + }, + "2": { + "lime_dye": 1 + }, + "3": { + "lime_dye": 1 + }, + "4": { + "lime_dye": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_hopper_4_with_plan_missing_chest_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_powered_rail_1_with_plan_missing_redstone_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 2 + }, + "4": { + "gold_ingot": 1 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_brown_banner_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_wool": 1, + "stick": 1 + }, + "1": { + "brown_wool": 1 + }, + "2": { + "brown_wool": 1 + }, + "3": { + "brown_wool": 2 + }, + "4": { + "brown_wool": 1 + } + }, + "agent_count": 5, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_ender_chest_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 1, + "ender_pearl": 1 + }, + "1": { + "obsidian": 1, + "blaze_powder": 1 + }, + "2": { + "obsidian": 4 + }, + "3": { + "obsidian": 1 + }, + "4": { + "obsidian": 1 + } + }, + "agent_count": 5, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_wool": 1, + "stick": 1 + }, + "1": { + "brown_wool": 1 + }, + "2": { + "brown_wool": 1 + }, + "3": { + "brown_wool": 2 + }, + "4": { + "brown_wool": 1 + } + }, + "agent_count": 5, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "chest": 1 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 2 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_wool": 1, + "stick": 1 + }, + "1": { + "gray_wool": 1 + }, + "2": { + "gray_wool": 1 + }, + "3": { + "gray_wool": 1 + }, + "4": { + "gray_wool": 2 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_4_with_plan_missing_chest_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 2 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_brown_banner_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_wool": 1, + "stick": 1 + }, + "1": { + "brown_wool": 1 + }, + "2": { + "brown_wool": 1 + }, + "3": { + "brown_wool": 2 + }, + "4": { + "brown_wool": 1 + } + }, + "agent_count": 5, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_2_with_plan_missing_chest_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 2 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_gray_banner_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_wool": 1, + "stick": 1 + }, + "1": { + "gray_wool": 1 + }, + "2": { + "gray_wool": 1 + }, + "3": { + "gray_wool": 1 + }, + "4": { + "gray_wool": 2 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_1_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 1, + "shears": 1 + }, + "2": { + "brown_dye": 1 + }, + "3": { + "brown_dye": 1 + }, + "4": { + "brown_dye": 2 + } + }, + "agent_count": 5, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_leather_horse_armor_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an leather_horse_armor", + "conversation": "Let's work together to craft an leather_horse_armor.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 3 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + }, + "4": { + "leather": 1 + } + }, + "agent_count": 5, + "target": "leather_horse_armor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 1, + "black_wool": 1 + }, + "2": { + "lime_dye": 2, + "black_wool": 1 + }, + "3": { + "lime_dye": 1, + "black_wool": 2 + }, + "4": { + "lime_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_wool": 1, + "stick": 1 + }, + "1": { + "gray_wool": 1 + }, + "2": { + "gray_wool": 1 + }, + "3": { + "gray_wool": 1 + }, + "4": { + "gray_wool": 2 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_4_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 1, + "shears": 1 + }, + "2": { + "brown_dye": 1 + }, + "3": { + "brown_dye": 1 + }, + "4": { + "brown_dye": 2 + } + }, + "agent_count": 5, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_hopper_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "chest": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_3_with_plan_missing_redstone_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 2 + }, + "4": { + "gold_ingot": 1 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_powered_rail_0_with_plan_missing_redstone_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 2, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_ender_chest_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 1, + "ender_pearl": 1 + }, + "1": { + "obsidian": 1, + "blaze_powder": 1 + }, + "2": { + "obsidian": 4 + }, + "3": { + "obsidian": 1 + }, + "4": { + "obsidian": 1 + } + }, + "agent_count": 5, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_horse_armor_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an leather_horse_armor", + "conversation": "Let's work together to craft an leather_horse_armor.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 3 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + }, + "4": { + "leather": 1 + } + }, + "agent_count": 5, + "target": "leather_horse_armor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_4_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 2, + "shears": 1 + }, + "2": { + "lime_dye": 1 + }, + "3": { + "lime_dye": 1 + }, + "4": { + "lime_dye": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_powered_rail_4_with_plan_missing_redstone_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 2, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_brown_banner_2_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 1, + "shears": 1 + }, + "2": { + "brown_dye": 1 + }, + "3": { + "brown_dye": 1 + }, + "4": { + "brown_dye": 2 + } + }, + "agent_count": 5, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_brown_banner_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 2, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 1, + "black_wool": 1 + }, + "2": { + "brown_dye": 1, + "black_wool": 1 + }, + "3": { + "brown_dye": 1, + "black_wool": 1 + }, + "4": { + "brown_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_3_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 1, + "oak_planks": 2 + }, + "1": { + "gray_dye": 1, + "shears": 1 + }, + "2": { + "gray_dye": 1 + }, + "3": { + "gray_dye": 1 + }, + "4": { + "gray_dye": 2 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_banner_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 1, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "gray_dye": 2, + "black_wool": 1 + }, + "2": { + "gray_dye": 1, + "black_wool": 1 + }, + "3": { + "gray_dye": 1, + "black_wool": 1 + }, + "4": { + "gray_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 1, + "black_wool": 1 + }, + "2": { + "lime_dye": 2, + "black_wool": 1 + }, + "3": { + "lime_dye": 1, + "black_wool": 2 + }, + "4": { + "lime_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "chest": 1 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 2 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 2, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 1, + "black_wool": 1 + }, + "2": { + "brown_dye": 1, + "black_wool": 1 + }, + "3": { + "brown_dye": 1, + "black_wool": 1 + }, + "4": { + "brown_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "chest": 1 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 2 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_ender_chest_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 1, + "ender_pearl": 1 + }, + "1": { + "obsidian": 1, + "blaze_powder": 1 + }, + "2": { + "obsidian": 4 + }, + "3": { + "obsidian": 1 + }, + "4": { + "obsidian": 1 + } + }, + "agent_count": 5, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_3_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 1, + "shears": 1 + }, + "2": { + "brown_dye": 1 + }, + "3": { + "brown_dye": 1 + }, + "4": { + "brown_dye": 2 + } + }, + "agent_count": 5, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_powered_rail_0_with_plan_missing_redstone_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 2 + }, + "4": { + "gold_ingot": 1 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_ender_chest_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 1, + "ender_pearl": 1 + }, + "1": { + "obsidian": 1, + "blaze_powder": 1 + }, + "2": { + "obsidian": 4 + }, + "3": { + "obsidian": 1 + }, + "4": { + "obsidian": 1 + } + }, + "agent_count": 5, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 2, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 1, + "black_wool": 1 + }, + "2": { + "brown_dye": 1, + "black_wool": 1 + }, + "3": { + "brown_dye": 1, + "black_wool": 1 + }, + "4": { + "brown_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "3": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "4": { + "iron_ingot": 1, + "oak_planks": 4 + } + }, + "agent_count": 5, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1, + "redstone": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 1, + "black_wool": 1 + }, + "2": { + "lime_dye": 2, + "black_wool": 1 + }, + "3": { + "lime_dye": 1, + "black_wool": 2 + }, + "4": { + "lime_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_0_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_2_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_3_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_4_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_0_with_plan__depth_3_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 2, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan__depth_3_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 2, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_2_with_plan__depth_3_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 2, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_3_with_plan__depth_3_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 2, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_4_with_plan__depth_3_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 2, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 2, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_1_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 2, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_2_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 2, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_3_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 2, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_4_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 2, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan__depth_3_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 2, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_1_with_plan__depth_3_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 2, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_2_with_plan__depth_3_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 2, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_3_with_plan__depth_3_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 2, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_4_with_plan__depth_3_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 2, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_0_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 2, + "oak_planks": 1 + }, + "2": { + "iron_ingot": 2, + "oak_planks": 1 + }, + "3": { + "iron_ingot": 2, + "oak_planks": 4 + }, + "4": { + "iron_ingot": 2, + "oak_planks": 1 + } + }, + "agent_count": 5, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_1_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 2, + "oak_planks": 1 + }, + "2": { + "iron_ingot": 2, + "oak_planks": 1 + }, + "3": { + "iron_ingot": 2, + "oak_planks": 4 + }, + "4": { + "iron_ingot": 2, + "oak_planks": 1 + } + }, + "agent_count": 5, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_2_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 2, + "oak_planks": 1 + }, + "2": { + "iron_ingot": 2, + "oak_planks": 1 + }, + "3": { + "iron_ingot": 2, + "oak_planks": 4 + }, + "4": { + "iron_ingot": 2, + "oak_planks": 1 + } + }, + "agent_count": 5, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_3_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 2, + "oak_planks": 1 + }, + "2": { + "iron_ingot": 2, + "oak_planks": 1 + }, + "3": { + "iron_ingot": 2, + "oak_planks": 4 + }, + "4": { + "iron_ingot": 2, + "oak_planks": 1 + } + }, + "agent_count": 5, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_4_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 2, + "oak_planks": 1 + }, + "2": { + "iron_ingot": 2, + "oak_planks": 1 + }, + "3": { + "iron_ingot": 2, + "oak_planks": 4 + }, + "4": { + "iron_ingot": 2, + "oak_planks": 1 + } + }, + "agent_count": 5, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/dev_tasks/tasks_5_agents_stats.txt b/tasks/crafting_tasks/dev_tasks/tasks_5_agents_stats.txt new file mode 100644 index 0000000..4ed5ccf --- /dev/null +++ b/tasks/crafting_tasks/dev_tasks/tasks_5_agents_stats.txt @@ -0,0 +1,15 @@ +{ + "num_tasks": 131, + "avg_depth": 2.8461538461538463, + "std_depth": 0.9880948137434719, + "num_tasks_based_depth": { + "0": 45, + "1": 60, + "2": 15, + "3": 10 + }, + "num_missing_resources": { + "0": 95, + "1": 35 + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/test_tasks/tasks_2_agents.json b/tasks/crafting_tasks/test_tasks/tasks_2_agents.json new file mode 100644 index 0000000..69eb4b6 --- /dev/null +++ b/tasks/crafting_tasks/test_tasks/tasks_2_agents.json @@ -0,0 +1,5516 @@ +{ + "multiagent_crafting_leather_leggings_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an leather_leggings", + "conversation": "Let's work together to craft an leather_leggings.", + "initial_inventory": { + "0": { + "leather": 3 + }, + "1": { + "leather": 4 + } + }, + "agent_count": 2, + "target": "leather_leggings", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_dye": 3, + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_smoker_0_with_plan_missing_furnace_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an smoker", + "conversation": "Let's work together to craft an smoker.", + "initial_inventory": { + "0": { + "dark_oak_log": 2 + }, + "1": { + "dark_oak_log": 2 + } + }, + "agent_count": 2, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "furnace" + ] + }, + "multiagent_crafting_cyan_wool_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_wool", + "conversation": "Let's work together to craft an cyan_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "shears": 1 + }, + "1": { + "green_dye": 1 + } + }, + "agent_count": 2, + "target": "cyan_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_spectral_arrow_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an spectral_arrow", + "conversation": "Let's work together to craft an spectral_arrow.", + "initial_inventory": { + "0": { + "glowstone_dust": 2, + "arrow": 1 + }, + "1": { + "glowstone_dust": 2 + } + }, + "agent_count": 2, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_granite_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_granite", + "conversation": "Let's work together to craft an polished_granite.", + "initial_inventory": { + "0": { + "diorite": 2, + "quartz": 2 + }, + "1": { + "diorite": 2, + "quartz": 2 + } + }, + "agent_count": 2, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_granite_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an granite", + "conversation": "Let's work together to craft an granite.", + "initial_inventory": { + "0": { + "diorite": 1 + }, + "1": { + "quartz": 1 + } + }, + "agent_count": 2, + "target": "granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_wool_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_wool", + "conversation": "Let's work together to craft an cyan_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "shears": 1 + }, + "1": { + "green_dye": 1 + } + }, + "agent_count": 2, + "target": "cyan_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_pink_wool_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an pink_wool", + "conversation": "Let's work together to craft an pink_wool.", + "initial_inventory": { + "0": { + "pink_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "pink_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_dye": 3, + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chest_minecart_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an chest_minecart", + "conversation": "Let's work together to craft an chest_minecart.", + "initial_inventory": { + "0": { + "chest": 1 + }, + "1": { + "minecart": 1 + } + }, + "agent_count": 2, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "pink_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_pink_banner_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_wool": 3, + "stick": 1 + }, + "1": { + "pink_wool": 3 + } + }, + "agent_count": 2, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brush_0_with_plan_missing_copper_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an brush", + "conversation": "Let's work together to craft an brush.", + "initial_inventory": { + "0": { + "feather": 1, + "oak_planks": 1 + }, + "1": { + "oak_planks": 1, + "iron_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "brush", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "copper_ingot" + ] + }, + "multiagent_crafting_light_gray_wool_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an light_gray_wool", + "conversation": "Let's work together to craft an light_gray_wool.", + "initial_inventory": { + "0": { + "light_gray_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "light_gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "black_dye": 1, + "black_wool": 1 + }, + "1": { + "white_dye": 1 + } + }, + "agent_count": 2, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_wool_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an brown_wool", + "conversation": "Let's work together to craft an brown_wool.", + "initial_inventory": { + "0": { + "brown_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "brown_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "black_dye": 1, + "shears": 1 + }, + "1": { + "white_dye": 1 + } + }, + "agent_count": 2, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_bookshelf_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an bookshelf", + "conversation": "Let's work together to craft an bookshelf.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "book": 1 + }, + "1": { + "oak_planks": 3, + "book": 2 + } + }, + "agent_count": 2, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 3, + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "red_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_campfire_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an soul_campfire", + "conversation": "Let's work together to craft an soul_campfire.", + "initial_inventory": { + "0": { + "stick": 1, + "soul_sand": 1, + "dark_oak_log": 2 + }, + "1": { + "stick": 2, + "dark_oak_log": 1 + } + }, + "agent_count": 2, + "target": "soul_campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "black_dye": 1, + "black_wool": 1 + }, + "1": { + "white_dye": 1 + } + }, + "agent_count": 2, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_wool_1_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an light_gray_wool", + "conversation": "Let's work together to craft an light_gray_wool.", + "initial_inventory": { + "0": { + "light_gray_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "light_gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_pink_banner_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 3, + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "pink_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_wool_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_wool", + "conversation": "Let's work together to craft an cyan_wool.", + "initial_inventory": { + "0": { + "cyan_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "cyan_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_bed_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_bed", + "conversation": "Let's work together to craft an cyan_bed.", + "initial_inventory": { + "0": { + "cyan_dye": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "cyan_dye": 2, + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_wool_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_wool", + "conversation": "Let's work together to craft an cyan_wool.", + "initial_inventory": { + "0": { + "cyan_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "cyan_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_bed_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an magenta_bed", + "conversation": "Let's work together to craft an magenta_bed.", + "initial_inventory": { + "0": { + "allium": 1, + "oak_planks": 2 + }, + "1": { + "oak_planks": 1, + "shears": 1 + } + }, + "agent_count": 2, + "target": "magenta_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_yellow_wool_1_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an yellow_wool", + "conversation": "Let's work together to craft an yellow_wool.", + "initial_inventory": { + "0": { + "yellow_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "yellow_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_wool_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "black_dye": 1, + "shears": 1 + }, + "1": { + "white_dye": 1 + } + }, + "agent_count": 2, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_wool_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "gray_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 3, + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "pink_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_dye_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_dye", + "conversation": "Let's work together to craft an purple_dye.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "red_dye": 1 + } + }, + "agent_count": 2, + "target": "purple_dye", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "cyan_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_banner_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_wool": 3, + "stick": 1 + }, + "1": { + "cyan_wool": 3 + } + }, + "agent_count": 2, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brush_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an brush", + "conversation": "Let's work together to craft an brush.", + "initial_inventory": { + "0": { + "feather": 1, + "oak_planks": 1 + }, + "1": { + "copper_ingot": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "brush", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_carrot_on_a_stick_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an carrot_on_a_stick", + "conversation": "Let's work together to craft an carrot_on_a_stick.", + "initial_inventory": { + "0": { + "fishing_rod": 1 + }, + "1": { + "carrot": 1 + } + }, + "agent_count": 2, + "target": "carrot_on_a_stick", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_painting_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an painting", + "conversation": "Let's work together to craft an painting.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "white_dye": 1 + }, + "1": { + "oak_planks": 2, + "shears": 1 + } + }, + "agent_count": 2, + "target": "painting", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_bed_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_bed", + "conversation": "Let's work together to craft an cyan_bed.", + "initial_inventory": { + "0": { + "cyan_wool": 2, + "oak_planks": 1 + }, + "1": { + "cyan_wool": 1, + "oak_planks": 2 + } + }, + "agent_count": 2, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_campfire_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an soul_campfire", + "conversation": "Let's work together to craft an soul_campfire.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "soul_sand": 1, + "dark_oak_log": 1 + }, + "1": { + "oak_planks": 1, + "dark_oak_log": 2 + } + }, + "agent_count": 2, + "target": "soul_campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_wool_0_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_wool", + "conversation": "Let's work together to craft an red_wool.", + "initial_inventory": { + "0": { + "red_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "red_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_red_banner_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "red_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_quartz_bricks_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an quartz_bricks", + "conversation": "Let's work together to craft an quartz_bricks.", + "initial_inventory": { + "0": { + "quartz_block": 2 + }, + "1": { + "quartz_block": 2 + } + }, + "agent_count": 2, + "target": "quartz_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chest_minecart_1_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an chest_minecart", + "conversation": "Let's work together to craft an chest_minecart.", + "initial_inventory": { + "0": { + "oak_planks": 4, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 4, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_pink_wool_0_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an pink_wool", + "conversation": "Let's work together to craft an pink_wool.", + "initial_inventory": { + "0": { + "pink_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "pink_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_bed_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_bed", + "conversation": "Let's work together to craft an cyan_bed.", + "initial_inventory": { + "0": { + "cyan_dye": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "cyan_dye": 2, + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_granite_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_granite", + "conversation": "Let's work together to craft an polished_granite.", + "initial_inventory": { + "0": { + "granite": 2 + }, + "1": { + "granite": 2 + } + }, + "agent_count": 2, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an black_banner", + "conversation": "Let's work together to craft an black_banner.", + "initial_inventory": { + "0": { + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_carrot_on_a_stick_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an carrot_on_a_stick", + "conversation": "Let's work together to craft an carrot_on_a_stick.", + "initial_inventory": { + "0": { + "fishing_rod": 1 + }, + "1": { + "carrot": 1 + } + }, + "agent_count": 2, + "target": "carrot_on_a_stick", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_golden_shovel_1_with_plan_missing_gold_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an golden_shovel", + "conversation": "Let's work together to craft an golden_shovel.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "iron_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "golden_shovel", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_white_banner_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_wool": 3, + "stick": 1 + }, + "1": { + "white_wool": 3 + } + }, + "agent_count": 2, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_dye": 3, + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "cyan_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_dye_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_dye", + "conversation": "Let's work together to craft an purple_dye.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "red_dye": 1 + } + }, + "agent_count": 2, + "target": "purple_dye", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_planks": 4, + "book": 2 + }, + "1": { + "oak_planks": 5, + "book": 1 + } + }, + "agent_count": 2, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_wool_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an light_gray_wool", + "conversation": "Let's work together to craft an light_gray_wool.", + "initial_inventory": { + "0": { + "light_gray_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "light_gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_1_with_plan_missing_glass_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "green_dye": 1 + } + }, + "agent_count": 2, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "glass" + ] + }, + "multiagent_crafting_yellow_wool_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an yellow_wool", + "conversation": "Let's work together to craft an yellow_wool.", + "initial_inventory": { + "0": { + "yellow_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "yellow_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_bed_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_bed", + "conversation": "Let's work together to craft an cyan_bed.", + "initial_inventory": { + "0": { + "cyan_dye": 2, + "oak_log": 1 + }, + "1": { + "cyan_dye": 1, + "shears": 1 + } + }, + "agent_count": 2, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_tnt_minecart_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an tnt_minecart", + "conversation": "Let's work together to craft an tnt_minecart.", + "initial_inventory": { + "0": { + "tnt": 1 + }, + "1": { + "minecart": 1 + } + }, + "agent_count": 2, + "target": "tnt_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_painting_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an painting", + "conversation": "Let's work together to craft an painting.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "white_dye": 1 + }, + "1": { + "oak_planks": 2, + "shears": 1 + } + }, + "agent_count": 2, + "target": "painting", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_magenta_bed_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an magenta_bed", + "conversation": "Let's work together to craft an magenta_bed.", + "initial_inventory": { + "0": { + "magenta_dye": 1 + }, + "1": { + "black_bed": 1 + } + }, + "agent_count": 2, + "target": "magenta_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an spectral_arrow", + "conversation": "Let's work together to craft an spectral_arrow.", + "initial_inventory": { + "0": { + "glowstone_dust": 2, + "flint": 1, + "feather": 1 + }, + "1": { + "glowstone_dust": 2, + "stick": 1 + } + }, + "agent_count": 2, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_wool_0_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_wool", + "conversation": "Let's work together to craft an cyan_wool.", + "initial_inventory": { + "0": { + "cyan_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "cyan_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_soul_campfire_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an soul_campfire", + "conversation": "Let's work together to craft an soul_campfire.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "soul_sand": 1, + "dark_oak_log": 1 + }, + "1": { + "oak_planks": 1, + "dark_oak_log": 2 + } + }, + "agent_count": 2, + "target": "soul_campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_wool_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an pink_wool", + "conversation": "Let's work together to craft an pink_wool.", + "initial_inventory": { + "0": { + "pink_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "pink_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_warped_fungus_on_a_stick_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an warped_fungus_on_a_stick", + "conversation": "Let's work together to craft an warped_fungus_on_a_stick.", + "initial_inventory": { + "0": { + "stick": 1, + "string": 1, + "warped_fungus": 1 + }, + "1": { + "stick": 2, + "string": 1 + } + }, + "agent_count": 2, + "target": "warped_fungus_on_a_stick", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_dye_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_dye", + "conversation": "Let's work together to craft an gray_dye.", + "initial_inventory": { + "0": { + "black_dye": 1 + }, + "1": { + "white_dye": 1 + } + }, + "agent_count": 2, + "target": "gray_dye", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_bed_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an magenta_bed", + "conversation": "Let's work together to craft an magenta_bed.", + "initial_inventory": { + "0": { + "allium": 1, + "black_wool": 1, + "oak_planks": 1 + }, + "1": { + "black_wool": 2, + "oak_planks": 2 + } + }, + "agent_count": 2, + "target": "magenta_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_barrel_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an barrel", + "conversation": "Let's work together to craft an barrel.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "oak_slab": 1 + }, + "1": { + "oak_planks": 3, + "oak_slab": 1 + } + }, + "agent_count": 2, + "target": "barrel", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "pink_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_magenta_bed_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an magenta_bed", + "conversation": "Let's work together to craft an magenta_bed.", + "initial_inventory": { + "0": { + "magenta_dye": 1 + }, + "1": { + "black_bed": 1 + } + }, + "agent_count": 2, + "target": "magenta_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_dye_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_dye", + "conversation": "Let's work together to craft an gray_dye.", + "initial_inventory": { + "0": { + "ink_sac": 1 + }, + "1": { + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "gray_dye", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cut_red_sandstone_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cut_red_sandstone", + "conversation": "Let's work together to craft an cut_red_sandstone.", + "initial_inventory": { + "0": { + "red_sandstone": 2 + }, + "1": { + "red_sandstone": 2 + } + }, + "agent_count": 2, + "target": "cut_red_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "glass": 4, + "blue_dye": 1 + }, + "1": { + "glass": 4, + "green_dye": 1 + } + }, + "agent_count": 2, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an spectral_arrow", + "conversation": "Let's work together to craft an spectral_arrow.", + "initial_inventory": { + "0": { + "glowstone_dust": 2, + "arrow": 1 + }, + "1": { + "glowstone_dust": 2 + } + }, + "agent_count": 2, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "white_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_black_banner_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an black_banner", + "conversation": "Let's work together to craft an black_banner.", + "initial_inventory": { + "0": { + "black_wool": 3, + "stick": 1 + }, + "1": { + "black_wool": 3 + } + }, + "agent_count": 2, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brush_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an brush", + "conversation": "Let's work together to craft an brush.", + "initial_inventory": { + "0": { + "feather": 1, + "oak_planks": 1 + }, + "1": { + "copper_ingot": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "brush", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_0_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "gray_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_stained_glass_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "glass": 4, + "blue_dye": 1 + }, + "1": { + "glass": 4, + "green_dye": 1 + } + }, + "agent_count": 2, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_golden_shovel_0_with_plan_missing_gold_ingot_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an golden_shovel", + "conversation": "Let's work together to craft an golden_shovel.", + "initial_inventory": { + "0": { + "stick": 1, + "iron_pickaxe": 1 + }, + "1": { + "stick": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "golden_shovel", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_cyan_wool_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_wool", + "conversation": "Let's work together to craft an cyan_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "black_wool": 1 + }, + "1": { + "green_dye": 1 + } + }, + "agent_count": 2, + "target": "cyan_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brush_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an brush", + "conversation": "Let's work together to craft an brush.", + "initial_inventory": { + "0": { + "feather": 1, + "stick": 1 + }, + "1": { + "copper_ingot": 1 + } + }, + "agent_count": 2, + "target": "brush", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an black_banner", + "conversation": "Let's work together to craft an black_banner.", + "initial_inventory": { + "0": { + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bookshelf_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an bookshelf", + "conversation": "Let's work together to craft an bookshelf.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "book": 1 + }, + "1": { + "oak_planks": 3, + "book": 2 + } + }, + "agent_count": 2, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_polished_blackstone_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_polished_blackstone", + "conversation": "Let's work together to craft an chiseled_polished_blackstone.", + "initial_inventory": { + "0": { + "polished_blackstone": 1 + }, + "1": { + "polished_blackstone": 2 + } + }, + "agent_count": 2, + "target": "chiseled_polished_blackstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_smoker_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an smoker", + "conversation": "Let's work together to craft an smoker.", + "initial_inventory": { + "0": { + "dark_oak_log": 2, + "furnace": 1 + }, + "1": { + "dark_oak_log": 2 + } + }, + "agent_count": 2, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brush_1_with_plan_missing_copper_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an brush", + "conversation": "Let's work together to craft an brush.", + "initial_inventory": { + "0": { + "feather": 1, + "oak_planks": 1 + }, + "1": { + "oak_planks": 1, + "iron_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "brush", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "copper_ingot" + ] + }, + "multiagent_crafting_cyan_bed_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_bed", + "conversation": "Let's work together to craft an cyan_bed.", + "initial_inventory": { + "0": { + "cyan_wool": 2, + "oak_planks": 1 + }, + "1": { + "cyan_wool": 1, + "oak_planks": 2 + } + }, + "agent_count": 2, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_polished_blackstone_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_polished_blackstone", + "conversation": "Let's work together to craft an chiseled_polished_blackstone.", + "initial_inventory": { + "0": { + "polished_blackstone": 1 + }, + "1": { + "polished_blackstone": 2 + } + }, + "agent_count": 2, + "target": "chiseled_polished_blackstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_wool_0_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an brown_wool", + "conversation": "Let's work together to craft an brown_wool.", + "initial_inventory": { + "0": { + "brown_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "brown_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_spectral_arrow_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an spectral_arrow", + "conversation": "Let's work together to craft an spectral_arrow.", + "initial_inventory": { + "0": { + "glowstone_dust": 2, + "flint": 1, + "feather": 1 + }, + "1": { + "glowstone_dust": 2, + "stick": 1 + } + }, + "agent_count": 2, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_campfire_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an soul_campfire", + "conversation": "Let's work together to craft an soul_campfire.", + "initial_inventory": { + "0": { + "stick": 1, + "soul_sand": 1, + "dark_oak_log": 2 + }, + "1": { + "stick": 2, + "dark_oak_log": 1 + } + }, + "agent_count": 2, + "target": "soul_campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_painting_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an painting", + "conversation": "Let's work together to craft an painting.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "white_dye": 1 + }, + "1": { + "oak_planks": 2, + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "painting", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_granite_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an granite", + "conversation": "Let's work together to craft an granite.", + "initial_inventory": { + "0": { + "diorite": 1 + }, + "1": { + "quartz": 1 + } + }, + "agent_count": 2, + "target": "granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_wool_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_wool", + "conversation": "Let's work together to craft an purple_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "shears": 1 + }, + "1": { + "red_dye": 1 + } + }, + "agent_count": 2, + "target": "purple_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_red_carpet_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_carpet", + "conversation": "Let's work together to craft an red_carpet.", + "initial_inventory": { + "0": { + "red_dye": 1 + }, + "1": { + "black_carpet": 1 + } + }, + "agent_count": 2, + "target": "red_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "cyan_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_warped_fungus_on_a_stick_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an warped_fungus_on_a_stick", + "conversation": "Let's work together to craft an warped_fungus_on_a_stick.", + "initial_inventory": { + "0": { + "fishing_rod": 1 + }, + "1": { + "warped_fungus": 1 + } + }, + "agent_count": 2, + "target": "warped_fungus_on_a_stick", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chest_minecart_0_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an chest_minecart", + "conversation": "Let's work together to craft an chest_minecart.", + "initial_inventory": { + "0": { + "oak_planks": 4, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 4, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_red_wool_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_wool", + "conversation": "Let's work together to craft an red_wool.", + "initial_inventory": { + "0": { + "red_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "red_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_0_with_plan_missing_glass_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "green_dye": 1 + } + }, + "agent_count": 2, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "glass" + ] + }, + "multiagent_crafting_golden_shovel_1_with_plan_missing_gold_ingot_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an golden_shovel", + "conversation": "Let's work together to craft an golden_shovel.", + "initial_inventory": { + "0": { + "stick": 1, + "iron_pickaxe": 1 + }, + "1": { + "stick": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "golden_shovel", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_gray_dye_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_dye", + "conversation": "Let's work together to craft an gray_dye.", + "initial_inventory": { + "0": { + "ink_sac": 1 + }, + "1": { + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "gray_dye", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "glass": 4, + "cyan_dye": 1 + }, + "1": { + "glass": 4 + } + }, + "agent_count": 2, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_bed_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an magenta_bed", + "conversation": "Let's work together to craft an magenta_bed.", + "initial_inventory": { + "0": { + "allium": 1, + "black_wool": 1, + "oak_planks": 1 + }, + "1": { + "black_wool": 2, + "oak_planks": 2 + } + }, + "agent_count": 2, + "target": "magenta_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dark_prismarine_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an dark_prismarine", + "conversation": "Let's work together to craft an dark_prismarine.", + "initial_inventory": { + "0": { + "prismarine_shard": 4, + "black_dye": 1 + }, + "1": { + "prismarine_shard": 4 + } + }, + "agent_count": 2, + "target": "dark_prismarine", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_carrot_on_a_stick_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an carrot_on_a_stick", + "conversation": "Let's work together to craft an carrot_on_a_stick.", + "initial_inventory": { + "0": { + "stick": 1, + "string": 1, + "carrot": 1 + }, + "1": { + "stick": 2, + "string": 1 + } + }, + "agent_count": 2, + "target": "carrot_on_a_stick", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chest_minecart_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an chest_minecart", + "conversation": "Let's work together to craft an chest_minecart.", + "initial_inventory": { + "0": { + "chest": 1 + }, + "1": { + "minecart": 1 + } + }, + "agent_count": 2, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 3, + "oak_planks": 1 + }, + "1": { + "blue_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "gray_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_granite_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_granite", + "conversation": "Let's work together to craft an polished_granite.", + "initial_inventory": { + "0": { + "diorite": 2, + "quartz": 2 + }, + "1": { + "diorite": 2, + "quartz": 2 + } + }, + "agent_count": 2, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cartography_table_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cartography_table", + "conversation": "Let's work together to craft an cartography_table.", + "initial_inventory": { + "0": { + "paper": 1, + "oak_planks": 2 + }, + "1": { + "paper": 1, + "oak_planks": 2 + } + }, + "agent_count": 2, + "target": "cartography_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_warped_fungus_on_a_stick_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an warped_fungus_on_a_stick", + "conversation": "Let's work together to craft an warped_fungus_on_a_stick.", + "initial_inventory": { + "0": { + "stick": 1, + "string": 1, + "warped_fungus": 1 + }, + "1": { + "stick": 2, + "string": 1 + } + }, + "agent_count": 2, + "target": "warped_fungus_on_a_stick", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_tnt_minecart_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an tnt_minecart", + "conversation": "Let's work together to craft an tnt_minecart.", + "initial_inventory": { + "0": { + "tnt": 1 + }, + "1": { + "minecart": 1 + } + }, + "agent_count": 2, + "target": "tnt_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 3, + "oak_planks": 1 + }, + "1": { + "blue_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_quartz_bricks_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an quartz_bricks", + "conversation": "Let's work together to craft an quartz_bricks.", + "initial_inventory": { + "0": { + "quartz_block": 2 + }, + "1": { + "quartz_block": 2 + } + }, + "agent_count": 2, + "target": "quartz_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_wool_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_wool", + "conversation": "Let's work together to craft an cyan_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "black_wool": 1 + }, + "1": { + "green_dye": 1 + } + }, + "agent_count": 2, + "target": "cyan_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_wool": 3, + "stick": 1 + }, + "1": { + "red_wool": 3 + } + }, + "agent_count": 2, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_dye": 3, + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "cyan_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brush_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an brush", + "conversation": "Let's work together to craft an brush.", + "initial_inventory": { + "0": { + "feather": 1, + "stick": 1 + }, + "1": { + "copper_ingot": 1 + } + }, + "agent_count": 2, + "target": "brush", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "white_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_stained_glass_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "glass": 4, + "cyan_dye": 1 + }, + "1": { + "glass": 4 + } + }, + "agent_count": 2, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_bed_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_bed", + "conversation": "Let's work together to craft an cyan_bed.", + "initial_inventory": { + "0": { + "cyan_dye": 2, + "oak_log": 1 + }, + "1": { + "cyan_dye": 1, + "shears": 1 + } + }, + "agent_count": 2, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_banner_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_wool": 3, + "stick": 1 + }, + "1": { + "cyan_wool": 3 + } + }, + "agent_count": 2, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "red_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_dye_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_dye", + "conversation": "Let's work together to craft an cyan_dye.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "green_dye": 1 + } + }, + "agent_count": 2, + "target": "cyan_dye", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bookshelf_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an bookshelf", + "conversation": "Let's work together to craft an bookshelf.", + "initial_inventory": { + "0": { + "oak_log": 1, + "paper": 5, + "leather": 1 + }, + "1": { + "oak_log": 1, + "paper": 4, + "leather": 2 + } + }, + "agent_count": 2, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_wool": 3, + "stick": 1 + }, + "1": { + "pink_wool": 3 + } + }, + "agent_count": 2, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_carrot_on_a_stick_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an carrot_on_a_stick", + "conversation": "Let's work together to craft an carrot_on_a_stick.", + "initial_inventory": { + "0": { + "stick": 1, + "string": 1, + "carrot": 1 + }, + "1": { + "stick": 2, + "string": 1 + } + }, + "agent_count": 2, + "target": "carrot_on_a_stick", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_wool_0_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an light_gray_wool", + "conversation": "Let's work together to craft an light_gray_wool.", + "initial_inventory": { + "0": { + "light_gray_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "light_gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_magenta_bed_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an magenta_bed", + "conversation": "Let's work together to craft an magenta_bed.", + "initial_inventory": { + "0": { + "allium": 1, + "oak_planks": 2 + }, + "1": { + "oak_planks": 1, + "shears": 1 + } + }, + "agent_count": 2, + "target": "magenta_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_polished_granite_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_granite", + "conversation": "Let's work together to craft an polished_granite.", + "initial_inventory": { + "0": { + "granite": 2 + }, + "1": { + "granite": 2 + } + }, + "agent_count": 2, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_golden_shovel_0_with_plan_missing_gold_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an golden_shovel", + "conversation": "Let's work together to craft an golden_shovel.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "iron_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "golden_shovel", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_barrel_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an barrel", + "conversation": "Let's work together to craft an barrel.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "oak_slab": 1 + }, + "1": { + "oak_planks": 3, + "oak_slab": 1 + } + }, + "agent_count": 2, + "target": "barrel", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_wool_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_wool", + "conversation": "Let's work together to craft an purple_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "shears": 1 + }, + "1": { + "red_dye": 1 + } + }, + "agent_count": 2, + "target": "purple_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_red_wool_1_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_wool", + "conversation": "Let's work together to craft an red_wool.", + "initial_inventory": { + "0": { + "red_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "red_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_chest_minecart_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an chest_minecart", + "conversation": "Let's work together to craft an chest_minecart.", + "initial_inventory": { + "0": { + "oak_planks": 4, + "iron_ingot": 2 + }, + "1": { + "oak_planks": 4, + "iron_ingot": 3 + } + }, + "agent_count": 2, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_polished_blackstone_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_polished_blackstone", + "conversation": "Let's work together to craft an chiseled_polished_blackstone.", + "initial_inventory": { + "0": { + "polished_blackstone_slab": 1 + }, + "1": { + "polished_blackstone_slab": 1 + } + }, + "agent_count": 2, + "target": "chiseled_polished_blackstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 3, + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "red_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_leggings_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an leather_leggings", + "conversation": "Let's work together to craft an leather_leggings.", + "initial_inventory": { + "0": { + "leather": 3 + }, + "1": { + "leather": 4 + } + }, + "agent_count": 2, + "target": "leather_leggings", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_planks": 4, + "book": 2 + }, + "1": { + "oak_planks": 5, + "book": 1 + } + }, + "agent_count": 2, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_wool": 3, + "stick": 1 + }, + "1": { + "red_wool": 3 + } + }, + "agent_count": 2, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_wool_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_wool", + "conversation": "Let's work together to craft an purple_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "black_wool": 1 + }, + "1": { + "red_dye": 1 + } + }, + "agent_count": 2, + "target": "purple_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_warped_fungus_on_a_stick_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an warped_fungus_on_a_stick", + "conversation": "Let's work together to craft an warped_fungus_on_a_stick.", + "initial_inventory": { + "0": { + "fishing_rod": 1 + }, + "1": { + "warped_fungus": 1 + } + }, + "agent_count": 2, + "target": "warped_fungus_on_a_stick", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_painting_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an painting", + "conversation": "Let's work together to craft an painting.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "white_dye": 1 + }, + "1": { + "oak_planks": 2, + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "painting", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_wool_1_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_wool", + "conversation": "Let's work together to craft an cyan_wool.", + "initial_inventory": { + "0": { + "cyan_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "cyan_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_chest_minecart_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an chest_minecart", + "conversation": "Let's work together to craft an chest_minecart.", + "initial_inventory": { + "0": { + "oak_planks": 4, + "iron_ingot": 2 + }, + "1": { + "oak_planks": 4, + "iron_ingot": 3 + } + }, + "agent_count": 2, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_blue_wool_0_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an light_blue_wool", + "conversation": "Let's work together to craft an light_blue_wool.", + "initial_inventory": { + "0": { + "light_blue_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "light_blue_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_bookshelf_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an bookshelf", + "conversation": "Let's work together to craft an bookshelf.", + "initial_inventory": { + "0": { + "oak_log": 1, + "paper": 5, + "leather": 1 + }, + "1": { + "oak_log": 1, + "paper": 4, + "leather": 2 + } + }, + "agent_count": 2, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_wool_1_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an pink_wool", + "conversation": "Let's work together to craft an pink_wool.", + "initial_inventory": { + "0": { + "pink_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "pink_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_purple_wool_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_wool", + "conversation": "Let's work together to craft an purple_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "black_wool": 1 + }, + "1": { + "red_dye": 1 + } + }, + "agent_count": 2, + "target": "purple_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_dye_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_dye", + "conversation": "Let's work together to craft an cyan_dye.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "green_dye": 1 + } + }, + "agent_count": 2, + "target": "cyan_dye", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_stained_glass_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_stained_glass", + "conversation": "Let's work together to craft an red_stained_glass.", + "initial_inventory": { + "0": { + "glass": 4, + "red_dye": 1 + }, + "1": { + "glass": 4 + } + }, + "agent_count": 2, + "target": "red_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 3, + "stick": 1 + }, + "1": { + "blue_wool": 3 + } + }, + "agent_count": 2, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_slab": 2, + "bookshelf": 1 + }, + "1": { + "oak_slab": 2 + } + }, + "agent_count": 2, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cut_red_sandstone_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cut_red_sandstone", + "conversation": "Let's work together to craft an cut_red_sandstone.", + "initial_inventory": { + "0": { + "red_sandstone": 2 + }, + "1": { + "red_sandstone": 2 + } + }, + "agent_count": 2, + "target": "cut_red_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cartography_table_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cartography_table", + "conversation": "Let's work together to craft an cartography_table.", + "initial_inventory": { + "0": { + "paper": 1, + "oak_planks": 2 + }, + "1": { + "paper": 1, + "oak_planks": 2 + } + }, + "agent_count": 2, + "target": "cartography_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_wool_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_wool", + "conversation": "Let's work together to craft an red_wool.", + "initial_inventory": { + "0": { + "red_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "red_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_carpet_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_carpet", + "conversation": "Let's work together to craft an red_carpet.", + "initial_inventory": { + "0": { + "red_dye": 1 + }, + "1": { + "black_carpet": 1 + } + }, + "agent_count": 2, + "target": "red_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_wool_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an brown_wool", + "conversation": "Let's work together to craft an brown_wool.", + "initial_inventory": { + "0": { + "brown_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "brown_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_wool_1_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_wool", + "conversation": "Let's work together to craft an purple_wool.", + "initial_inventory": { + "0": { + "purple_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "purple_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_brown_wool_1_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an brown_wool", + "conversation": "Let's work together to craft an brown_wool.", + "initial_inventory": { + "0": { + "brown_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "brown_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_light_blue_wool_1_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an light_blue_wool", + "conversation": "Let's work together to craft an light_blue_wool.", + "initial_inventory": { + "0": { + "light_blue_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "light_blue_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_yellow_wool_0_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an yellow_wool", + "conversation": "Let's work together to craft an yellow_wool.", + "initial_inventory": { + "0": { + "yellow_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "yellow_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_light_blue_wool_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an light_blue_wool", + "conversation": "Let's work together to craft an light_blue_wool.", + "initial_inventory": { + "0": { + "light_blue_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "light_blue_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_1_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "gray_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_dark_prismarine_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an dark_prismarine", + "conversation": "Let's work together to craft an dark_prismarine.", + "initial_inventory": { + "0": { + "prismarine_shard": 4, + "black_dye": 1 + }, + "1": { + "prismarine_shard": 4 + } + }, + "agent_count": 2, + "target": "dark_prismarine", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an black_banner", + "conversation": "Let's work together to craft an black_banner.", + "initial_inventory": { + "0": { + "black_wool": 3, + "stick": 1 + }, + "1": { + "black_wool": 3 + } + }, + "agent_count": 2, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_wool_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_wool", + "conversation": "Let's work together to craft an purple_wool.", + "initial_inventory": { + "0": { + "purple_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "purple_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 3, + "stick": 1 + }, + "1": { + "blue_wool": 3 + } + }, + "agent_count": 2, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_oxidized_cut_copper_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an waxed_oxidized_cut_copper", + "conversation": "Let's work together to craft an waxed_oxidized_cut_copper.", + "initial_inventory": { + "0": { + "waxed_oxidized_copper": 2 + }, + "1": { + "waxed_oxidized_copper": 2 + } + }, + "agent_count": 2, + "target": "waxed_oxidized_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_wool_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an yellow_wool", + "conversation": "Let's work together to craft an yellow_wool.", + "initial_inventory": { + "0": { + "yellow_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "yellow_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_polished_blackstone_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_polished_blackstone", + "conversation": "Let's work together to craft an chiseled_polished_blackstone.", + "initial_inventory": { + "0": { + "polished_blackstone_slab": 1 + }, + "1": { + "polished_blackstone_slab": 1 + } + }, + "agent_count": 2, + "target": "chiseled_polished_blackstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_blue_wool_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an light_blue_wool", + "conversation": "Let's work together to craft an light_blue_wool.", + "initial_inventory": { + "0": { + "light_blue_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "light_blue_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_wool_0_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_wool", + "conversation": "Let's work together to craft an purple_wool.", + "initial_inventory": { + "0": { + "purple_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "purple_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_spectral_arrow_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an spectral_arrow", + "conversation": "Let's work together to craft an spectral_arrow.", + "initial_inventory": { + "0": { + "glowstone_dust": 2, + "flint": 1, + "oak_planks": 1 + }, + "1": { + "glowstone_dust": 2, + "oak_planks": 1, + "feather": 1 + } + }, + "agent_count": 2, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an spectral_arrow", + "conversation": "Let's work together to craft an spectral_arrow.", + "initial_inventory": { + "0": { + "glowstone_dust": 2, + "flint": 1, + "oak_planks": 1 + }, + "1": { + "glowstone_dust": 2, + "oak_planks": 1, + "feather": 1 + } + }, + "agent_count": 2, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_0_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 3, + "oak_log": 1 + }, + "1": { + "bone_meal": 3, + "shears": 1 + } + }, + "agent_count": 2, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_1_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 3, + "oak_log": 1 + }, + "1": { + "bone_meal": 3, + "shears": 1 + } + }, + "agent_count": 2, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 3, + "black_wool": 3, + "oak_log": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 3 + } + }, + "agent_count": 2, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 3, + "black_wool": 3, + "oak_log": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 3 + } + }, + "agent_count": 2, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_0_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "green_dye": 2, + "oak_log": 1 + }, + "1": { + "blue_dye": 2, + "green_dye": 1, + "shears": 1 + } + }, + "agent_count": 2, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_banner_1_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "green_dye": 2, + "oak_log": 1 + }, + "1": { + "blue_dye": 2, + "green_dye": 1, + "shears": 1 + } + }, + "agent_count": 2, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_banner_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "green_dye": 1, + "black_wool": 3, + "oak_log": 1 + }, + "1": { + "blue_dye": 2, + "green_dye": 2, + "black_wool": 3 + } + }, + "agent_count": 2, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "green_dye": 1, + "black_wool": 3, + "oak_log": 1 + }, + "1": { + "blue_dye": 2, + "green_dye": 2, + "black_wool": 3 + } + }, + "agent_count": 2, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_bed_0_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_bed", + "conversation": "Let's work together to craft an cyan_bed.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "green_dye": 1, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "green_dye": 1, + "shears": 1 + } + }, + "agent_count": 2, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_bed_1_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_bed", + "conversation": "Let's work together to craft an cyan_bed.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "green_dye": 1, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "green_dye": 1, + "shears": 1 + } + }, + "agent_count": 2, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_bed_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_bed", + "conversation": "Let's work together to craft an cyan_bed.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "green_dye": 1, + "black_wool": 1, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "green_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 2, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_bed_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_bed", + "conversation": "Let's work together to craft an cyan_bed.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "green_dye": 1, + "black_wool": 1, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "green_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 2, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_0_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "ink_sac": 1, + "shears": 1 + }, + "1": { + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_wool_1_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "ink_sac": 1, + "shears": 1 + }, + "1": { + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_wool_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "ink_sac": 1, + "black_wool": 1 + }, + "1": { + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "ink_sac": 1, + "black_wool": 1 + }, + "1": { + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_painting_0_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an painting", + "conversation": "Let's work together to craft an painting.", + "initial_inventory": { + "0": { + "oak_log": 1, + "shears": 1 + }, + "1": { + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "painting", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_painting_1_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an painting", + "conversation": "Let's work together to craft an painting.", + "initial_inventory": { + "0": { + "oak_log": 1, + "shears": 1 + }, + "1": { + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "painting", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_painting_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an painting", + "conversation": "Let's work together to craft an painting.", + "initial_inventory": { + "0": { + "oak_log": 1, + "black_wool": 1 + }, + "1": { + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "painting", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_painting_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an painting", + "conversation": "Let's work together to craft an painting.", + "initial_inventory": { + "0": { + "oak_log": 1, + "black_wool": 1 + }, + "1": { + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "painting", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_log": 1, + "paper": 4, + "leather": 1 + }, + "1": { + "oak_log": 2, + "paper": 5, + "leather": 2 + } + }, + "agent_count": 2, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_log": 1, + "paper": 4, + "leather": 1 + }, + "1": { + "oak_log": 2, + "paper": 5, + "leather": 2 + } + }, + "agent_count": 2, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_warped_fungus_on_a_stick_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an warped_fungus_on_a_stick", + "conversation": "Let's work together to craft an warped_fungus_on_a_stick.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "string": 1, + "warped_fungus": 1 + }, + "1": { + "oak_planks": 1, + "string": 1 + } + }, + "agent_count": 2, + "target": "warped_fungus_on_a_stick", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_warped_fungus_on_a_stick_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an warped_fungus_on_a_stick", + "conversation": "Let's work together to craft an warped_fungus_on_a_stick.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "string": 1, + "warped_fungus": 1 + }, + "1": { + "oak_planks": 1, + "string": 1 + } + }, + "agent_count": 2, + "target": "warped_fungus_on_a_stick", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_carrot_on_a_stick_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an carrot_on_a_stick", + "conversation": "Let's work together to craft an carrot_on_a_stick.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "string": 1, + "carrot": 1 + }, + "1": { + "oak_planks": 1, + "string": 1 + } + }, + "agent_count": 2, + "target": "carrot_on_a_stick", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_carrot_on_a_stick_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an carrot_on_a_stick", + "conversation": "Let's work together to craft an carrot_on_a_stick.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "string": 1, + "carrot": 1 + }, + "1": { + "oak_planks": 1, + "string": 1 + } + }, + "agent_count": 2, + "target": "carrot_on_a_stick", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/test_tasks/tasks_2_agents_stats.txt b/tasks/crafting_tasks/test_tasks/tasks_2_agents_stats.txt new file mode 100644 index 0000000..bc2aca7 --- /dev/null +++ b/tasks/crafting_tasks/test_tasks/tasks_2_agents_stats.txt @@ -0,0 +1,14 @@ +{ + "num_tasks": 205, + "avg_depth": 2.1176470588235294, + "std_depth": 0.7578881603955948, + "num_tasks_based_depth": { + "0": 100, + "1": 76, + "2": 28 + }, + "num_missing_resources": { + "0": 145, + "1": 59 + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/test_tasks/tasks_3_agents.json b/tasks/crafting_tasks/test_tasks/tasks_3_agents.json new file mode 100644 index 0000000..12f9fab --- /dev/null +++ b/tasks/crafting_tasks/test_tasks/tasks_3_agents.json @@ -0,0 +1,5528 @@ +{ + "multiagent_crafting_cyan_bed_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_bed", + "conversation": "Let's work together to craft an cyan_bed.", + "initial_inventory": { + "0": { + "cyan_wool": 1, + "oak_planks": 1 + }, + "1": { + "cyan_wool": 1, + "oak_planks": 1 + }, + "2": { + "cyan_wool": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_bed_1_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_bed", + "conversation": "Let's work together to craft an cyan_bed.", + "initial_inventory": { + "0": { + "cyan_dye": 1, + "oak_log": 1 + }, + "1": { + "cyan_dye": 1, + "shears": 1 + }, + "2": { + "cyan_dye": 1 + } + }, + "agent_count": 3, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_quartz_bricks_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an quartz_bricks", + "conversation": "Let's work together to craft an quartz_bricks.", + "initial_inventory": { + "0": { + "quartz_block": 2 + }, + "1": { + "quartz_block": 1 + }, + "2": { + "quartz_block": 1 + } + }, + "agent_count": 3, + "target": "quartz_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_1_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_dye": 2, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 2, + "shears": 1 + }, + "2": { + "cyan_dye": 2 + } + }, + "agent_count": 3, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_smoker_2_with_plan_missing_furnace_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an smoker", + "conversation": "Let's work together to craft an smoker.", + "initial_inventory": { + "0": { + "dark_oak_log": 1 + }, + "1": { + "dark_oak_log": 2 + }, + "2": { + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "furnace" + ] + }, + "multiagent_crafting_magenta_bed_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an magenta_bed", + "conversation": "Let's work together to craft an magenta_bed.", + "initial_inventory": { + "0": { + "allium": 1, + "black_wool": 1, + "oak_planks": 1 + }, + "1": { + "black_wool": 1, + "oak_planks": 1 + }, + "2": { + "black_wool": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "magenta_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_stained_glass_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an red_stained_glass", + "conversation": "Let's work together to craft an red_stained_glass.", + "initial_inventory": { + "0": { + "glass": 4, + "red_dye": 1 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + } + }, + "agent_count": 3, + "target": "red_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_bed_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_bed", + "conversation": "Let's work together to craft an cyan_bed.", + "initial_inventory": { + "0": { + "cyan_dye": 1, + "oak_log": 1 + }, + "1": { + "cyan_dye": 1, + "shears": 1 + }, + "2": { + "cyan_dye": 1 + } + }, + "agent_count": 3, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_red_banner_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_wool": 2, + "stick": 1 + }, + "1": { + "red_wool": 2 + }, + "2": { + "red_wool": 2 + } + }, + "agent_count": 3, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "red_dye": 2, + "black_wool": 2 + }, + "2": { + "red_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_bed_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_bed", + "conversation": "Let's work together to craft an cyan_bed.", + "initial_inventory": { + "0": { + "cyan_wool": 1, + "oak_planks": 1 + }, + "1": { + "cyan_wool": 1, + "oak_planks": 1 + }, + "2": { + "cyan_wool": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_bed_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_bed", + "conversation": "Let's work together to craft an cyan_bed.", + "initial_inventory": { + "0": { + "cyan_dye": 1, + "black_wool": 1, + "oak_log": 1 + }, + "1": { + "cyan_dye": 1, + "black_wool": 1 + }, + "2": { + "cyan_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dark_prismarine_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an dark_prismarine", + "conversation": "Let's work together to craft an dark_prismarine.", + "initial_inventory": { + "0": { + "prismarine_shard": 2, + "black_dye": 1 + }, + "1": { + "prismarine_shard": 2 + }, + "2": { + "prismarine_shard": 4 + } + }, + "agent_count": 3, + "target": "dark_prismarine", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chest_minecart_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an chest_minecart", + "conversation": "Let's work together to craft an chest_minecart.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "iron_ingot": 1 + }, + "1": { + "oak_planks": 2, + "iron_ingot": 1 + }, + "2": { + "oak_planks": 4, + "iron_ingot": 3 + } + }, + "agent_count": 3, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an spectral_arrow", + "conversation": "Let's work together to craft an spectral_arrow.", + "initial_inventory": { + "0": { + "glowstone_dust": 1, + "arrow": 1 + }, + "1": { + "glowstone_dust": 2 + }, + "2": { + "glowstone_dust": 1 + } + }, + "agent_count": 3, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 2, + "oak_planks": 2 + }, + "1": { + "red_dye": 2, + "shears": 1 + }, + "2": { + "red_dye": 2 + } + }, + "agent_count": 3, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_red_banner_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_wool": 2, + "stick": 1 + }, + "1": { + "red_wool": 2 + }, + "2": { + "red_wool": 2 + } + }, + "agent_count": 3, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chest_minecart_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an chest_minecart", + "conversation": "Let's work together to craft an chest_minecart.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "iron_ingot": 1 + }, + "1": { + "oak_planks": 2, + "iron_ingot": 1 + }, + "2": { + "oak_planks": 4, + "iron_ingot": 3 + } + }, + "agent_count": 3, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an spectral_arrow", + "conversation": "Let's work together to craft an spectral_arrow.", + "initial_inventory": { + "0": { + "glowstone_dust": 1, + "arrow": 1 + }, + "1": { + "glowstone_dust": 2 + }, + "2": { + "glowstone_dust": 1 + } + }, + "agent_count": 3, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an spectral_arrow", + "conversation": "Let's work together to craft an spectral_arrow.", + "initial_inventory": { + "0": { + "glowstone_dust": 1, + "flint": 1 + }, + "1": { + "glowstone_dust": 2, + "stick": 1 + }, + "2": { + "glowstone_dust": 1, + "feather": 1 + } + }, + "agent_count": 3, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_wool": 2, + "stick": 1 + }, + "1": { + "pink_wool": 2 + }, + "2": { + "pink_wool": 2 + } + }, + "agent_count": 3, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_wool_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_wool", + "conversation": "Let's work together to craft an purple_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "red_dye": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "purple_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_stained_glass_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an red_stained_glass", + "conversation": "Let's work together to craft an red_stained_glass.", + "initial_inventory": { + "0": { + "glass": 4, + "red_dye": 1 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + } + }, + "agent_count": 3, + "target": "red_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_wool_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_wool", + "conversation": "Let's work together to craft an purple_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "red_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "purple_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_soul_campfire_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an soul_campfire", + "conversation": "Let's work together to craft an soul_campfire.", + "initial_inventory": { + "0": { + "stick": 1, + "soul_sand": 1, + "dark_oak_log": 1 + }, + "1": { + "stick": 1, + "dark_oak_log": 1 + }, + "2": { + "stick": 1, + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "target": "soul_campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_0_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 2, + "oak_planks": 2 + }, + "1": { + "pink_dye": 2, + "shears": 1 + }, + "2": { + "pink_dye": 2 + } + }, + "agent_count": 3, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_banner_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_wool": 2, + "stick": 1 + }, + "1": { + "cyan_wool": 2 + }, + "2": { + "cyan_wool": 2 + } + }, + "agent_count": 3, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "black_dye": 1 + }, + "1": { + "white_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_polished_granite_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_granite", + "conversation": "Let's work together to craft an polished_granite.", + "initial_inventory": { + "0": { + "granite": 1 + }, + "1": { + "granite": 2 + }, + "2": { + "granite": 1 + } + }, + "agent_count": 3, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an black_banner", + "conversation": "Let's work together to craft an black_banner.", + "initial_inventory": { + "0": { + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "black_wool": 2 + }, + "2": { + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_quartz_bricks_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an quartz_bricks", + "conversation": "Let's work together to craft an quartz_bricks.", + "initial_inventory": { + "0": { + "quartz_block": 2 + }, + "1": { + "quartz_block": 1 + }, + "2": { + "quartz_block": 1 + } + }, + "agent_count": 3, + "target": "quartz_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an black_banner", + "conversation": "Let's work together to craft an black_banner.", + "initial_inventory": { + "0": { + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "black_wool": 2 + }, + "2": { + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_campfire_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an soul_campfire", + "conversation": "Let's work together to craft an soul_campfire.", + "initial_inventory": { + "0": { + "stick": 1, + "soul_sand": 1, + "dark_oak_log": 1 + }, + "1": { + "stick": 1, + "dark_oak_log": 1 + }, + "2": { + "stick": 1, + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "target": "soul_campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_1_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 2, + "oak_planks": 2 + }, + "1": { + "pink_dye": 2, + "shears": 1 + }, + "2": { + "pink_dye": 2 + } + }, + "agent_count": 3, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_leather_leggings_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an leather_leggings", + "conversation": "Let's work together to craft an leather_leggings.", + "initial_inventory": { + "0": { + "leather": 3 + }, + "1": { + "leather": 2 + }, + "2": { + "leather": 2 + } + }, + "agent_count": 3, + "target": "leather_leggings", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_0_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "black_dye": 1 + }, + "1": { + "white_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_stained_glass_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "glass": 4, + "cyan_dye": 1 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + } + }, + "agent_count": 3, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_campfire_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an soul_campfire", + "conversation": "Let's work together to craft an soul_campfire.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "dark_oak_log": 1 + }, + "1": { + "soul_sand": 1, + "dark_oak_log": 1 + }, + "2": { + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "target": "soul_campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_wool": 2, + "stick": 1 + }, + "1": { + "pink_wool": 2 + }, + "2": { + "pink_wool": 2 + } + }, + "agent_count": 3, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bookshelf_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an bookshelf", + "conversation": "Let's work together to craft an bookshelf.", + "initial_inventory": { + "0": { + "oak_log": 2, + "paper": 3, + "leather": 1 + }, + "1": { + "paper": 3, + "leather": 1 + }, + "2": { + "paper": 3, + "leather": 1 + } + }, + "agent_count": 3, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_bed_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_bed", + "conversation": "Let's work together to craft an cyan_bed.", + "initial_inventory": { + "0": { + "cyan_wool": 1, + "oak_planks": 1 + }, + "1": { + "cyan_wool": 1, + "oak_planks": 1 + }, + "2": { + "cyan_wool": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_wool_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_wool", + "conversation": "Let's work together to craft an cyan_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "green_dye": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "cyan_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_wool": 2, + "stick": 1 + }, + "1": { + "cyan_wool": 2 + }, + "2": { + "cyan_wool": 2 + } + }, + "agent_count": 3, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bookshelf_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an bookshelf", + "conversation": "Let's work together to craft an bookshelf.", + "initial_inventory": { + "0": { + "oak_log": 2, + "paper": 3, + "leather": 1 + }, + "1": { + "paper": 3, + "leather": 1 + }, + "2": { + "paper": 3, + "leather": 1 + } + }, + "agent_count": 3, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 2, + "stick": 1 + }, + "1": { + "blue_wool": 2 + }, + "2": { + "blue_wool": 2 + } + }, + "agent_count": 3, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_campfire_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an soul_campfire", + "conversation": "Let's work together to craft an soul_campfire.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "dark_oak_log": 1 + }, + "1": { + "soul_sand": 1, + "dark_oak_log": 1 + }, + "2": { + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "target": "soul_campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cut_red_sandstone_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an cut_red_sandstone", + "conversation": "Let's work together to craft an cut_red_sandstone.", + "initial_inventory": { + "0": { + "red_sandstone": 1 + }, + "1": { + "red_sandstone": 1 + }, + "2": { + "red_sandstone": 2 + } + }, + "agent_count": 3, + "target": "cut_red_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_bed_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_bed", + "conversation": "Let's work together to craft an cyan_bed.", + "initial_inventory": { + "0": { + "cyan_dye": 1, + "black_wool": 1, + "oak_log": 1 + }, + "1": { + "cyan_dye": 1, + "black_wool": 1 + }, + "2": { + "cyan_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_slab": 1, + "bookshelf": 1 + }, + "1": { + "oak_slab": 1 + }, + "2": { + "oak_slab": 2 + } + }, + "agent_count": 3, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 2, + "black_wool": 2 + }, + "2": { + "cyan_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_granite_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_granite", + "conversation": "Let's work together to craft an polished_granite.", + "initial_inventory": { + "0": { + "granite": 1 + }, + "1": { + "granite": 2 + }, + "2": { + "granite": 1 + } + }, + "agent_count": 3, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "pink_dye": 2, + "black_wool": 2 + }, + "2": { + "pink_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_wool": 2, + "stick": 1 + }, + "1": { + "cyan_wool": 2 + }, + "2": { + "cyan_wool": 2 + } + }, + "agent_count": 3, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_wool_0_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_wool", + "conversation": "Let's work together to craft an purple_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "red_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "purple_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_smoker_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an smoker", + "conversation": "Let's work together to craft an smoker.", + "initial_inventory": { + "0": { + "dark_oak_log": 1, + "furnace": 1 + }, + "1": { + "dark_oak_log": 2 + }, + "2": { + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "pink_dye": 2, + "black_wool": 2 + }, + "2": { + "pink_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_smoker_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an smoker", + "conversation": "Let's work together to craft an smoker.", + "initial_inventory": { + "0": { + "dark_oak_log": 1, + "furnace": 1 + }, + "1": { + "dark_oak_log": 2 + }, + "2": { + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "white_dye": 2, + "black_wool": 2 + }, + "2": { + "white_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_wool": 2, + "stick": 1 + }, + "1": { + "white_wool": 2 + }, + "2": { + "white_wool": 2 + } + }, + "agent_count": 3, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_1_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 2, + "oak_planks": 2 + }, + "1": { + "red_dye": 2, + "shears": 1 + }, + "2": { + "red_dye": 2 + } + }, + "agent_count": 3, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_spectral_arrow_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an spectral_arrow", + "conversation": "Let's work together to craft an spectral_arrow.", + "initial_inventory": { + "0": { + "glowstone_dust": 1, + "arrow": 1 + }, + "1": { + "glowstone_dust": 2 + }, + "2": { + "glowstone_dust": 1 + } + }, + "agent_count": 3, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "white_dye": 2, + "black_wool": 2 + }, + "2": { + "white_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cut_red_sandstone_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an cut_red_sandstone", + "conversation": "Let's work together to craft an cut_red_sandstone.", + "initial_inventory": { + "0": { + "red_sandstone": 1 + }, + "1": { + "red_sandstone": 1 + }, + "2": { + "red_sandstone": 2 + } + }, + "agent_count": 3, + "target": "cut_red_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_granite_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_granite", + "conversation": "Let's work together to craft an polished_granite.", + "initial_inventory": { + "0": { + "diorite": 1, + "quartz": 1 + }, + "1": { + "diorite": 1, + "quartz": 2 + }, + "2": { + "diorite": 2, + "quartz": 1 + } + }, + "agent_count": 3, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "glass": 4, + "cyan_dye": 1 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + } + }, + "agent_count": 3, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_campfire_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an soul_campfire", + "conversation": "Let's work together to craft an soul_campfire.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "dark_oak_log": 1 + }, + "1": { + "soul_sand": 1, + "dark_oak_log": 1 + }, + "2": { + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "target": "soul_campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_quartz_bricks_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an quartz_bricks", + "conversation": "Let's work together to craft an quartz_bricks.", + "initial_inventory": { + "0": { + "quartz_block": 2 + }, + "1": { + "quartz_block": 1 + }, + "2": { + "quartz_block": 1 + } + }, + "agent_count": 3, + "target": "quartz_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "book": 1 + }, + "1": { + "oak_planks": 3, + "book": 1 + }, + "2": { + "oak_planks": 3, + "book": 1 + } + }, + "agent_count": 3, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_wool": 2, + "stick": 1 + }, + "1": { + "white_wool": 2 + }, + "2": { + "white_wool": 2 + } + }, + "agent_count": 3, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_0_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_dye": 2, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 2, + "shears": 1 + }, + "2": { + "cyan_dye": 2 + } + }, + "agent_count": 3, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_smoker_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an smoker", + "conversation": "Let's work together to craft an smoker.", + "initial_inventory": { + "0": { + "dark_oak_log": 1, + "furnace": 1 + }, + "1": { + "dark_oak_log": 2 + }, + "2": { + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_bed_0_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_bed", + "conversation": "Let's work together to craft an cyan_bed.", + "initial_inventory": { + "0": { + "cyan_dye": 1, + "oak_log": 1 + }, + "1": { + "cyan_dye": 1, + "shears": 1 + }, + "2": { + "cyan_dye": 1 + } + }, + "agent_count": 3, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_pink_banner_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_wool": 2, + "stick": 1 + }, + "1": { + "pink_wool": 2 + }, + "2": { + "pink_wool": 2 + } + }, + "agent_count": 3, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "blue_dye": 1 + }, + "1": { + "glass": 2, + "green_dye": 1 + }, + "2": { + "glass": 4 + } + }, + "agent_count": 3, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an black_banner", + "conversation": "Let's work together to craft an black_banner.", + "initial_inventory": { + "0": { + "black_wool": 2, + "stick": 1 + }, + "1": { + "black_wool": 2 + }, + "2": { + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "blue_dye": 1 + }, + "1": { + "glass": 2, + "green_dye": 1 + }, + "2": { + "glass": 4 + } + }, + "agent_count": 3, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_slab": 1, + "bookshelf": 1 + }, + "1": { + "oak_slab": 1 + }, + "2": { + "oak_slab": 2 + } + }, + "agent_count": 3, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_wool_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_wool", + "conversation": "Let's work together to craft an purple_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "red_dye": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "purple_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 2, + "stick": 1 + }, + "1": { + "blue_wool": 2 + }, + "2": { + "blue_wool": 2 + } + }, + "agent_count": 3, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_wool_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_wool", + "conversation": "Let's work together to craft an cyan_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "green_dye": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "cyan_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_wool": 2, + "stick": 1 + }, + "1": { + "white_wool": 2 + }, + "2": { + "white_wool": 2 + } + }, + "agent_count": 3, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 2, + "oak_planks": 2 + }, + "1": { + "blue_wool": 2 + }, + "2": { + "blue_wool": 2 + } + }, + "agent_count": 3, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an black_banner", + "conversation": "Let's work together to craft an black_banner.", + "initial_inventory": { + "0": { + "black_wool": 2, + "stick": 1 + }, + "1": { + "black_wool": 2 + }, + "2": { + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_granite_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_granite", + "conversation": "Let's work together to craft an polished_granite.", + "initial_inventory": { + "0": { + "diorite": 1, + "quartz": 1 + }, + "1": { + "diorite": 1, + "quartz": 2 + }, + "2": { + "diorite": 2, + "quartz": 1 + } + }, + "agent_count": 3, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bookshelf_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an bookshelf", + "conversation": "Let's work together to craft an bookshelf.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "book": 1 + }, + "1": { + "oak_planks": 2, + "book": 1 + }, + "2": { + "oak_planks": 2, + "book": 1 + } + }, + "agent_count": 3, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_wool_1_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_wool", + "conversation": "Let's work together to craft an purple_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "red_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "purple_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cut_red_sandstone_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an cut_red_sandstone", + "conversation": "Let's work together to craft an cut_red_sandstone.", + "initial_inventory": { + "0": { + "red_sandstone": 1 + }, + "1": { + "red_sandstone": 1 + }, + "2": { + "red_sandstone": 2 + } + }, + "agent_count": 3, + "target": "cut_red_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an black_banner", + "conversation": "Let's work together to craft an black_banner.", + "initial_inventory": { + "0": { + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "black_wool": 2 + }, + "2": { + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bookshelf_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an bookshelf", + "conversation": "Let's work together to craft an bookshelf.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "book": 1 + }, + "1": { + "oak_planks": 2, + "book": 1 + }, + "2": { + "oak_planks": 2, + "book": 1 + } + }, + "agent_count": 3, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "pink_dye": 2, + "black_wool": 2 + }, + "2": { + "pink_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_stained_glass_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an red_stained_glass", + "conversation": "Let's work together to craft an red_stained_glass.", + "initial_inventory": { + "0": { + "glass": 4, + "red_dye": 1 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + } + }, + "agent_count": 3, + "target": "red_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_bed_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an magenta_bed", + "conversation": "Let's work together to craft an magenta_bed.", + "initial_inventory": { + "0": { + "allium": 1, + "black_wool": 1, + "oak_planks": 1 + }, + "1": { + "black_wool": 1, + "oak_planks": 1 + }, + "2": { + "black_wool": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "magenta_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_leggings_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an leather_leggings", + "conversation": "Let's work together to craft an leather_leggings.", + "initial_inventory": { + "0": { + "leather": 3 + }, + "1": { + "leather": 2 + }, + "2": { + "leather": 2 + } + }, + "agent_count": 3, + "target": "leather_leggings", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_granite_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_granite", + "conversation": "Let's work together to craft an polished_granite.", + "initial_inventory": { + "0": { + "diorite": 1, + "quartz": 1 + }, + "1": { + "diorite": 1, + "quartz": 2 + }, + "2": { + "diorite": 2, + "quartz": 1 + } + }, + "agent_count": 3, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_campfire_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an soul_campfire", + "conversation": "Let's work together to craft an soul_campfire.", + "initial_inventory": { + "0": { + "stick": 1, + "soul_sand": 1, + "dark_oak_log": 1 + }, + "1": { + "stick": 1, + "dark_oak_log": 1 + }, + "2": { + "stick": 1, + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "target": "soul_campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bookshelf_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an bookshelf", + "conversation": "Let's work together to craft an bookshelf.", + "initial_inventory": { + "0": { + "oak_log": 2, + "paper": 3, + "leather": 1 + }, + "1": { + "paper": 3, + "leather": 1 + }, + "2": { + "paper": 3, + "leather": 1 + } + }, + "agent_count": 3, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an black_banner", + "conversation": "Let's work together to craft an black_banner.", + "initial_inventory": { + "0": { + "black_wool": 2, + "stick": 1 + }, + "1": { + "black_wool": 2 + }, + "2": { + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_dye": 2, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 2, + "shears": 1 + }, + "2": { + "cyan_dye": 2 + } + }, + "agent_count": 3, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_dark_prismarine_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an dark_prismarine", + "conversation": "Let's work together to craft an dark_prismarine.", + "initial_inventory": { + "0": { + "prismarine_shard": 2, + "black_dye": 1 + }, + "1": { + "prismarine_shard": 2 + }, + "2": { + "prismarine_shard": 4 + } + }, + "agent_count": 3, + "target": "dark_prismarine", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_wool_0_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_wool", + "conversation": "Let's work together to craft an cyan_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "green_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "cyan_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_smoker_0_with_plan_missing_furnace_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an smoker", + "conversation": "Let's work together to craft an smoker.", + "initial_inventory": { + "0": { + "dark_oak_log": 1 + }, + "1": { + "dark_oak_log": 2 + }, + "2": { + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "furnace" + ] + }, + "multiagent_crafting_spectral_arrow_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an spectral_arrow", + "conversation": "Let's work together to craft an spectral_arrow.", + "initial_inventory": { + "0": { + "glowstone_dust": 1, + "flint": 1 + }, + "1": { + "glowstone_dust": 2, + "stick": 1 + }, + "2": { + "glowstone_dust": 1, + "feather": 1 + } + }, + "agent_count": 3, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_leggings_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an leather_leggings", + "conversation": "Let's work together to craft an leather_leggings.", + "initial_inventory": { + "0": { + "leather": 3 + }, + "1": { + "leather": 2 + }, + "2": { + "leather": 2 + } + }, + "agent_count": 3, + "target": "leather_leggings", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "blue_dye": 1 + }, + "1": { + "glass": 2, + "green_dye": 1 + }, + "2": { + "glass": 4 + } + }, + "agent_count": 3, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 2, + "stick": 1 + }, + "1": { + "blue_wool": 2 + }, + "2": { + "blue_wool": 2 + } + }, + "agent_count": 3, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chest_minecart_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an chest_minecart", + "conversation": "Let's work together to craft an chest_minecart.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "iron_ingot": 1 + }, + "1": { + "oak_planks": 2, + "iron_ingot": 1 + }, + "2": { + "oak_planks": 4, + "iron_ingot": 3 + } + }, + "agent_count": 3, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_oxidized_cut_copper_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an waxed_oxidized_cut_copper", + "conversation": "Let's work together to craft an waxed_oxidized_cut_copper.", + "initial_inventory": { + "0": { + "waxed_oxidized_copper": 1 + }, + "1": { + "waxed_oxidized_copper": 1 + }, + "2": { + "waxed_oxidized_copper": 2 + } + }, + "agent_count": 3, + "target": "waxed_oxidized_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_1_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "black_dye": 1 + }, + "1": { + "white_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_bookshelf_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an bookshelf", + "conversation": "Let's work together to craft an bookshelf.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "book": 1 + }, + "1": { + "oak_planks": 2, + "book": 1 + }, + "2": { + "oak_planks": 2, + "book": 1 + } + }, + "agent_count": 3, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "black_dye": 1 + }, + "1": { + "white_dye": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "glass": 4, + "cyan_dye": 1 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + } + }, + "agent_count": 3, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 2, + "black_wool": 2 + }, + "2": { + "cyan_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_oxidized_cut_copper_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an waxed_oxidized_cut_copper", + "conversation": "Let's work together to craft an waxed_oxidized_cut_copper.", + "initial_inventory": { + "0": { + "waxed_oxidized_copper": 1 + }, + "1": { + "waxed_oxidized_copper": 1 + }, + "2": { + "waxed_oxidized_copper": 2 + } + }, + "agent_count": 3, + "target": "waxed_oxidized_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_polished_blackstone_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an chiseled_polished_blackstone", + "conversation": "Let's work together to craft an chiseled_polished_blackstone.", + "initial_inventory": { + "0": { + "polished_blackstone": 1 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + } + }, + "agent_count": 3, + "target": "chiseled_polished_blackstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_slab": 1, + "bookshelf": 1 + }, + "1": { + "oak_slab": 1 + }, + "2": { + "oak_slab": 2 + } + }, + "agent_count": 3, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "white_dye": 2, + "black_wool": 2 + }, + "2": { + "white_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dark_prismarine_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an dark_prismarine", + "conversation": "Let's work together to craft an dark_prismarine.", + "initial_inventory": { + "0": { + "prismarine_shard": 2, + "black_dye": 1 + }, + "1": { + "prismarine_shard": 2 + }, + "2": { + "prismarine_shard": 4 + } + }, + "agent_count": 3, + "target": "dark_prismarine", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_bed_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_bed", + "conversation": "Let's work together to craft an cyan_bed.", + "initial_inventory": { + "0": { + "cyan_dye": 1, + "black_wool": 1, + "oak_log": 1 + }, + "1": { + "cyan_dye": 1, + "black_wool": 1 + }, + "2": { + "cyan_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_oxidized_cut_copper_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an waxed_oxidized_cut_copper", + "conversation": "Let's work together to craft an waxed_oxidized_cut_copper.", + "initial_inventory": { + "0": { + "waxed_oxidized_copper": 1 + }, + "1": { + "waxed_oxidized_copper": 1 + }, + "2": { + "waxed_oxidized_copper": 2 + } + }, + "agent_count": 3, + "target": "waxed_oxidized_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_polished_blackstone_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an chiseled_polished_blackstone", + "conversation": "Let's work together to craft an chiseled_polished_blackstone.", + "initial_inventory": { + "0": { + "polished_blackstone": 1 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + } + }, + "agent_count": 3, + "target": "chiseled_polished_blackstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_granite_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_granite", + "conversation": "Let's work together to craft an polished_granite.", + "initial_inventory": { + "0": { + "granite": 1 + }, + "1": { + "granite": 2 + }, + "2": { + "granite": 1 + } + }, + "agent_count": 3, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_wool_1_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_wool", + "conversation": "Let's work together to craft an cyan_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "green_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "cyan_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_red_banner_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_wool": 2, + "stick": 1 + }, + "1": { + "red_wool": 2 + }, + "2": { + "red_wool": 2 + } + }, + "agent_count": 3, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an spectral_arrow", + "conversation": "Let's work together to craft an spectral_arrow.", + "initial_inventory": { + "0": { + "glowstone_dust": 1, + "flint": 1 + }, + "1": { + "glowstone_dust": 2, + "stick": 1 + }, + "2": { + "glowstone_dust": 1, + "feather": 1 + } + }, + "agent_count": 3, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_smoker_1_with_plan_missing_furnace_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an smoker", + "conversation": "Let's work together to craft an smoker.", + "initial_inventory": { + "0": { + "dark_oak_log": 1 + }, + "1": { + "dark_oak_log": 2 + }, + "2": { + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "furnace" + ] + }, + "multiagent_crafting_red_banner_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "red_dye": 2, + "black_wool": 2 + }, + "2": { + "red_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "book": 1 + }, + "1": { + "oak_planks": 3, + "book": 1 + }, + "2": { + "oak_planks": 3, + "book": 1 + } + }, + "agent_count": 3, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_1_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_dye": 2, + "oak_planks": 2 + }, + "1": { + "white_dye": 2, + "shears": 1 + }, + "2": { + "white_dye": 2 + } + }, + "agent_count": 3, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lectern_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "book": 1 + }, + "1": { + "oak_planks": 3, + "book": 1 + }, + "2": { + "oak_planks": 3, + "book": 1 + } + }, + "agent_count": 3, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 2, + "oak_planks": 2 + }, + "1": { + "pink_dye": 2, + "shears": 1 + }, + "2": { + "pink_dye": 2 + } + }, + "agent_count": 3, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_wool_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_wool", + "conversation": "Let's work together to craft an cyan_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "green_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "cyan_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_chiseled_polished_blackstone_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an chiseled_polished_blackstone", + "conversation": "Let's work together to craft an chiseled_polished_blackstone.", + "initial_inventory": { + "0": { + "polished_blackstone": 1 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + } + }, + "agent_count": 3, + "target": "chiseled_polished_blackstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_0_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_dye": 2, + "oak_planks": 2 + }, + "1": { + "white_dye": 2, + "shears": 1 + }, + "2": { + "white_dye": 2 + } + }, + "agent_count": 3, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_red_banner_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "red_dye": 2, + "black_wool": 2 + }, + "2": { + "red_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_wool_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_wool", + "conversation": "Let's work together to craft an cyan_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "green_dye": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "cyan_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "black_dye": 1 + }, + "1": { + "white_dye": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_wool_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_wool", + "conversation": "Let's work together to craft an purple_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "red_dye": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "purple_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_dye": 2, + "oak_planks": 2 + }, + "1": { + "white_dye": 2, + "shears": 1 + }, + "2": { + "white_dye": 2 + } + }, + "agent_count": 3, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_banner_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 2, + "black_wool": 2 + }, + "2": { + "cyan_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "black_dye": 1 + }, + "1": { + "white_dye": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_0_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 2, + "oak_planks": 2 + }, + "1": { + "red_dye": 2, + "shears": 1 + }, + "2": { + "red_dye": 2 + } + }, + "agent_count": 3, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_blue_banner_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 2, + "oak_planks": 2 + }, + "1": { + "blue_wool": 2 + }, + "2": { + "blue_wool": 2 + } + }, + "agent_count": 3, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_bed_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an magenta_bed", + "conversation": "Let's work together to craft an magenta_bed.", + "initial_inventory": { + "0": { + "allium": 1, + "black_wool": 1, + "oak_planks": 1 + }, + "1": { + "black_wool": 1, + "oak_planks": 1 + }, + "2": { + "black_wool": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "magenta_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 2, + "oak_planks": 2 + }, + "1": { + "blue_wool": 2 + }, + "2": { + "blue_wool": 2 + } + }, + "agent_count": 3, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an spectral_arrow", + "conversation": "Let's work together to craft an spectral_arrow.", + "initial_inventory": { + "0": { + "glowstone_dust": 2, + "flint": 1 + }, + "1": { + "glowstone_dust": 1, + "oak_planks": 2 + }, + "2": { + "glowstone_dust": 1, + "feather": 1 + } + }, + "agent_count": 3, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an spectral_arrow", + "conversation": "Let's work together to craft an spectral_arrow.", + "initial_inventory": { + "0": { + "glowstone_dust": 2, + "flint": 1 + }, + "1": { + "glowstone_dust": 1, + "oak_planks": 2 + }, + "2": { + "glowstone_dust": 1, + "feather": 1 + } + }, + "agent_count": 3, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an spectral_arrow", + "conversation": "Let's work together to craft an spectral_arrow.", + "initial_inventory": { + "0": { + "glowstone_dust": 2, + "flint": 1 + }, + "1": { + "glowstone_dust": 1, + "oak_planks": 2 + }, + "2": { + "glowstone_dust": 1, + "feather": 1 + } + }, + "agent_count": 3, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_0_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 2, + "oak_log": 1 + }, + "1": { + "bone_meal": 2, + "shears": 1 + }, + "2": { + "bone_meal": 2 + } + }, + "agent_count": 3, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_1_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 2, + "oak_log": 1 + }, + "1": { + "bone_meal": 2, + "shears": 1 + }, + "2": { + "bone_meal": 2 + } + }, + "agent_count": 3, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_2_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 2, + "oak_log": 1 + }, + "1": { + "bone_meal": 2, + "shears": 1 + }, + "2": { + "bone_meal": 2 + } + }, + "agent_count": 3, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 2, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "bone_meal": 2, + "black_wool": 2 + }, + "2": { + "bone_meal": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 2, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "bone_meal": 2, + "black_wool": 2 + }, + "2": { + "bone_meal": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 2, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "bone_meal": 2, + "black_wool": 2 + }, + "2": { + "bone_meal": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_0_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "green_dye": 1, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "green_dye": 1, + "shears": 1 + }, + "2": { + "blue_dye": 1, + "green_dye": 1 + } + }, + "agent_count": 3, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_banner_1_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "green_dye": 1, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "green_dye": 1, + "shears": 1 + }, + "2": { + "blue_dye": 1, + "green_dye": 1 + } + }, + "agent_count": 3, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_banner_2_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "green_dye": 1, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "green_dye": 1, + "shears": 1 + }, + "2": { + "blue_dye": 1, + "green_dye": 1 + } + }, + "agent_count": 3, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_banner_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "green_dye": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "green_dye": 1, + "black_wool": 2 + }, + "2": { + "blue_dye": 1, + "green_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "green_dye": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "green_dye": 1, + "black_wool": 2 + }, + "2": { + "blue_dye": 1, + "green_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "green_dye": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "green_dye": 1, + "black_wool": 2 + }, + "2": { + "blue_dye": 1, + "green_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_bed_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_bed", + "conversation": "Let's work together to craft an cyan_bed.", + "initial_inventory": { + "0": { + "blue_dye": 2, + "black_wool": 1 + }, + "1": { + "green_dye": 2, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + } + }, + "agent_count": 3, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_bed_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_bed", + "conversation": "Let's work together to craft an cyan_bed.", + "initial_inventory": { + "0": { + "blue_dye": 2, + "black_wool": 1 + }, + "1": { + "green_dye": 2, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + } + }, + "agent_count": 3, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_bed_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_bed", + "conversation": "Let's work together to craft an cyan_bed.", + "initial_inventory": { + "0": { + "blue_dye": 2, + "black_wool": 1 + }, + "1": { + "green_dye": 2, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + } + }, + "agent_count": 3, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_0_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "ink_sac": 1 + }, + "1": { + "bone_meal": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_wool_1_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "ink_sac": 1 + }, + "1": { + "bone_meal": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_wool_2_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "ink_sac": 1 + }, + "1": { + "bone_meal": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_wool_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "ink_sac": 1 + }, + "1": { + "bone_meal": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "ink_sac": 1 + }, + "1": { + "bone_meal": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "ink_sac": 1 + }, + "1": { + "bone_meal": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_log": 1, + "paper": 3, + "leather": 1 + }, + "1": { + "oak_log": 1, + "paper": 3, + "leather": 1 + }, + "2": { + "oak_log": 1, + "paper": 3, + "leather": 1 + } + }, + "agent_count": 3, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_log": 1, + "paper": 3, + "leather": 1 + }, + "1": { + "oak_log": 1, + "paper": 3, + "leather": 1 + }, + "2": { + "oak_log": 1, + "paper": 3, + "leather": 1 + } + }, + "agent_count": 3, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_log": 1, + "paper": 3, + "leather": 1 + }, + "1": { + "oak_log": 1, + "paper": 3, + "leather": 1 + }, + "2": { + "oak_log": 1, + "paper": 3, + "leather": 1 + } + }, + "agent_count": 3, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/test_tasks/tasks_3_agents_stats.txt b/tasks/crafting_tasks/test_tasks/tasks_3_agents_stats.txt new file mode 100644 index 0000000..811760c --- /dev/null +++ b/tasks/crafting_tasks/test_tasks/tasks_3_agents_stats.txt @@ -0,0 +1,14 @@ +{ + "num_tasks": 172, + "avg_depth": 2.280701754385965, + "std_depth": 0.6947013990604671, + "num_tasks_based_depth": { + "0": 63, + "1": 81, + "2": 27 + }, + "num_missing_resources": { + "0": 135, + "1": 36 + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/test_tasks/tasks_4_agents.json b/tasks/crafting_tasks/test_tasks/tasks_4_agents.json new file mode 100644 index 0000000..50fa2af --- /dev/null +++ b/tasks/crafting_tasks/test_tasks/tasks_4_agents.json @@ -0,0 +1,5658 @@ +{ + "multiagent_crafting_red_stained_glass_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_stained_glass", + "conversation": "Let's work together to craft an red_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "red_dye": 1 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "red_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_3_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "shears": 1 + }, + "2": { + "pink_dye": 3 + }, + "3": { + "pink_dye": 1 + } + }, + "agent_count": 4, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_pink_banner_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_wool": 1, + "stick": 1 + }, + "1": { + "pink_wool": 1 + }, + "2": { + "pink_wool": 3 + }, + "3": { + "pink_wool": 1 + } + }, + "agent_count": 4, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an black_banner", + "conversation": "Let's work together to craft an black_banner.", + "initial_inventory": { + "0": { + "black_wool": 3, + "oak_planks": 2 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_quartz_bricks_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an quartz_bricks", + "conversation": "Let's work together to craft an quartz_bricks.", + "initial_inventory": { + "0": { + "quartz_block": 1 + }, + "1": { + "quartz_block": 1 + }, + "2": { + "quartz_block": 1 + }, + "3": { + "quartz_block": 1 + } + }, + "agent_count": 4, + "target": "quartz_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_0_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "shears": 1 + }, + "2": { + "pink_dye": 3 + }, + "3": { + "pink_dye": 1 + } + }, + "agent_count": 4, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_banner_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_wool": 3, + "stick": 1 + }, + "1": { + "cyan_wool": 1 + }, + "2": { + "cyan_wool": 1 + }, + "3": { + "cyan_wool": 1 + } + }, + "agent_count": 4, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 1, + "black_wool": 1 + }, + "2": { + "cyan_dye": 3, + "black_wool": 3 + }, + "3": { + "cyan_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_granite_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_granite", + "conversation": "Let's work together to craft an polished_granite.", + "initial_inventory": { + "0": { + "granite": 1 + }, + "1": { + "granite": 1 + }, + "2": { + "granite": 1 + }, + "3": { + "granite": 1 + } + }, + "agent_count": 4, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_dye": 3, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "white_dye": 1, + "black_wool": 1 + }, + "2": { + "white_dye": 1, + "black_wool": 1 + }, + "3": { + "white_dye": 1, + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_quartz_bricks_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an quartz_bricks", + "conversation": "Let's work together to craft an quartz_bricks.", + "initial_inventory": { + "0": { + "quartz_block": 1 + }, + "1": { + "quartz_block": 1 + }, + "2": { + "quartz_block": 1 + }, + "3": { + "quartz_block": 1 + } + }, + "agent_count": 4, + "target": "quartz_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_3_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_dye": 1, + "oak_planks": 2 + }, + "1": { + "white_dye": 1, + "shears": 1 + }, + "2": { + "white_dye": 3 + }, + "3": { + "white_dye": 1 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_leather_leggings_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_leggings", + "conversation": "Let's work together to craft an leather_leggings.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 4 + } + }, + "agent_count": 4, + "target": "leather_leggings", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_3_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 1, + "shears": 1 + }, + "2": { + "red_dye": 1 + }, + "3": { + "red_dye": 3 + } + }, + "agent_count": 4, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cut_red_sandstone_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an cut_red_sandstone", + "conversation": "Let's work together to craft an cut_red_sandstone.", + "initial_inventory": { + "0": { + "red_sandstone": 1 + }, + "1": { + "red_sandstone": 1 + }, + "2": { + "red_sandstone": 1 + }, + "3": { + "red_sandstone": 1 + } + }, + "agent_count": 4, + "target": "cut_red_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_1_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 1, + "shears": 1 + }, + "2": { + "red_dye": 1 + }, + "3": { + "red_dye": 3 + } + }, + "agent_count": 4, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_pink_banner_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_wool": 1, + "stick": 1 + }, + "1": { + "pink_wool": 1 + }, + "2": { + "pink_wool": 3 + }, + "3": { + "pink_wool": 1 + } + }, + "agent_count": 4, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an spectral_arrow", + "conversation": "Let's work together to craft an spectral_arrow.", + "initial_inventory": { + "0": { + "glowstone_dust": 1, + "flint": 1 + }, + "1": { + "glowstone_dust": 1, + "stick": 1 + }, + "2": { + "glowstone_dust": 1, + "feather": 1 + }, + "3": { + "glowstone_dust": 1 + } + }, + "agent_count": 4, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_leggings_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_leggings", + "conversation": "Let's work together to craft an leather_leggings.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 4 + } + }, + "agent_count": 4, + "target": "leather_leggings", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an black_banner", + "conversation": "Let's work together to craft an black_banner.", + "initial_inventory": { + "0": { + "black_wool": 3, + "oak_planks": 2 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an spectral_arrow", + "conversation": "Let's work together to craft an spectral_arrow.", + "initial_inventory": { + "0": { + "glowstone_dust": 1, + "arrow": 1 + }, + "1": { + "glowstone_dust": 1 + }, + "2": { + "glowstone_dust": 1 + }, + "3": { + "glowstone_dust": 1 + } + }, + "agent_count": 4, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chest_minecart_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an chest_minecart", + "conversation": "Let's work together to craft an chest_minecart.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "iron_ingot": 1 + }, + "1": { + "oak_planks": 2, + "iron_ingot": 2 + }, + "2": { + "oak_planks": 2, + "iron_ingot": 1 + }, + "3": { + "oak_planks": 2, + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_wool": 1, + "stick": 1 + }, + "1": { + "white_wool": 3 + }, + "2": { + "white_wool": 1 + }, + "3": { + "white_wool": 1 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "blue_dye": 1 + }, + "1": { + "glass": 2, + "green_dye": 1 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an spectral_arrow", + "conversation": "Let's work together to craft an spectral_arrow.", + "initial_inventory": { + "0": { + "glowstone_dust": 1, + "arrow": 1 + }, + "1": { + "glowstone_dust": 1 + }, + "2": { + "glowstone_dust": 1 + }, + "3": { + "glowstone_dust": 1 + } + }, + "agent_count": 4, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_granite_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_granite", + "conversation": "Let's work together to craft an polished_granite.", + "initial_inventory": { + "0": { + "diorite": 1, + "quartz": 1 + }, + "1": { + "diorite": 1, + "quartz": 1 + }, + "2": { + "diorite": 1, + "quartz": 1 + }, + "3": { + "diorite": 1, + "quartz": 1 + } + }, + "agent_count": 4, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_wool": 1, + "stick": 1 + }, + "1": { + "white_wool": 3 + }, + "2": { + "white_wool": 1 + }, + "3": { + "white_wool": 1 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 3, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 1, + "black_wool": 1 + }, + "2": { + "red_dye": 1, + "black_wool": 1 + }, + "3": { + "red_dye": 1, + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_wool": 1, + "stick": 1 + }, + "1": { + "white_wool": 3 + }, + "2": { + "white_wool": 1 + }, + "3": { + "white_wool": 1 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "blue_dye": 1 + }, + "1": { + "glass": 2, + "green_dye": 1 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_granite_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_granite", + "conversation": "Let's work together to craft an polished_granite.", + "initial_inventory": { + "0": { + "granite": 1 + }, + "1": { + "granite": 1 + }, + "2": { + "granite": 1 + }, + "3": { + "granite": 1 + } + }, + "agent_count": 4, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 1, + "oak_planks": 2 + }, + "1": { + "blue_wool": 3 + }, + "2": { + "blue_wool": 1 + }, + "3": { + "blue_wool": 1 + } + }, + "agent_count": 4, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cut_red_sandstone_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an cut_red_sandstone", + "conversation": "Let's work together to craft an cut_red_sandstone.", + "initial_inventory": { + "0": { + "red_sandstone": 1 + }, + "1": { + "red_sandstone": 1 + }, + "2": { + "red_sandstone": 1 + }, + "3": { + "red_sandstone": 1 + } + }, + "agent_count": 4, + "target": "cut_red_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_2_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "shears": 1 + }, + "2": { + "pink_dye": 3 + }, + "3": { + "pink_dye": 1 + } + }, + "agent_count": 4, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_banner_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_wool": 3, + "stick": 1 + }, + "1": { + "cyan_wool": 1 + }, + "2": { + "cyan_wool": 1 + }, + "3": { + "cyan_wool": 1 + } + }, + "agent_count": 4, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bookshelf_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an bookshelf", + "conversation": "Let's work together to craft an bookshelf.", + "initial_inventory": { + "0": { + "oak_log": 2, + "paper": 3 + }, + "1": { + "paper": 2, + "leather": 3 + }, + "2": { + "paper": 2 + }, + "3": { + "paper": 2 + } + }, + "agent_count": 4, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_oxidized_cut_copper_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an waxed_oxidized_cut_copper", + "conversation": "Let's work together to craft an waxed_oxidized_cut_copper.", + "initial_inventory": { + "0": { + "waxed_oxidized_copper": 1 + }, + "1": { + "waxed_oxidized_copper": 1 + }, + "2": { + "waxed_oxidized_copper": 1 + }, + "3": { + "waxed_oxidized_copper": 1 + } + }, + "agent_count": 4, + "target": "waxed_oxidized_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "blue_dye": 1 + }, + "1": { + "glass": 2, + "green_dye": 1 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_oxidized_cut_copper_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an waxed_oxidized_cut_copper", + "conversation": "Let's work together to craft an waxed_oxidized_cut_copper.", + "initial_inventory": { + "0": { + "waxed_oxidized_copper": 1 + }, + "1": { + "waxed_oxidized_copper": 1 + }, + "2": { + "waxed_oxidized_copper": 1 + }, + "3": { + "waxed_oxidized_copper": 1 + } + }, + "agent_count": 4, + "target": "waxed_oxidized_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "black_wool": 1 + }, + "2": { + "pink_dye": 1, + "black_wool": 3 + }, + "3": { + "pink_dye": 3, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_quartz_bricks_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an quartz_bricks", + "conversation": "Let's work together to craft an quartz_bricks.", + "initial_inventory": { + "0": { + "quartz_block": 1 + }, + "1": { + "quartz_block": 1 + }, + "2": { + "quartz_block": 1 + }, + "3": { + "quartz_block": 1 + } + }, + "agent_count": 4, + "target": "quartz_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_granite_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_granite", + "conversation": "Let's work together to craft an polished_granite.", + "initial_inventory": { + "0": { + "diorite": 1, + "quartz": 1 + }, + "1": { + "diorite": 1, + "quartz": 1 + }, + "2": { + "diorite": 1, + "quartz": 1 + }, + "3": { + "diorite": 1, + "quartz": 1 + } + }, + "agent_count": 4, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_wool": 3, + "stick": 1 + }, + "1": { + "cyan_wool": 1 + }, + "2": { + "cyan_wool": 1 + }, + "3": { + "cyan_wool": 1 + } + }, + "agent_count": 4, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chest_minecart_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an chest_minecart", + "conversation": "Let's work together to craft an chest_minecart.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "iron_ingot": 1 + }, + "1": { + "oak_planks": 2, + "iron_ingot": 2 + }, + "2": { + "oak_planks": 2, + "iron_ingot": 1 + }, + "3": { + "oak_planks": 2, + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cut_red_sandstone_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an cut_red_sandstone", + "conversation": "Let's work together to craft an cut_red_sandstone.", + "initial_inventory": { + "0": { + "red_sandstone": 1 + }, + "1": { + "red_sandstone": 1 + }, + "2": { + "red_sandstone": 1 + }, + "3": { + "red_sandstone": 1 + } + }, + "agent_count": 4, + "target": "cut_red_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 1, + "black_wool": 1 + }, + "2": { + "cyan_dye": 3, + "black_wool": 3 + }, + "3": { + "cyan_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cut_red_sandstone_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an cut_red_sandstone", + "conversation": "Let's work together to craft an cut_red_sandstone.", + "initial_inventory": { + "0": { + "red_sandstone": 1 + }, + "1": { + "red_sandstone": 1 + }, + "2": { + "red_sandstone": 1 + }, + "3": { + "red_sandstone": 1 + } + }, + "agent_count": 4, + "target": "cut_red_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 1, + "black_wool": 1 + }, + "2": { + "cyan_dye": 3, + "black_wool": 3 + }, + "3": { + "cyan_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 1, + "stick": 1 + }, + "1": { + "blue_wool": 1 + }, + "2": { + "blue_wool": 1 + }, + "3": { + "blue_wool": 3 + } + }, + "agent_count": 4, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 1, + "black_wool": 1 + }, + "2": { + "cyan_dye": 3, + "black_wool": 3 + }, + "3": { + "cyan_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an spectral_arrow", + "conversation": "Let's work together to craft an spectral_arrow.", + "initial_inventory": { + "0": { + "glowstone_dust": 1, + "arrow": 1 + }, + "1": { + "glowstone_dust": 1 + }, + "2": { + "glowstone_dust": 1 + }, + "3": { + "glowstone_dust": 1 + } + }, + "agent_count": 4, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "blue_dye": 1 + }, + "1": { + "glass": 2, + "green_dye": 1 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_quartz_bricks_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an quartz_bricks", + "conversation": "Let's work together to craft an quartz_bricks.", + "initial_inventory": { + "0": { + "quartz_block": 1 + }, + "1": { + "quartz_block": 1 + }, + "2": { + "quartz_block": 1 + }, + "3": { + "quartz_block": 1 + } + }, + "agent_count": 4, + "target": "quartz_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 1, + "oak_planks": 2 + }, + "1": { + "blue_wool": 3 + }, + "2": { + "blue_wool": 1 + }, + "3": { + "blue_wool": 1 + } + }, + "agent_count": 4, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dark_prismarine_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an dark_prismarine", + "conversation": "Let's work together to craft an dark_prismarine.", + "initial_inventory": { + "0": { + "prismarine_shard": 2, + "black_dye": 1 + }, + "1": { + "prismarine_shard": 2 + }, + "2": { + "prismarine_shard": 2 + }, + "3": { + "prismarine_shard": 2 + } + }, + "agent_count": 4, + "target": "dark_prismarine", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_1_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_dye": 1, + "oak_planks": 2 + }, + "1": { + "white_dye": 1, + "shears": 1 + }, + "2": { + "white_dye": 3 + }, + "3": { + "white_dye": 1 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_leather_leggings_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_leggings", + "conversation": "Let's work together to craft an leather_leggings.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 4 + } + }, + "agent_count": 4, + "target": "leather_leggings", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_dye": 3, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "white_dye": 1, + "black_wool": 1 + }, + "2": { + "white_dye": 1, + "black_wool": 1 + }, + "3": { + "white_dye": 1, + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_granite_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_granite", + "conversation": "Let's work together to craft an polished_granite.", + "initial_inventory": { + "0": { + "granite": 1 + }, + "1": { + "granite": 1 + }, + "2": { + "granite": 1 + }, + "3": { + "granite": 1 + } + }, + "agent_count": 4, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_granite_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_granite", + "conversation": "Let's work together to craft an polished_granite.", + "initial_inventory": { + "0": { + "diorite": 1, + "quartz": 1 + }, + "1": { + "diorite": 1, + "quartz": 1 + }, + "2": { + "diorite": 1, + "quartz": 1 + }, + "3": { + "diorite": 1, + "quartz": 1 + } + }, + "agent_count": 4, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "cyan_dye": 1 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 1, + "oak_planks": 2 + }, + "1": { + "blue_wool": 3 + }, + "2": { + "blue_wool": 1 + }, + "3": { + "blue_wool": 1 + } + }, + "agent_count": 4, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 1, + "stick": 1 + }, + "1": { + "blue_wool": 1 + }, + "2": { + "blue_wool": 1 + }, + "3": { + "blue_wool": 3 + } + }, + "agent_count": 4, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "black_wool": 1 + }, + "2": { + "pink_dye": 1, + "black_wool": 3 + }, + "3": { + "pink_dye": 3, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an black_banner", + "conversation": "Let's work together to craft an black_banner.", + "initial_inventory": { + "0": { + "black_wool": 1, + "stick": 1 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 1 + }, + "3": { + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bookshelf_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an bookshelf", + "conversation": "Let's work together to craft an bookshelf.", + "initial_inventory": { + "0": { + "oak_log": 2, + "paper": 3 + }, + "1": { + "paper": 2, + "leather": 3 + }, + "2": { + "paper": 2 + }, + "3": { + "paper": 2 + } + }, + "agent_count": 4, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_stained_glass_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_stained_glass", + "conversation": "Let's work together to craft an red_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "red_dye": 1 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "red_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 3, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 1, + "black_wool": 1 + }, + "2": { + "red_dye": 1, + "black_wool": 1 + }, + "3": { + "red_dye": 1, + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_slab": 1, + "bookshelf": 1 + }, + "1": { + "oak_slab": 1 + }, + "2": { + "oak_slab": 1 + }, + "3": { + "oak_slab": 1 + } + }, + "agent_count": 4, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chest_minecart_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an chest_minecart", + "conversation": "Let's work together to craft an chest_minecart.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "iron_ingot": 1 + }, + "1": { + "oak_planks": 2, + "iron_ingot": 2 + }, + "2": { + "oak_planks": 2, + "iron_ingot": 1 + }, + "3": { + "oak_planks": 2, + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dark_prismarine_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an dark_prismarine", + "conversation": "Let's work together to craft an dark_prismarine.", + "initial_inventory": { + "0": { + "prismarine_shard": 2, + "black_dye": 1 + }, + "1": { + "prismarine_shard": 2 + }, + "2": { + "prismarine_shard": 2 + }, + "3": { + "prismarine_shard": 2 + } + }, + "agent_count": 4, + "target": "dark_prismarine", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_2_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 1, + "shears": 1 + }, + "2": { + "red_dye": 1 + }, + "3": { + "red_dye": 3 + } + }, + "agent_count": 4, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_waxed_oxidized_cut_copper_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an waxed_oxidized_cut_copper", + "conversation": "Let's work together to craft an waxed_oxidized_cut_copper.", + "initial_inventory": { + "0": { + "waxed_oxidized_copper": 1 + }, + "1": { + "waxed_oxidized_copper": 1 + }, + "2": { + "waxed_oxidized_copper": 1 + }, + "3": { + "waxed_oxidized_copper": 1 + } + }, + "agent_count": 4, + "target": "waxed_oxidized_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an spectral_arrow", + "conversation": "Let's work together to craft an spectral_arrow.", + "initial_inventory": { + "0": { + "glowstone_dust": 1, + "flint": 1 + }, + "1": { + "glowstone_dust": 1, + "stick": 1 + }, + "2": { + "glowstone_dust": 1, + "feather": 1 + }, + "3": { + "glowstone_dust": 1 + } + }, + "agent_count": 4, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dark_prismarine_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an dark_prismarine", + "conversation": "Let's work together to craft an dark_prismarine.", + "initial_inventory": { + "0": { + "prismarine_shard": 2, + "black_dye": 1 + }, + "1": { + "prismarine_shard": 2 + }, + "2": { + "prismarine_shard": 2 + }, + "3": { + "prismarine_shard": 2 + } + }, + "agent_count": 4, + "target": "dark_prismarine", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_0_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_dye": 1, + "oak_planks": 2 + }, + "1": { + "white_dye": 1, + "shears": 1 + }, + "2": { + "white_dye": 3 + }, + "3": { + "white_dye": 1 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_red_banner_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_wool": 3, + "stick": 1 + }, + "1": { + "red_wool": 1 + }, + "2": { + "red_wool": 1 + }, + "3": { + "red_wool": 1 + } + }, + "agent_count": 4, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_1_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_dye": 3, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 1, + "shears": 1 + }, + "2": { + "cyan_dye": 1 + }, + "3": { + "cyan_dye": 1 + } + }, + "agent_count": 4, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_smoker_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an smoker", + "conversation": "Let's work together to craft an smoker.", + "initial_inventory": { + "0": { + "dark_oak_log": 1, + "furnace": 1 + }, + "1": { + "dark_oak_log": 1 + }, + "2": { + "dark_oak_log": 1 + }, + "3": { + "dark_oak_log": 1 + } + }, + "agent_count": 4, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_0_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 1, + "shears": 1 + }, + "2": { + "red_dye": 1 + }, + "3": { + "red_dye": 3 + } + }, + "agent_count": 4, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_smoker_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an smoker", + "conversation": "Let's work together to craft an smoker.", + "initial_inventory": { + "0": { + "dark_oak_log": 1, + "furnace": 1 + }, + "1": { + "dark_oak_log": 1 + }, + "2": { + "dark_oak_log": 1 + }, + "3": { + "dark_oak_log": 1 + } + }, + "agent_count": 4, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an black_banner", + "conversation": "Let's work together to craft an black_banner.", + "initial_inventory": { + "0": { + "black_wool": 3, + "oak_planks": 2 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an spectral_arrow", + "conversation": "Let's work together to craft an spectral_arrow.", + "initial_inventory": { + "0": { + "glowstone_dust": 1, + "arrow": 1 + }, + "1": { + "glowstone_dust": 1 + }, + "2": { + "glowstone_dust": 1 + }, + "3": { + "glowstone_dust": 1 + } + }, + "agent_count": 4, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an spectral_arrow", + "conversation": "Let's work together to craft an spectral_arrow.", + "initial_inventory": { + "0": { + "glowstone_dust": 1, + "flint": 1 + }, + "1": { + "glowstone_dust": 1, + "stick": 1 + }, + "2": { + "glowstone_dust": 1, + "feather": 1 + }, + "3": { + "glowstone_dust": 1 + } + }, + "agent_count": 4, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 1, + "stick": 1 + }, + "1": { + "blue_wool": 1 + }, + "2": { + "blue_wool": 1 + }, + "3": { + "blue_wool": 3 + } + }, + "agent_count": 4, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bookshelf_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an bookshelf", + "conversation": "Let's work together to craft an bookshelf.", + "initial_inventory": { + "0": { + "oak_log": 2, + "paper": 3 + }, + "1": { + "paper": 2, + "leather": 3 + }, + "2": { + "paper": 2 + }, + "3": { + "paper": 2 + } + }, + "agent_count": 4, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "cyan_dye": 1 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "black_wool": 1 + }, + "2": { + "pink_dye": 1, + "black_wool": 3 + }, + "3": { + "pink_dye": 3, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_wool": 1, + "stick": 1 + }, + "1": { + "pink_wool": 1 + }, + "2": { + "pink_wool": 3 + }, + "3": { + "pink_wool": 1 + } + }, + "agent_count": 4, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_2_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_dye": 1, + "oak_planks": 2 + }, + "1": { + "white_dye": 1, + "shears": 1 + }, + "2": { + "white_dye": 3 + }, + "3": { + "white_dye": 1 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_pink_banner_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_wool": 1, + "stick": 1 + }, + "1": { + "pink_wool": 1 + }, + "2": { + "pink_wool": 3 + }, + "3": { + "pink_wool": 1 + } + }, + "agent_count": 4, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bookshelf_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an bookshelf", + "conversation": "Let's work together to craft an bookshelf.", + "initial_inventory": { + "0": { + "oak_log": 2, + "paper": 3 + }, + "1": { + "paper": 2, + "leather": 3 + }, + "2": { + "paper": 2 + }, + "3": { + "paper": 2 + } + }, + "agent_count": 4, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_leggings_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_leggings", + "conversation": "Let's work together to craft an leather_leggings.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 4 + } + }, + "agent_count": 4, + "target": "leather_leggings", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an spectral_arrow", + "conversation": "Let's work together to craft an spectral_arrow.", + "initial_inventory": { + "0": { + "glowstone_dust": 1, + "flint": 1 + }, + "1": { + "glowstone_dust": 1, + "stick": 1 + }, + "2": { + "glowstone_dust": 1, + "feather": 1 + }, + "3": { + "glowstone_dust": 1 + } + }, + "agent_count": 4, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an black_banner", + "conversation": "Let's work together to craft an black_banner.", + "initial_inventory": { + "0": { + "black_wool": 1, + "stick": 1 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 1 + }, + "3": { + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_0_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_dye": 3, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 1, + "shears": 1 + }, + "2": { + "cyan_dye": 1 + }, + "3": { + "cyan_dye": 1 + } + }, + "agent_count": 4, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_smoker_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an smoker", + "conversation": "Let's work together to craft an smoker.", + "initial_inventory": { + "0": { + "dark_oak_log": 1, + "furnace": 1 + }, + "1": { + "dark_oak_log": 1 + }, + "2": { + "dark_oak_log": 1 + }, + "3": { + "dark_oak_log": 1 + } + }, + "agent_count": 4, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_3_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_dye": 3, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 1, + "shears": 1 + }, + "2": { + "cyan_dye": 1 + }, + "3": { + "cyan_dye": 1 + } + }, + "agent_count": 4, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lectern_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_slab": 1, + "bookshelf": 1 + }, + "1": { + "oak_slab": 1 + }, + "2": { + "oak_slab": 1 + }, + "3": { + "oak_slab": 1 + } + }, + "agent_count": 4, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 3, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 1, + "black_wool": 1 + }, + "2": { + "red_dye": 1, + "black_wool": 1 + }, + "3": { + "red_dye": 1, + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_wool": 3, + "stick": 1 + }, + "1": { + "red_wool": 1 + }, + "2": { + "red_wool": 1 + }, + "3": { + "red_wool": 1 + } + }, + "agent_count": 4, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_granite_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_granite", + "conversation": "Let's work together to craft an polished_granite.", + "initial_inventory": { + "0": { + "diorite": 1, + "quartz": 1 + }, + "1": { + "diorite": 1, + "quartz": 1 + }, + "2": { + "diorite": 1, + "quartz": 1 + }, + "3": { + "diorite": 1, + "quartz": 1 + } + }, + "agent_count": 4, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_stained_glass_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_stained_glass", + "conversation": "Let's work together to craft an red_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "red_dye": 1 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "red_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "black_wool": 1 + }, + "2": { + "pink_dye": 1, + "black_wool": 3 + }, + "3": { + "pink_dye": 3, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_granite_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_granite", + "conversation": "Let's work together to craft an polished_granite.", + "initial_inventory": { + "0": { + "granite": 1 + }, + "1": { + "granite": 1 + }, + "2": { + "granite": 1 + }, + "3": { + "granite": 1 + } + }, + "agent_count": 4, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 1, + "oak_planks": 2 + }, + "1": { + "blue_wool": 3 + }, + "2": { + "blue_wool": 1 + }, + "3": { + "blue_wool": 1 + } + }, + "agent_count": 4, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_wool": 1, + "stick": 1 + }, + "1": { + "white_wool": 3 + }, + "2": { + "white_wool": 1 + }, + "3": { + "white_wool": 1 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_2_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_dye": 3, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 1, + "shears": 1 + }, + "2": { + "cyan_dye": 1 + }, + "3": { + "cyan_dye": 1 + } + }, + "agent_count": 4, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_red_banner_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_wool": 3, + "stick": 1 + }, + "1": { + "red_wool": 1 + }, + "2": { + "red_wool": 1 + }, + "3": { + "red_wool": 1 + } + }, + "agent_count": 4, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 3, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 1, + "black_wool": 1 + }, + "2": { + "red_dye": 1, + "black_wool": 1 + }, + "3": { + "red_dye": 1, + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_smoker_0_with_plan_missing_furnace_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an smoker", + "conversation": "Let's work together to craft an smoker.", + "initial_inventory": { + "0": { + "dark_oak_log": 1 + }, + "1": { + "dark_oak_log": 1 + }, + "2": { + "dark_oak_log": 1 + }, + "3": { + "dark_oak_log": 1 + } + }, + "agent_count": 4, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "furnace" + ] + }, + "multiagent_crafting_pink_banner_1_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "shears": 1 + }, + "2": { + "pink_dye": 3 + }, + "3": { + "pink_dye": 1 + } + }, + "agent_count": 4, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lectern_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_slab": 1, + "bookshelf": 1 + }, + "1": { + "oak_slab": 1 + }, + "2": { + "oak_slab": 1 + }, + "3": { + "oak_slab": 1 + } + }, + "agent_count": 4, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an black_banner", + "conversation": "Let's work together to craft an black_banner.", + "initial_inventory": { + "0": { + "black_wool": 3, + "oak_planks": 2 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an black_banner", + "conversation": "Let's work together to craft an black_banner.", + "initial_inventory": { + "0": { + "black_wool": 1, + "stick": 1 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 1 + }, + "3": { + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_dye": 3, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "white_dye": 1, + "black_wool": 1 + }, + "2": { + "white_dye": 1, + "black_wool": 1 + }, + "3": { + "white_dye": 1, + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_smoker_3_with_plan_missing_furnace_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an smoker", + "conversation": "Let's work together to craft an smoker.", + "initial_inventory": { + "0": { + "dark_oak_log": 1 + }, + "1": { + "dark_oak_log": 1 + }, + "2": { + "dark_oak_log": 1 + }, + "3": { + "dark_oak_log": 1 + } + }, + "agent_count": 4, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "furnace" + ] + }, + "multiagent_crafting_white_banner_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_dye": 3, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "white_dye": 1, + "black_wool": 1 + }, + "2": { + "white_dye": 1, + "black_wool": 1 + }, + "3": { + "white_dye": 1, + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "cyan_dye": 1 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chest_minecart_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an chest_minecart", + "conversation": "Let's work together to craft an chest_minecart.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "iron_ingot": 1 + }, + "1": { + "oak_planks": 2, + "iron_ingot": 2 + }, + "2": { + "oak_planks": 2, + "iron_ingot": 1 + }, + "3": { + "oak_planks": 2, + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_wool": 3, + "stick": 1 + }, + "1": { + "cyan_wool": 1 + }, + "2": { + "cyan_wool": 1 + }, + "3": { + "cyan_wool": 1 + } + }, + "agent_count": 4, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "cyan_dye": 1 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_slab": 1, + "bookshelf": 1 + }, + "1": { + "oak_slab": 1 + }, + "2": { + "oak_slab": 1 + }, + "3": { + "oak_slab": 1 + } + }, + "agent_count": 4, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_smoker_2_with_plan_missing_furnace_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an smoker", + "conversation": "Let's work together to craft an smoker.", + "initial_inventory": { + "0": { + "dark_oak_log": 1 + }, + "1": { + "dark_oak_log": 1 + }, + "2": { + "dark_oak_log": 1 + }, + "3": { + "dark_oak_log": 1 + } + }, + "agent_count": 4, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "furnace" + ] + }, + "multiagent_crafting_blue_banner_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 1, + "stick": 1 + }, + "1": { + "blue_wool": 1 + }, + "2": { + "blue_wool": 1 + }, + "3": { + "blue_wool": 3 + } + }, + "agent_count": 4, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_oxidized_cut_copper_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an waxed_oxidized_cut_copper", + "conversation": "Let's work together to craft an waxed_oxidized_cut_copper.", + "initial_inventory": { + "0": { + "waxed_oxidized_copper": 1 + }, + "1": { + "waxed_oxidized_copper": 1 + }, + "2": { + "waxed_oxidized_copper": 1 + }, + "3": { + "waxed_oxidized_copper": 1 + } + }, + "agent_count": 4, + "target": "waxed_oxidized_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dark_prismarine_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an dark_prismarine", + "conversation": "Let's work together to craft an dark_prismarine.", + "initial_inventory": { + "0": { + "prismarine_shard": 2, + "black_dye": 1 + }, + "1": { + "prismarine_shard": 2 + }, + "2": { + "prismarine_shard": 2 + }, + "3": { + "prismarine_shard": 2 + } + }, + "agent_count": 4, + "target": "dark_prismarine", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_stained_glass_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_stained_glass", + "conversation": "Let's work together to craft an red_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "red_dye": 1 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "red_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an black_banner", + "conversation": "Let's work together to craft an black_banner.", + "initial_inventory": { + "0": { + "black_wool": 1, + "stick": 1 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 1 + }, + "3": { + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_wool": 3, + "stick": 1 + }, + "1": { + "red_wool": 1 + }, + "2": { + "red_wool": 1 + }, + "3": { + "red_wool": 1 + } + }, + "agent_count": 4, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_smoker_1_with_plan_missing_furnace_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an smoker", + "conversation": "Let's work together to craft an smoker.", + "initial_inventory": { + "0": { + "dark_oak_log": 1 + }, + "1": { + "dark_oak_log": 1 + }, + "2": { + "dark_oak_log": 1 + }, + "3": { + "dark_oak_log": 1 + } + }, + "agent_count": 4, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "furnace" + ] + }, + "multiagent_crafting_smoker_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an smoker", + "conversation": "Let's work together to craft an smoker.", + "initial_inventory": { + "0": { + "dark_oak_log": 1, + "furnace": 1 + }, + "1": { + "dark_oak_log": 1 + }, + "2": { + "dark_oak_log": 1 + }, + "3": { + "dark_oak_log": 1 + } + }, + "agent_count": 4, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_0_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an spectral_arrow", + "conversation": "Let's work together to craft an spectral_arrow.", + "initial_inventory": { + "0": { + "glowstone_dust": 1, + "flint": 1 + }, + "1": { + "glowstone_dust": 1, + "oak_planks": 2 + }, + "2": { + "glowstone_dust": 1, + "feather": 1 + }, + "3": { + "glowstone_dust": 1 + } + }, + "agent_count": 4, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_1_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an spectral_arrow", + "conversation": "Let's work together to craft an spectral_arrow.", + "initial_inventory": { + "0": { + "glowstone_dust": 1, + "flint": 1 + }, + "1": { + "glowstone_dust": 1, + "oak_planks": 2 + }, + "2": { + "glowstone_dust": 1, + "feather": 1 + }, + "3": { + "glowstone_dust": 1 + } + }, + "agent_count": 4, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_2_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an spectral_arrow", + "conversation": "Let's work together to craft an spectral_arrow.", + "initial_inventory": { + "0": { + "glowstone_dust": 1, + "flint": 1 + }, + "1": { + "glowstone_dust": 1, + "oak_planks": 2 + }, + "2": { + "glowstone_dust": 1, + "feather": 1 + }, + "3": { + "glowstone_dust": 1 + } + }, + "agent_count": 4, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_3_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an spectral_arrow", + "conversation": "Let's work together to craft an spectral_arrow.", + "initial_inventory": { + "0": { + "glowstone_dust": 1, + "flint": 1 + }, + "1": { + "glowstone_dust": 1, + "oak_planks": 2 + }, + "2": { + "glowstone_dust": 1, + "feather": 1 + }, + "3": { + "glowstone_dust": 1 + } + }, + "agent_count": 4, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_0_with_plan_missing_black_wool_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "bone_meal": 1, + "shears": 1 + }, + "2": { + "bone_meal": 3 + }, + "3": { + "bone_meal": 1 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_1_with_plan_missing_black_wool_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "bone_meal": 1, + "shears": 1 + }, + "2": { + "bone_meal": 3 + }, + "3": { + "bone_meal": 1 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_2_with_plan_missing_black_wool_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "bone_meal": 1, + "shears": 1 + }, + "2": { + "bone_meal": 3 + }, + "3": { + "bone_meal": 1 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_3_with_plan_missing_black_wool_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "bone_meal": 1, + "shears": 1 + }, + "2": { + "bone_meal": 3 + }, + "3": { + "bone_meal": 1 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_0_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 1, + "black_wool": 1, + "oak_log": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "bone_meal": 1, + "black_wool": 1 + }, + "3": { + "bone_meal": 1, + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_1_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 1, + "black_wool": 1, + "oak_log": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "bone_meal": 1, + "black_wool": 1 + }, + "3": { + "bone_meal": 1, + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_2_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 1, + "black_wool": 1, + "oak_log": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "bone_meal": 1, + "black_wool": 1 + }, + "3": { + "bone_meal": 1, + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_3_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 1, + "black_wool": 1, + "oak_log": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "bone_meal": 1, + "black_wool": 1 + }, + "3": { + "bone_meal": 1, + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_0_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "blue_dye": 3, + "black_wool": 1 + }, + "1": { + "green_dye": 3, + "black_wool": 3 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_1_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "blue_dye": 3, + "black_wool": 1 + }, + "1": { + "green_dye": 3, + "black_wool": 3 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_2_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "blue_dye": 3, + "black_wool": 1 + }, + "1": { + "green_dye": 3, + "black_wool": 3 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_3_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "blue_dye": 3, + "black_wool": 1 + }, + "1": { + "green_dye": 3, + "black_wool": 3 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_0_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_log": 3, + "paper": 2 + }, + "1": { + "paper": 3, + "leather": 3 + }, + "2": { + "paper": 2 + }, + "3": { + "paper": 2 + } + }, + "agent_count": 4, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_1_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_log": 3, + "paper": 2 + }, + "1": { + "paper": 3, + "leather": 3 + }, + "2": { + "paper": 2 + }, + "3": { + "paper": 2 + } + }, + "agent_count": 4, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_2_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_log": 3, + "paper": 2 + }, + "1": { + "paper": 3, + "leather": 3 + }, + "2": { + "paper": 2 + }, + "3": { + "paper": 2 + } + }, + "agent_count": 4, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_3_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_log": 3, + "paper": 2 + }, + "1": { + "paper": 3, + "leather": 3 + }, + "2": { + "paper": 2 + }, + "3": { + "paper": 2 + } + }, + "agent_count": 4, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/test_tasks/tasks_4_agents_stats.txt b/tasks/crafting_tasks/test_tasks/tasks_4_agents_stats.txt new file mode 100644 index 0000000..01e38ce --- /dev/null +++ b/tasks/crafting_tasks/test_tasks/tasks_4_agents_stats.txt @@ -0,0 +1,14 @@ +{ + "num_tasks": 153, + "avg_depth": 2.1578947368421053, + "std_depth": 0.7443229275647865, + "num_tasks_based_depth": { + "0": 72, + "1": 60, + "2": 20 + }, + "num_missing_resources": { + "0": 128, + "1": 24 + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/test_tasks/tasks_5_agents.json b/tasks/crafting_tasks/test_tasks/tasks_5_agents.json new file mode 100644 index 0000000..d2cf606 --- /dev/null +++ b/tasks/crafting_tasks/test_tasks/tasks_5_agents.json @@ -0,0 +1,5777 @@ +{ + "multiagent_crafting_cyan_banner_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_wool": 2, + "stick": 1 + }, + "1": { + "cyan_wool": 1 + }, + "2": { + "cyan_wool": 1 + }, + "3": { + "cyan_wool": 1 + }, + "4": { + "cyan_wool": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_0_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_dye": 2, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 1, + "shears": 1 + }, + "2": { + "cyan_dye": 1 + }, + "3": { + "cyan_dye": 1 + }, + "4": { + "cyan_dye": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_wool": 1, + "stick": 1 + }, + "1": { + "white_wool": 2 + }, + "2": { + "white_wool": 1 + }, + "3": { + "white_wool": 1 + }, + "4": { + "white_wool": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_4_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_dye": 2, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 1, + "shears": 1 + }, + "2": { + "cyan_dye": 1 + }, + "3": { + "cyan_dye": 1 + }, + "4": { + "cyan_dye": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_black_banner_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an black_banner", + "conversation": "Let's work together to craft an black_banner.", + "initial_inventory": { + "0": { + "black_wool": 1, + "stick": 1 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "glass": 1, + "blue_dye": 1 + }, + "1": { + "glass": 1, + "green_dye": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 4 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_wool": 1, + "stick": 1 + }, + "1": { + "red_wool": 1 + }, + "2": { + "red_wool": 1 + }, + "3": { + "red_wool": 1 + }, + "4": { + "red_wool": 2 + } + }, + "agent_count": 5, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "white_dye": 1, + "black_wool": 1 + }, + "2": { + "white_dye": 2, + "black_wool": 1 + }, + "3": { + "white_dye": 1, + "black_wool": 2 + }, + "4": { + "white_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an black_banner", + "conversation": "Let's work together to craft an black_banner.", + "initial_inventory": { + "0": { + "black_wool": 1, + "stick": 1 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "white_dye": 1, + "black_wool": 1 + }, + "2": { + "white_dye": 2, + "black_wool": 1 + }, + "3": { + "white_dye": 1, + "black_wool": 2 + }, + "4": { + "white_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_wool": 1, + "stick": 1 + }, + "1": { + "white_wool": 2 + }, + "2": { + "white_wool": 1 + }, + "3": { + "white_wool": 1 + }, + "4": { + "white_wool": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_3_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_dye": 2, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 1, + "shears": 1 + }, + "2": { + "cyan_dye": 1 + }, + "3": { + "cyan_dye": 1 + }, + "4": { + "cyan_dye": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_blue_banner_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 1, + "stick": 1 + }, + "1": { + "blue_wool": 1 + }, + "2": { + "blue_wool": 2 + }, + "3": { + "blue_wool": 1 + }, + "4": { + "blue_wool": 1 + } + }, + "agent_count": 5, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "white_dye": 1, + "black_wool": 1 + }, + "2": { + "white_dye": 2, + "black_wool": 1 + }, + "3": { + "white_dye": 1, + "black_wool": 2 + }, + "4": { + "white_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_wool": 1, + "stick": 1 + }, + "1": { + "pink_wool": 2 + }, + "2": { + "pink_wool": 1 + }, + "3": { + "pink_wool": 1 + }, + "4": { + "pink_wool": 1 + } + }, + "agent_count": 5, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "black_wool": 1 + }, + "2": { + "pink_dye": 1, + "black_wool": 1 + }, + "3": { + "pink_dye": 1, + "black_wool": 1 + }, + "4": { + "pink_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an black_banner", + "conversation": "Let's work together to craft an black_banner.", + "initial_inventory": { + "0": { + "black_wool": 1, + "stick": 1 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_0_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "shears": 1 + }, + "2": { + "pink_dye": 1 + }, + "3": { + "pink_dye": 1 + }, + "4": { + "pink_dye": 2 + } + }, + "agent_count": 5, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_leather_leggings_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an leather_leggings", + "conversation": "Let's work together to craft an leather_leggings.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 3 + }, + "3": { + "leather": 1 + }, + "4": { + "leather": 1 + } + }, + "agent_count": 5, + "target": "leather_leggings", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chest_minecart_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an chest_minecart", + "conversation": "Let's work together to craft an chest_minecart.", + "initial_inventory": { + "0": { + "oak_planks": 4, + "iron_ingot": 1 + }, + "1": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "2": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "3": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "4": { + "oak_planks": 1, + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_wool": 2, + "stick": 1 + }, + "1": { + "cyan_wool": 1 + }, + "2": { + "cyan_wool": 1 + }, + "3": { + "cyan_wool": 1 + }, + "4": { + "cyan_wool": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "glass": 1, + "blue_dye": 1 + }, + "1": { + "glass": 1, + "green_dye": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 4 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_wool": 2, + "stick": 1 + }, + "1": { + "cyan_wool": 1 + }, + "2": { + "cyan_wool": 1 + }, + "3": { + "cyan_wool": 1 + }, + "4": { + "cyan_wool": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an black_banner", + "conversation": "Let's work together to craft an black_banner.", + "initial_inventory": { + "0": { + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 2 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "glass": 1, + "cyan_dye": 1 + }, + "1": { + "glass": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 4 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an black_banner", + "conversation": "Let's work together to craft an black_banner.", + "initial_inventory": { + "0": { + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 2 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_stained_glass_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_stained_glass", + "conversation": "Let's work together to craft an red_stained_glass.", + "initial_inventory": { + "0": { + "glass": 1, + "red_dye": 1 + }, + "1": { + "glass": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 1 + }, + "4": { + "glass": 4 + } + }, + "agent_count": 5, + "target": "red_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_2_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_dye": 1, + "oak_planks": 2 + }, + "1": { + "white_dye": 1, + "shears": 1 + }, + "2": { + "white_dye": 2 + }, + "3": { + "white_dye": 1 + }, + "4": { + "white_dye": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_dark_prismarine_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an dark_prismarine", + "conversation": "Let's work together to craft an dark_prismarine.", + "initial_inventory": { + "0": { + "prismarine_shard": 1, + "black_dye": 1 + }, + "1": { + "prismarine_shard": 1 + }, + "2": { + "prismarine_shard": 1 + }, + "3": { + "prismarine_shard": 1 + }, + "4": { + "prismarine_shard": 4 + } + }, + "agent_count": 5, + "target": "dark_prismarine", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_1_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_dye": 2, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 1, + "shears": 1 + }, + "2": { + "cyan_dye": 1 + }, + "3": { + "cyan_dye": 1 + }, + "4": { + "cyan_dye": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_stained_glass_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "glass": 1, + "cyan_dye": 1 + }, + "1": { + "glass": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 4 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 1, + "black_wool": 1 + }, + "2": { + "cyan_dye": 2, + "black_wool": 2 + }, + "3": { + "cyan_dye": 1, + "black_wool": 1 + }, + "4": { + "cyan_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_leggings_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an leather_leggings", + "conversation": "Let's work together to craft an leather_leggings.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 3 + }, + "3": { + "leather": 1 + }, + "4": { + "leather": 1 + } + }, + "agent_count": 5, + "target": "leather_leggings", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 1, + "black_wool": 2 + }, + "2": { + "red_dye": 1, + "black_wool": 1 + }, + "3": { + "red_dye": 2, + "black_wool": 1 + }, + "4": { + "red_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_stained_glass_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_stained_glass", + "conversation": "Let's work together to craft an red_stained_glass.", + "initial_inventory": { + "0": { + "glass": 1, + "red_dye": 1 + }, + "1": { + "glass": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 1 + }, + "4": { + "glass": 4 + } + }, + "agent_count": 5, + "target": "red_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "black_wool": 1 + }, + "2": { + "pink_dye": 1, + "black_wool": 1 + }, + "3": { + "pink_dye": 1, + "black_wool": 1 + }, + "4": { + "pink_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_wool": 1, + "stick": 1 + }, + "1": { + "red_wool": 1 + }, + "2": { + "red_wool": 1 + }, + "3": { + "red_wool": 1 + }, + "4": { + "red_wool": 2 + } + }, + "agent_count": 5, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_0_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_dye": 1, + "oak_planks": 2 + }, + "1": { + "white_dye": 1, + "shears": 1 + }, + "2": { + "white_dye": 2 + }, + "3": { + "white_dye": 1 + }, + "4": { + "white_dye": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_dark_prismarine_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an dark_prismarine", + "conversation": "Let's work together to craft an dark_prismarine.", + "initial_inventory": { + "0": { + "prismarine_shard": 1, + "black_dye": 1 + }, + "1": { + "prismarine_shard": 1 + }, + "2": { + "prismarine_shard": 1 + }, + "3": { + "prismarine_shard": 1 + }, + "4": { + "prismarine_shard": 4 + } + }, + "agent_count": 5, + "target": "dark_prismarine", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 1, + "oak_planks": 2 + }, + "1": { + "blue_wool": 1 + }, + "2": { + "blue_wool": 2 + }, + "3": { + "blue_wool": 1 + }, + "4": { + "blue_wool": 1 + } + }, + "agent_count": 5, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an black_banner", + "conversation": "Let's work together to craft an black_banner.", + "initial_inventory": { + "0": { + "black_wool": 1, + "stick": 1 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an black_banner", + "conversation": "Let's work together to craft an black_banner.", + "initial_inventory": { + "0": { + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 2 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an black_banner", + "conversation": "Let's work together to craft an black_banner.", + "initial_inventory": { + "0": { + "black_wool": 1, + "stick": 1 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 1, + "oak_planks": 2 + }, + "1": { + "blue_wool": 1 + }, + "2": { + "blue_wool": 2 + }, + "3": { + "blue_wool": 1 + }, + "4": { + "blue_wool": 1 + } + }, + "agent_count": 5, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_stained_glass_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_stained_glass", + "conversation": "Let's work together to craft an red_stained_glass.", + "initial_inventory": { + "0": { + "glass": 1, + "red_dye": 1 + }, + "1": { + "glass": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 1 + }, + "4": { + "glass": 4 + } + }, + "agent_count": 5, + "target": "red_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bookshelf_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an bookshelf", + "conversation": "Let's work together to craft an bookshelf.", + "initial_inventory": { + "0": { + "oak_log": 2, + "paper": 1 + }, + "1": { + "paper": 1, + "leather": 3 + }, + "2": { + "paper": 1 + }, + "3": { + "paper": 1 + }, + "4": { + "paper": 5 + } + }, + "agent_count": 5, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_stained_glass_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_stained_glass", + "conversation": "Let's work together to craft an red_stained_glass.", + "initial_inventory": { + "0": { + "glass": 1, + "red_dye": 1 + }, + "1": { + "glass": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 1 + }, + "4": { + "glass": 4 + } + }, + "agent_count": 5, + "target": "red_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bookshelf_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an bookshelf", + "conversation": "Let's work together to craft an bookshelf.", + "initial_inventory": { + "0": { + "oak_log": 2, + "paper": 1 + }, + "1": { + "paper": 1, + "leather": 3 + }, + "2": { + "paper": 1 + }, + "3": { + "paper": 1 + }, + "4": { + "paper": 5 + } + }, + "agent_count": 5, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_wool": 1, + "stick": 1 + }, + "1": { + "pink_wool": 2 + }, + "2": { + "pink_wool": 1 + }, + "3": { + "pink_wool": 1 + }, + "4": { + "pink_wool": 1 + } + }, + "agent_count": 5, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_3_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_dye": 1, + "oak_planks": 2 + }, + "1": { + "white_dye": 1, + "shears": 1 + }, + "2": { + "white_dye": 2 + }, + "3": { + "white_dye": 1 + }, + "4": { + "white_dye": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_banner_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_wool": 2, + "stick": 1 + }, + "1": { + "cyan_wool": 1 + }, + "2": { + "cyan_wool": 1 + }, + "3": { + "cyan_wool": 1 + }, + "4": { + "cyan_wool": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_2_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "shears": 1 + }, + "2": { + "pink_dye": 1 + }, + "3": { + "pink_dye": 1 + }, + "4": { + "pink_dye": 2 + } + }, + "agent_count": 5, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_pink_banner_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_wool": 1, + "stick": 1 + }, + "1": { + "pink_wool": 2 + }, + "2": { + "pink_wool": 1 + }, + "3": { + "pink_wool": 1 + }, + "4": { + "pink_wool": 1 + } + }, + "agent_count": 5, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 1, + "black_wool": 1 + }, + "2": { + "cyan_dye": 2, + "black_wool": 2 + }, + "3": { + "cyan_dye": 1, + "black_wool": 1 + }, + "4": { + "cyan_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_leggings_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an leather_leggings", + "conversation": "Let's work together to craft an leather_leggings.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 3 + }, + "3": { + "leather": 1 + }, + "4": { + "leather": 1 + } + }, + "agent_count": 5, + "target": "leather_leggings", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 1, + "oak_planks": 2 + }, + "1": { + "blue_wool": 1 + }, + "2": { + "blue_wool": 2 + }, + "3": { + "blue_wool": 1 + }, + "4": { + "blue_wool": 1 + } + }, + "agent_count": 5, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 1, + "stick": 1 + }, + "1": { + "blue_wool": 1 + }, + "2": { + "blue_wool": 2 + }, + "3": { + "blue_wool": 1 + }, + "4": { + "blue_wool": 1 + } + }, + "agent_count": 5, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_1_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "shears": 1 + }, + "2": { + "pink_dye": 1 + }, + "3": { + "pink_dye": 1 + }, + "4": { + "pink_dye": 2 + } + }, + "agent_count": 5, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_pink_banner_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_wool": 1, + "stick": 1 + }, + "1": { + "pink_wool": 2 + }, + "2": { + "pink_wool": 1 + }, + "3": { + "pink_wool": 1 + }, + "4": { + "pink_wool": 1 + } + }, + "agent_count": 5, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bookshelf_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an bookshelf", + "conversation": "Let's work together to craft an bookshelf.", + "initial_inventory": { + "0": { + "oak_log": 2, + "paper": 1 + }, + "1": { + "paper": 1, + "leather": 3 + }, + "2": { + "paper": 1 + }, + "3": { + "paper": 1 + }, + "4": { + "paper": 5 + } + }, + "agent_count": 5, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_wool": 1, + "stick": 1 + }, + "1": { + "red_wool": 1 + }, + "2": { + "red_wool": 1 + }, + "3": { + "red_wool": 1 + }, + "4": { + "red_wool": 2 + } + }, + "agent_count": 5, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bookshelf_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an bookshelf", + "conversation": "Let's work together to craft an bookshelf.", + "initial_inventory": { + "0": { + "oak_log": 2, + "paper": 1 + }, + "1": { + "paper": 1, + "leather": 3 + }, + "2": { + "paper": 1 + }, + "3": { + "paper": 1 + }, + "4": { + "paper": 5 + } + }, + "agent_count": 5, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_wool": 1, + "stick": 1 + }, + "1": { + "white_wool": 2 + }, + "2": { + "white_wool": 1 + }, + "3": { + "white_wool": 1 + }, + "4": { + "white_wool": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_4_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_dye": 1, + "oak_planks": 2 + }, + "1": { + "white_dye": 1, + "shears": 1 + }, + "2": { + "white_dye": 2 + }, + "3": { + "white_dye": 1 + }, + "4": { + "white_dye": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_wool": 1, + "stick": 1 + }, + "1": { + "white_wool": 2 + }, + "2": { + "white_wool": 1 + }, + "3": { + "white_wool": 1 + }, + "4": { + "white_wool": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bookshelf_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an bookshelf", + "conversation": "Let's work together to craft an bookshelf.", + "initial_inventory": { + "0": { + "oak_log": 2, + "paper": 1 + }, + "1": { + "paper": 1, + "leather": 3 + }, + "2": { + "paper": 1 + }, + "3": { + "paper": 1 + }, + "4": { + "paper": 5 + } + }, + "agent_count": 5, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dark_prismarine_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an dark_prismarine", + "conversation": "Let's work together to craft an dark_prismarine.", + "initial_inventory": { + "0": { + "prismarine_shard": 1, + "black_dye": 1 + }, + "1": { + "prismarine_shard": 1 + }, + "2": { + "prismarine_shard": 1 + }, + "3": { + "prismarine_shard": 1 + }, + "4": { + "prismarine_shard": 4 + } + }, + "agent_count": 5, + "target": "dark_prismarine", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "white_dye": 1, + "black_wool": 1 + }, + "2": { + "white_dye": 2, + "black_wool": 1 + }, + "3": { + "white_dye": 1, + "black_wool": 2 + }, + "4": { + "white_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_stained_glass_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_stained_glass", + "conversation": "Let's work together to craft an red_stained_glass.", + "initial_inventory": { + "0": { + "glass": 1, + "red_dye": 1 + }, + "1": { + "glass": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 1 + }, + "4": { + "glass": 4 + } + }, + "agent_count": 5, + "target": "red_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "black_wool": 1 + }, + "2": { + "pink_dye": 1, + "black_wool": 1 + }, + "3": { + "pink_dye": 1, + "black_wool": 1 + }, + "4": { + "pink_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_wool": 2, + "stick": 1 + }, + "1": { + "cyan_wool": 1 + }, + "2": { + "cyan_wool": 1 + }, + "3": { + "cyan_wool": 1 + }, + "4": { + "cyan_wool": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_1_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_dye": 1, + "oak_planks": 2 + }, + "1": { + "white_dye": 1, + "shears": 1 + }, + "2": { + "white_dye": 2 + }, + "3": { + "white_dye": 1 + }, + "4": { + "white_dye": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_wool": 1, + "stick": 1 + }, + "1": { + "white_wool": 2 + }, + "2": { + "white_wool": 1 + }, + "3": { + "white_wool": 1 + }, + "4": { + "white_wool": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_3_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "shears": 1 + }, + "2": { + "pink_dye": 1 + }, + "3": { + "pink_dye": 1 + }, + "4": { + "pink_dye": 2 + } + }, + "agent_count": 5, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_dark_prismarine_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an dark_prismarine", + "conversation": "Let's work together to craft an dark_prismarine.", + "initial_inventory": { + "0": { + "prismarine_shard": 1, + "black_dye": 1 + }, + "1": { + "prismarine_shard": 1 + }, + "2": { + "prismarine_shard": 1 + }, + "3": { + "prismarine_shard": 1 + }, + "4": { + "prismarine_shard": 4 + } + }, + "agent_count": 5, + "target": "dark_prismarine", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_4_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "shears": 1 + }, + "2": { + "pink_dye": 1 + }, + "3": { + "pink_dye": 1 + }, + "4": { + "pink_dye": 2 + } + }, + "agent_count": 5, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_dark_prismarine_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an dark_prismarine", + "conversation": "Let's work together to craft an dark_prismarine.", + "initial_inventory": { + "0": { + "prismarine_shard": 1, + "black_dye": 1 + }, + "1": { + "prismarine_shard": 1 + }, + "2": { + "prismarine_shard": 1 + }, + "3": { + "prismarine_shard": 1 + }, + "4": { + "prismarine_shard": 4 + } + }, + "agent_count": 5, + "target": "dark_prismarine", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 1, + "black_wool": 2 + }, + "2": { + "red_dye": 1, + "black_wool": 1 + }, + "3": { + "red_dye": 2, + "black_wool": 1 + }, + "4": { + "red_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_leggings_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an leather_leggings", + "conversation": "Let's work together to craft an leather_leggings.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 3 + }, + "3": { + "leather": 1 + }, + "4": { + "leather": 1 + } + }, + "agent_count": 5, + "target": "leather_leggings", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "glass": 1, + "blue_dye": 1 + }, + "1": { + "glass": 1, + "green_dye": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 4 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_wool": 1, + "stick": 1 + }, + "1": { + "pink_wool": 2 + }, + "2": { + "pink_wool": 1 + }, + "3": { + "pink_wool": 1 + }, + "4": { + "pink_wool": 1 + } + }, + "agent_count": 5, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_3_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 2, + "shears": 1 + }, + "2": { + "red_dye": 1 + }, + "3": { + "red_dye": 1 + }, + "4": { + "red_dye": 1 + } + }, + "agent_count": 5, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_blue_banner_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 1, + "stick": 1 + }, + "1": { + "blue_wool": 1 + }, + "2": { + "blue_wool": 2 + }, + "3": { + "blue_wool": 1 + }, + "4": { + "blue_wool": 1 + } + }, + "agent_count": 5, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "glass": 1, + "blue_dye": 1 + }, + "1": { + "glass": 1, + "green_dye": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 4 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "glass": 1, + "cyan_dye": 1 + }, + "1": { + "glass": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 4 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chest_minecart_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an chest_minecart", + "conversation": "Let's work together to craft an chest_minecart.", + "initial_inventory": { + "0": { + "oak_planks": 4, + "iron_ingot": 1 + }, + "1": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "2": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "3": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "4": { + "oak_planks": 1, + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "glass": 1, + "cyan_dye": 1 + }, + "1": { + "glass": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 4 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "glass": 1, + "blue_dye": 1 + }, + "1": { + "glass": 1, + "green_dye": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 4 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_wool": 1, + "stick": 1 + }, + "1": { + "red_wool": 1 + }, + "2": { + "red_wool": 1 + }, + "3": { + "red_wool": 1 + }, + "4": { + "red_wool": 2 + } + }, + "agent_count": 5, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 1, + "black_wool": 2 + }, + "2": { + "red_dye": 1, + "black_wool": 1 + }, + "3": { + "red_dye": 2, + "black_wool": 1 + }, + "4": { + "red_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "glass": 1, + "cyan_dye": 1 + }, + "1": { + "glass": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 4 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_0_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 2, + "shears": 1 + }, + "2": { + "red_dye": 1 + }, + "3": { + "red_dye": 1 + }, + "4": { + "red_dye": 1 + } + }, + "agent_count": 5, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_leather_leggings_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an leather_leggings", + "conversation": "Let's work together to craft an leather_leggings.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 3 + }, + "3": { + "leather": 1 + }, + "4": { + "leather": 1 + } + }, + "agent_count": 5, + "target": "leather_leggings", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "black_wool": 1 + }, + "2": { + "pink_dye": 1, + "black_wool": 1 + }, + "3": { + "pink_dye": 1, + "black_wool": 1 + }, + "4": { + "pink_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_wool": 1, + "stick": 1 + }, + "1": { + "red_wool": 1 + }, + "2": { + "red_wool": 1 + }, + "3": { + "red_wool": 1 + }, + "4": { + "red_wool": 2 + } + }, + "agent_count": 5, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_1_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 2, + "shears": 1 + }, + "2": { + "red_dye": 1 + }, + "3": { + "red_dye": 1 + }, + "4": { + "red_dye": 1 + } + }, + "agent_count": 5, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_blue_banner_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 1, + "stick": 1 + }, + "1": { + "blue_wool": 1 + }, + "2": { + "blue_wool": 2 + }, + "3": { + "blue_wool": 1 + }, + "4": { + "blue_wool": 1 + } + }, + "agent_count": 5, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an black_banner", + "conversation": "Let's work together to craft an black_banner.", + "initial_inventory": { + "0": { + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 2 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 1, + "stick": 1 + }, + "1": { + "blue_wool": 1 + }, + "2": { + "blue_wool": 2 + }, + "3": { + "blue_wool": 1 + }, + "4": { + "blue_wool": 1 + } + }, + "agent_count": 5, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 1, + "black_wool": 2 + }, + "2": { + "red_dye": 1, + "black_wool": 1 + }, + "3": { + "red_dye": 2, + "black_wool": 1 + }, + "4": { + "red_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "black_wool": 1 + }, + "2": { + "pink_dye": 1, + "black_wool": 1 + }, + "3": { + "pink_dye": 1, + "black_wool": 1 + }, + "4": { + "pink_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 1, + "black_wool": 1 + }, + "2": { + "cyan_dye": 2, + "black_wool": 2 + }, + "3": { + "cyan_dye": 1, + "black_wool": 1 + }, + "4": { + "cyan_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_2_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_dye": 2, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 1, + "shears": 1 + }, + "2": { + "cyan_dye": 1 + }, + "3": { + "cyan_dye": 1 + }, + "4": { + "cyan_dye": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_chest_minecart_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an chest_minecart", + "conversation": "Let's work together to craft an chest_minecart.", + "initial_inventory": { + "0": { + "oak_planks": 4, + "iron_ingot": 1 + }, + "1": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "2": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "3": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "4": { + "oak_planks": 1, + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 1, + "oak_planks": 2 + }, + "1": { + "blue_wool": 1 + }, + "2": { + "blue_wool": 2 + }, + "3": { + "blue_wool": 1 + }, + "4": { + "blue_wool": 1 + } + }, + "agent_count": 5, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 1, + "oak_planks": 2 + }, + "1": { + "blue_wool": 1 + }, + "2": { + "blue_wool": 2 + }, + "3": { + "blue_wool": 1 + }, + "4": { + "blue_wool": 1 + } + }, + "agent_count": 5, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_4_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 2, + "shears": 1 + }, + "2": { + "red_dye": 1 + }, + "3": { + "red_dye": 1 + }, + "4": { + "red_dye": 1 + } + }, + "agent_count": 5, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_banner_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 1, + "black_wool": 1 + }, + "2": { + "cyan_dye": 2, + "black_wool": 2 + }, + "3": { + "cyan_dye": 1, + "black_wool": 1 + }, + "4": { + "cyan_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chest_minecart_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an chest_minecart", + "conversation": "Let's work together to craft an chest_minecart.", + "initial_inventory": { + "0": { + "oak_planks": 4, + "iron_ingot": 1 + }, + "1": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "2": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "3": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "4": { + "oak_planks": 1, + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 1, + "black_wool": 1 + }, + "2": { + "cyan_dye": 2, + "black_wool": 2 + }, + "3": { + "cyan_dye": 1, + "black_wool": 1 + }, + "4": { + "cyan_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_2_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 2, + "shears": 1 + }, + "2": { + "red_dye": 1 + }, + "3": { + "red_dye": 1 + }, + "4": { + "red_dye": 1 + } + }, + "agent_count": 5, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_chest_minecart_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an chest_minecart", + "conversation": "Let's work together to craft an chest_minecart.", + "initial_inventory": { + "0": { + "oak_planks": 4, + "iron_ingot": 1 + }, + "1": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "2": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "3": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "4": { + "oak_planks": 1, + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an black_banner", + "conversation": "Let's work together to craft an black_banner.", + "initial_inventory": { + "0": { + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 2 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 1, + "black_wool": 2 + }, + "2": { + "red_dye": 1, + "black_wool": 1 + }, + "3": { + "red_dye": 2, + "black_wool": 1 + }, + "4": { + "red_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "white_dye": 1, + "black_wool": 1 + }, + "2": { + "white_dye": 2, + "black_wool": 1 + }, + "3": { + "white_dye": 1, + "black_wool": 2 + }, + "4": { + "white_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_0_with_plan_missing_black_wool_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "bone_meal": 1, + "shears": 1 + }, + "2": { + "bone_meal": 1 + }, + "3": { + "bone_meal": 1 + }, + "4": { + "bone_meal": 2 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_1_with_plan_missing_black_wool_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "bone_meal": 1, + "shears": 1 + }, + "2": { + "bone_meal": 1 + }, + "3": { + "bone_meal": 1 + }, + "4": { + "bone_meal": 2 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_2_with_plan_missing_black_wool_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "bone_meal": 1, + "shears": 1 + }, + "2": { + "bone_meal": 1 + }, + "3": { + "bone_meal": 1 + }, + "4": { + "bone_meal": 2 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_3_with_plan_missing_black_wool_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "bone_meal": 1, + "shears": 1 + }, + "2": { + "bone_meal": 1 + }, + "3": { + "bone_meal": 1 + }, + "4": { + "bone_meal": 2 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_4_with_plan_missing_black_wool_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "bone_meal": 1, + "shears": 1 + }, + "2": { + "bone_meal": 1 + }, + "3": { + "bone_meal": 1 + }, + "4": { + "bone_meal": 2 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_0_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "bone_meal": 1, + "black_wool": 1 + }, + "2": { + "bone_meal": 1, + "black_wool": 1 + }, + "3": { + "bone_meal": 1, + "black_wool": 1 + }, + "4": { + "bone_meal": 2, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_1_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "bone_meal": 1, + "black_wool": 1 + }, + "2": { + "bone_meal": 1, + "black_wool": 1 + }, + "3": { + "bone_meal": 1, + "black_wool": 1 + }, + "4": { + "bone_meal": 2, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_2_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "bone_meal": 1, + "black_wool": 1 + }, + "2": { + "bone_meal": 1, + "black_wool": 1 + }, + "3": { + "bone_meal": 1, + "black_wool": 1 + }, + "4": { + "bone_meal": 2, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_3_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "bone_meal": 1, + "black_wool": 1 + }, + "2": { + "bone_meal": 1, + "black_wool": 1 + }, + "3": { + "bone_meal": 1, + "black_wool": 1 + }, + "4": { + "bone_meal": 2, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_4_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "bone_meal": 1, + "black_wool": 1 + }, + "2": { + "bone_meal": 1, + "black_wool": 1 + }, + "3": { + "bone_meal": 1, + "black_wool": 1 + }, + "4": { + "bone_meal": 2, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_0_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "blue_dye": 3, + "black_wool": 1 + }, + "1": { + "green_dye": 3, + "black_wool": 2 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_1_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "blue_dye": 3, + "black_wool": 1 + }, + "1": { + "green_dye": 3, + "black_wool": 2 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_2_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "blue_dye": 3, + "black_wool": 1 + }, + "1": { + "green_dye": 3, + "black_wool": 2 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_3_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "blue_dye": 3, + "black_wool": 1 + }, + "1": { + "green_dye": 3, + "black_wool": 2 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_4_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "blue_dye": 3, + "black_wool": 1 + }, + "1": { + "green_dye": 3, + "black_wool": 2 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_0_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_log": 3, + "paper": 1 + }, + "1": { + "paper": 1, + "leather": 3 + }, + "2": { + "paper": 1 + }, + "3": { + "paper": 5 + }, + "4": { + "paper": 1 + } + }, + "agent_count": 5, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_1_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_log": 3, + "paper": 1 + }, + "1": { + "paper": 1, + "leather": 3 + }, + "2": { + "paper": 1 + }, + "3": { + "paper": 5 + }, + "4": { + "paper": 1 + } + }, + "agent_count": 5, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_2_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_log": 3, + "paper": 1 + }, + "1": { + "paper": 1, + "leather": 3 + }, + "2": { + "paper": 1 + }, + "3": { + "paper": 5 + }, + "4": { + "paper": 1 + } + }, + "agent_count": 5, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_3_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_log": 3, + "paper": 1 + }, + "1": { + "paper": 1, + "leather": 3 + }, + "2": { + "paper": 1 + }, + "3": { + "paper": 5 + }, + "4": { + "paper": 1 + } + }, + "agent_count": 5, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_4_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_log": 3, + "paper": 1 + }, + "1": { + "paper": 1, + "leather": 3 + }, + "2": { + "paper": 1 + }, + "3": { + "paper": 5 + }, + "4": { + "paper": 1 + } + }, + "agent_count": 5, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/test_tasks/tasks_5_agents_stats.txt b/tasks/crafting_tasks/test_tasks/tasks_5_agents_stats.txt new file mode 100644 index 0000000..0b8cc23 --- /dev/null +++ b/tasks/crafting_tasks/test_tasks/tasks_5_agents_stats.txt @@ -0,0 +1,14 @@ +{ + "num_tasks": 136, + "avg_depth": 2.259259259259259, + "std_depth": 0.6436350813697311, + "num_tasks_based_depth": { + "0": 50, + "1": 65, + "2": 20 + }, + "num_missing_resources": { + "0": 110, + "1": 25 + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/train_tasks/tasks_2_agents.json b/tasks/crafting_tasks/train_tasks/tasks_2_agents.json new file mode 100644 index 0000000..67c3c9d --- /dev/null +++ b/tasks/crafting_tasks/train_tasks/tasks_2_agents.json @@ -0,0 +1,7800 @@ +{ + "multiagent_crafting_blast_furnace_0_with_plan_missing_furnace_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "smooth_stone": 1 + }, + "1": { + "iron_ingot": 3, + "smooth_stone": 2 + } + }, + "agent_count": 2, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "furnace" + ] + }, + "multiagent_crafting_trapped_chest_1_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an trapped_chest", + "conversation": "Let's work together to craft an trapped_chest.", + "initial_inventory": { + "0": { + "oak_planks": 4, + "stick": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 5, + "stone_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "trapped_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_anvil_1_with_plan_missing_iron_ingot_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an anvil", + "conversation": "Let's work together to craft an anvil.", + "initial_inventory": { + "0": { + "iron_block": 2, + "stone_pickaxe": 1 + }, + "1": { + "iron_block": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "anvil", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_purple_banner_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_dye": 3, + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "purple_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_1_with_plan_missing_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone_torch": 1, + "stone": 2, + "diamond_pickaxe": 1 + }, + "1": { + "redstone_torch": 1, + "stone": 1 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_waxed_cut_copper_0_with_plan_missing_copper_block_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an waxed_cut_copper", + "conversation": "Let's work together to craft an waxed_cut_copper.", + "initial_inventory": { + "0": { + "honeycomb": 2 + }, + "1": { + "honeycomb": 2 + } + }, + "agent_count": 2, + "target": "waxed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "copper_block" + ] + }, + "multiagent_crafting_chiseled_bookshelf_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_bookshelf", + "conversation": "Let's work together to craft an chiseled_bookshelf.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "oak_slab": 1 + }, + "1": { + "oak_planks": 3, + "oak_slab": 2 + } + }, + "agent_count": 2, + "target": "chiseled_bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_carpet_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_carpet", + "conversation": "Let's work together to craft an cyan_carpet.", + "initial_inventory": { + "0": { + "cyan_dye": 1, + "shears": 1 + }, + "1": { + "cyan_dye": 1 + } + }, + "agent_count": 2, + "target": "cyan_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_anvil_0_with_plan_missing_iron_ingot_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an anvil", + "conversation": "Let's work together to craft an anvil.", + "initial_inventory": { + "0": { + "iron_block": 2, + "stone_pickaxe": 1 + }, + "1": { + "iron_block": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "anvil", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_bamboo_mosaic_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an bamboo_mosaic", + "conversation": "Let's work together to craft an bamboo_mosaic.", + "initial_inventory": { + "0": { + "bamboo_planks": 2 + }, + "1": { + "bamboo_planks": 1 + } + }, + "agent_count": 2, + "target": "bamboo_mosaic", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_0_with_plan_missing_redstone_stone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone_torch": 1, + "diamond_pickaxe": 1 + }, + "1": { + "redstone_torch": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone", + "stone" + ] + }, + "multiagent_crafting_chiseled_sandstone_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_sandstone", + "conversation": "Let's work together to craft an chiseled_sandstone.", + "initial_inventory": { + "0": { + "sandstone": 1 + }, + "1": { + "sandstone": 2 + } + }, + "agent_count": 2, + "target": "chiseled_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "deepslate_tiles": 3 + }, + "1": { + "deepslate_tiles": 3 + } + }, + "agent_count": 2, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_red_sandstone_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_red_sandstone", + "conversation": "Let's work together to craft an chiseled_red_sandstone.", + "initial_inventory": { + "0": { + "red_sandstone": 1 + }, + "1": { + "red_sandstone": 2 + } + }, + "agent_count": 2, + "target": "chiseled_red_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_deepslate_wall_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_deepslate_wall", + "conversation": "Let's work together to craft an polished_deepslate_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 3 + }, + "1": { + "polished_deepslate": 3 + } + }, + "agent_count": 2, + "target": "polished_deepslate_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_stained_glass_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_stained_glass", + "conversation": "Let's work together to craft an purple_stained_glass.", + "initial_inventory": { + "0": { + "glass": 4, + "blue_dye": 1 + }, + "1": { + "glass": 4, + "red_dye": 1 + } + }, + "agent_count": 2, + "target": "purple_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bamboo_mosaic_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an bamboo_mosaic", + "conversation": "Let's work together to craft an bamboo_mosaic.", + "initial_inventory": { + "0": { + "bamboo_slab": 1 + }, + "1": { + "bamboo_slab": 1 + } + }, + "agent_count": 2, + "target": "bamboo_mosaic", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_brick_wall_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_blackstone_brick_wall", + "conversation": "Let's work together to craft an polished_blackstone_brick_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 4 + }, + "1": { + "polished_blackstone": 4 + } + }, + "agent_count": 2, + "target": "polished_blackstone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_red_sandstone_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_red_sandstone", + "conversation": "Let's work together to craft an chiseled_red_sandstone.", + "initial_inventory": { + "0": { + "red_sandstone_slab": 1 + }, + "1": { + "red_sandstone_slab": 1 + } + }, + "agent_count": 2, + "target": "chiseled_red_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_shulker_box_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an shulker_box", + "conversation": "Let's work together to craft an shulker_box.", + "initial_inventory": { + "0": { + "shulker_shell": 1, + "oak_planks": 4 + }, + "1": { + "shulker_shell": 1, + "oak_planks": 4 + } + }, + "agent_count": 2, + "target": "shulker_box", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_1_with_plan_missing_redstone_torch_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "stone": 2, + "diamond_pickaxe": 1 + }, + "1": { + "stone": 1 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone_torch", + "redstone" + ] + }, + "multiagent_crafting_purple_stained_glass_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_stained_glass", + "conversation": "Let's work together to craft an purple_stained_glass.", + "initial_inventory": { + "0": { + "glass": 4, + "blue_dye": 1 + }, + "1": { + "glass": 4, + "red_dye": 1 + } + }, + "agent_count": 2, + "target": "purple_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_prismarine_wall_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an prismarine_wall", + "conversation": "Let's work together to craft an prismarine_wall.", + "initial_inventory": { + "0": { + "prismarine": 3 + }, + "1": { + "prismarine": 3 + } + }, + "agent_count": 2, + "target": "prismarine_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_nether_bricks_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_nether_bricks", + "conversation": "Let's work together to craft an chiseled_nether_bricks.", + "initial_inventory": { + "0": { + "nether_bricks": 1 + }, + "1": { + "nether_bricks": 2 + } + }, + "agent_count": 2, + "target": "chiseled_nether_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_nether_brick_wall_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_nether_brick_wall", + "conversation": "Let's work together to craft an red_nether_brick_wall.", + "initial_inventory": { + "0": { + "red_nether_bricks": 3 + }, + "1": { + "red_nether_bricks": 3 + } + }, + "agent_count": 2, + "target": "red_nether_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_andesite_wall_0_with_plan_missing_cobblestone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an andesite_wall", + "conversation": "Let's work together to craft an andesite_wall.", + "initial_inventory": { + "0": { + "diorite": 1, + "wooden_pickaxe": 1 + }, + "1": { + "diorite": 2 + } + }, + "agent_count": 2, + "target": "andesite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_dispenser_0_with_plan_missing_cobblestone_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "bow": 1, + "diamond_pickaxe": 1 + }, + "1": { + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "cobblestone", + "redstone" + ] + }, + "multiagent_crafting_bamboo_mosaic_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an bamboo_mosaic", + "conversation": "Let's work together to craft an bamboo_mosaic.", + "initial_inventory": { + "0": { + "bamboo_planks": 2 + }, + "1": { + "bamboo_planks": 1 + } + }, + "agent_count": 2, + "target": "bamboo_mosaic", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_bricks_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an deepslate_bricks", + "conversation": "Let's work together to craft an deepslate_bricks.", + "initial_inventory": { + "0": { + "polished_deepslate": 2 + }, + "1": { + "polished_deepslate": 2 + } + }, + "agent_count": 2, + "target": "deepslate_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_andesite_wall_1_with_plan_missing_cobblestone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an andesite_wall", + "conversation": "Let's work together to craft an andesite_wall.", + "initial_inventory": { + "0": { + "diorite": 1, + "wooden_pickaxe": 1 + }, + "1": { + "diorite": 2 + } + }, + "agent_count": 2, + "target": "andesite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_detector_rail_0_with_plan_missing_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "stone_pressure_plate": 1 + }, + "1": { + "iron_ingot": 3, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_deepslate_tile_wall_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "deepslate_bricks": 4 + }, + "1": { + "deepslate_bricks": 4 + } + }, + "agent_count": 2, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "deepslate_tiles": 3 + }, + "1": { + "deepslate_tiles": 3 + } + }, + "agent_count": 2, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_enchanting_table_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an enchanting_table", + "conversation": "Let's work together to craft an enchanting_table.", + "initial_inventory": { + "0": { + "paper": 2, + "leather": 1, + "diamond": 1, + "obsidian": 2 + }, + "1": { + "paper": 1, + "diamond": 1, + "obsidian": 2 + } + }, + "agent_count": 2, + "target": "enchanting_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_comparator_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone_torch": 2, + "quartz": 1, + "stone": 1 + }, + "1": { + "redstone_torch": 1, + "stone": 2 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_0_with_plan_missing_redstone_stone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "stick": 1, + "diamond_pickaxe": 1 + }, + "1": { + "stick": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone", + "stone" + ] + }, + "multiagent_crafting_chiseled_sandstone_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_sandstone", + "conversation": "Let's work together to craft an chiseled_sandstone.", + "initial_inventory": { + "0": { + "sandstone_slab": 1 + }, + "1": { + "sandstone_slab": 1 + } + }, + "agent_count": 2, + "target": "chiseled_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_torch_0_with_plan_missing_coal_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an soul_torch", + "conversation": "Let's work together to craft an soul_torch.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "soul_sand": 1 + }, + "1": { + "oak_planks": 1, + "iron_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "soul_torch", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "coal" + ] + }, + "multiagent_crafting_shulker_box_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an shulker_box", + "conversation": "Let's work together to craft an shulker_box.", + "initial_inventory": { + "0": { + "shulker_shell": 1, + "chest": 1 + }, + "1": { + "shulker_shell": 1 + } + }, + "agent_count": 2, + "target": "shulker_box", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_torch_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an soul_torch", + "conversation": "Let's work together to craft an soul_torch.", + "initial_inventory": { + "0": { + "coal": 1, + "oak_planks": 1 + }, + "1": { + "oak_planks": 1, + "soul_sand": 1 + } + }, + "agent_count": 2, + "target": "soul_torch", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_andesite_wall_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an andesite_wall", + "conversation": "Let's work together to craft an andesite_wall.", + "initial_inventory": { + "0": { + "andesite": 3 + }, + "1": { + "andesite": 3 + } + }, + "agent_count": 2, + "target": "andesite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "deepslate_bricks": 4 + }, + "1": { + "deepslate_bricks": 4 + } + }, + "agent_count": 2, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_granite_wall_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an granite_wall", + "conversation": "Let's work together to craft an granite_wall.", + "initial_inventory": { + "0": { + "granite": 3 + }, + "1": { + "granite": 3 + } + }, + "agent_count": 2, + "target": "granite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_cut_copper_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an waxed_cut_copper", + "conversation": "Let's work together to craft an waxed_cut_copper.", + "initial_inventory": { + "0": { + "copper_block": 2, + "honeycomb": 2 + }, + "1": { + "copper_block": 2, + "honeycomb": 2 + } + }, + "agent_count": 2, + "target": "waxed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sandstone_wall_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an sandstone_wall", + "conversation": "Let's work together to craft an sandstone_wall.", + "initial_inventory": { + "0": { + "sandstone": 3 + }, + "1": { + "sandstone": 3 + } + }, + "agent_count": 2, + "target": "sandstone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone": 1, + "stick": 1, + "stone": 2 + }, + "1": { + "redstone": 2, + "stick": 1, + "stone": 1 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_comparator_0_with_plan_missing_redstone_torch_stone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "quartz": 1 + }, + "1": { + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone_torch", + "stone" + ] + }, + "multiagent_crafting_activator_rail_0_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "redstone": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "stick": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_chiseled_bookshelf_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_bookshelf", + "conversation": "Let's work together to craft an chiseled_bookshelf.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "oak_slab": 1 + }, + "1": { + "oak_planks": 3, + "oak_slab": 2 + } + }, + "agent_count": 2, + "target": "chiseled_bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_0_with_plan_missing_iron_ingot_redstone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "oak_planks": 1, + "cobblestone": 2, + "furnace": 1 + }, + "1": { + "oak_planks": 2, + "cobblestone": 2, + "stone_pickaxe": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_detector_rail_0_with_plan_missing_iron_ingot_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "stone_pressure_plate": 1, + "stone_pickaxe": 1 + }, + "1": { + "redstone": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_comparator_1_with_plan_missing_stone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone": 2, + "stick": 1, + "quartz": 1 + }, + "1": { + "redstone": 1, + "stick": 2, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "stone" + ] + }, + "multiagent_crafting_comparator_0_with_plan_missing_redstone_torch_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "quartz": 1, + "stone": 2 + }, + "1": { + "stone": 1 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone_torch" + ] + }, + "multiagent_crafting_iron_hoe_0_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an iron_hoe", + "conversation": "Let's work together to craft an iron_hoe.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "iron_hoe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_deepslate_brick_wall_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an deepslate_brick_wall", + "conversation": "Let's work together to craft an deepslate_brick_wall.", + "initial_inventory": { + "0": { + "deepslate_bricks": 3 + }, + "1": { + "deepslate_bricks": 3 + } + }, + "agent_count": 2, + "target": "deepslate_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_diamond_hoe_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an diamond_hoe", + "conversation": "Let's work together to craft an diamond_hoe.", + "initial_inventory": { + "0": { + "diamond": 1, + "oak_planks": 1 + }, + "1": { + "diamond": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "diamond_hoe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_prismarine_wall_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an prismarine_wall", + "conversation": "Let's work together to craft an prismarine_wall.", + "initial_inventory": { + "0": { + "prismarine": 3 + }, + "1": { + "prismarine": 3 + } + }, + "agent_count": 2, + "target": "prismarine_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_glow_item_frame_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an glow_item_frame", + "conversation": "Let's work together to craft an glow_item_frame.", + "initial_inventory": { + "0": { + "stick": 4, + "leather": 1 + }, + "1": { + "stick": 4, + "glow_ink_sac": 1 + } + }, + "agent_count": 2, + "target": "glow_item_frame", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_wall_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_blackstone_wall", + "conversation": "Let's work together to craft an polished_blackstone_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 3 + }, + "1": { + "polished_blackstone": 3 + } + }, + "agent_count": 2, + "target": "polished_blackstone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_banner_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_dye": 3, + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "orange_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_enchanting_table_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an enchanting_table", + "conversation": "Let's work together to craft an enchanting_table.", + "initial_inventory": { + "0": { + "book": 1, + "diamond": 1, + "obsidian": 2 + }, + "1": { + "diamond": 1, + "obsidian": 2 + } + }, + "agent_count": 2, + "target": "enchanting_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_golden_sword_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an golden_sword", + "conversation": "Let's work together to craft an golden_sword.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 1 + }, + "1": { + "gold_ingot": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "golden_sword", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_detector_rail_1_with_plan_missing_stone_pressure_plate_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "redstone": 1 + }, + "1": { + "iron_ingot": 3 + } + }, + "agent_count": 2, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "stone_pressure_plate" + ] + }, + "multiagent_crafting_green_banner_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an green_banner", + "conversation": "Let's work together to craft an green_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "green_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "green_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_shulker_box_1_with_plan_missing_chest_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an shulker_box", + "conversation": "Let's work together to craft an shulker_box.", + "initial_inventory": { + "0": { + "shulker_shell": 1 + }, + "1": { + "shulker_shell": 1 + } + }, + "agent_count": 2, + "target": "shulker_box", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_lantern_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "stick": 1 + }, + "1": { + "coal": 1 + } + }, + "agent_count": 2, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_0_with_plan_missing_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone_torch": 1, + "stone": 2, + "diamond_pickaxe": 1 + }, + "1": { + "redstone_torch": 1, + "stone": 1 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_cyan_carpet_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_carpet", + "conversation": "Let's work together to craft an cyan_carpet.", + "initial_inventory": { + "0": { + "cyan_dye": 1, + "black_wool": 1 + }, + "1": { + "cyan_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "cyan_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bone_block_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an bone_block", + "conversation": "Let's work together to craft an bone_block.", + "initial_inventory": { + "0": { + "bone_meal": 4 + }, + "1": { + "bone_meal": 5 + } + }, + "agent_count": 2, + "target": "bone_block", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_1_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "redstone": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "stick": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_trapped_chest_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an trapped_chest", + "conversation": "Let's work together to craft an trapped_chest.", + "initial_inventory": { + "0": { + "chest": 1 + }, + "1": { + "tripwire_hook": 1 + } + }, + "agent_count": 2, + "target": "trapped_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_terracotta_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_terracotta", + "conversation": "Let's work together to craft an purple_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 4, + "blue_dye": 1 + }, + "1": { + "terracotta": 4, + "red_dye": 1 + } + }, + "agent_count": 2, + "target": "purple_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_terracotta_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_terracotta", + "conversation": "Let's work together to craft an cyan_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 4, + "cyan_dye": 1 + }, + "1": { + "terracotta": 4 + } + }, + "agent_count": 2, + "target": "cyan_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_stone_pickaxe_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an stone_pickaxe", + "conversation": "Let's work together to craft an stone_pickaxe.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 1 + }, + "1": { + "cobblestone": 2, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "stone_pickaxe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_anvil_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an anvil", + "conversation": "Let's work together to craft an anvil.", + "initial_inventory": { + "0": { + "iron_block": 2, + "iron_ingot": 2 + }, + "1": { + "iron_block": 1, + "iron_ingot": 2 + } + }, + "agent_count": 2, + "target": "anvil", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_armor_stand_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an armor_stand", + "conversation": "Let's work together to craft an armor_stand.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "smooth_stone": 1 + }, + "1": { + "oak_planks": 2, + "smooth_stone": 2 + } + }, + "agent_count": 2, + "target": "armor_stand", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tiles_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an deepslate_tiles", + "conversation": "Let's work together to craft an deepslate_tiles.", + "initial_inventory": { + "0": { + "deepslate_bricks": 2 + }, + "1": { + "deepslate_bricks": 2 + } + }, + "agent_count": 2, + "target": "deepslate_tiles", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_rail_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an rail", + "conversation": "Let's work together to craft an rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_0_with_plan_missing_redstone_torch_stone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone": 1 + }, + "1": { + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone_torch", + "stone" + ] + }, + "multiagent_crafting_activator_rail_0_with_plan_missing_redstone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_planks": 1, + "stick": 1 + }, + "1": { + "iron_ingot": 3, + "oak_planks": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_magma_block_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an magma_block", + "conversation": "Let's work together to craft an magma_block.", + "initial_inventory": { + "0": { + "magma_cream": 2 + }, + "1": { + "magma_cream": 2 + } + }, + "agent_count": 2, + "target": "magma_block", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_0_with_plan_missing_gold_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_brick_slab": 8, + "netherite_scrap": 2, + "iron_pickaxe": 1 + }, + "1": { + "stone_brick_slab": 8, + "netherite_scrap": 2, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_cyan_carpet_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_carpet", + "conversation": "Let's work together to craft an cyan_carpet.", + "initial_inventory": { + "0": { + "cyan_wool": 1 + }, + "1": { + "cyan_wool": 1 + } + }, + "agent_count": 2, + "target": "cyan_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_iron_pickaxe_1_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an iron_pickaxe", + "conversation": "Let's work together to craft an iron_pickaxe.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "iron_pickaxe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_polished_diorite_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_diorite", + "conversation": "Let's work together to craft an polished_diorite.", + "initial_inventory": { + "0": { + "diorite": 2 + }, + "1": { + "diorite": 2 + } + }, + "agent_count": 2, + "target": "polished_diorite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_item_frame_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an item_frame", + "conversation": "Let's work together to craft an item_frame.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "rabbit_hide": 2 + }, + "1": { + "oak_planks": 2, + "rabbit_hide": 2 + } + }, + "agent_count": 2, + "target": "item_frame", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_0_with_plan_missing_redstone_torch_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "stone": 2, + "diamond_pickaxe": 1 + }, + "1": { + "stone": 1 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone_torch", + "redstone" + ] + }, + "multiagent_crafting_golden_sword_1_with_plan_missing_gold_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an golden_sword", + "conversation": "Let's work together to craft an golden_sword.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "iron_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "golden_sword", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_magenta_carpet_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an magenta_carpet", + "conversation": "Let's work together to craft an magenta_carpet.", + "initial_inventory": { + "0": { + "magenta_dye": 1 + }, + "1": { + "black_carpet": 1 + } + }, + "agent_count": 2, + "target": "magenta_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_banner_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "magenta_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_polished_blackstone_brick_wall_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_blackstone_brick_wall", + "conversation": "Let's work together to craft an polished_blackstone_brick_wall.", + "initial_inventory": { + "0": { + "polished_blackstone_bricks": 3 + }, + "1": { + "polished_blackstone_bricks": 3 + } + }, + "agent_count": 2, + "target": "polished_blackstone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_comparator_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone": 1, + "stick": 2, + "quartz": 1, + "stone": 2 + }, + "1": { + "redstone": 2, + "stick": 1, + "stone": 1 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_terracotta_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an magenta_terracotta", + "conversation": "Let's work together to craft an magenta_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 4, + "magenta_dye": 1 + }, + "1": { + "terracotta": 4 + } + }, + "agent_count": 2, + "target": "magenta_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tiles_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an deepslate_tiles", + "conversation": "Let's work together to craft an deepslate_tiles.", + "initial_inventory": { + "0": { + "polished_deepslate": 2 + }, + "1": { + "polished_deepslate": 2 + } + }, + "agent_count": 2, + "target": "deepslate_tiles", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_terracotta_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_terracotta", + "conversation": "Let's work together to craft an red_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 4, + "red_dye": 1 + }, + "1": { + "terracotta": 4 + } + }, + "agent_count": 2, + "target": "red_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_comparator_0_with_plan_missing_stone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone": 2, + "stick": 1, + "quartz": 1 + }, + "1": { + "redstone": 1, + "stick": 2, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "stone" + ] + }, + "multiagent_crafting_piston_1_with_plan_missing_cobblestone_iron_ingot_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "wooden_pickaxe": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 1, + "stone_pickaxe": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "cobblestone", + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_chiseled_red_sandstone_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_red_sandstone", + "conversation": "Let's work together to craft an chiseled_red_sandstone.", + "initial_inventory": { + "0": { + "red_sandstone": 1 + }, + "1": { + "red_sandstone": 2 + } + }, + "agent_count": 2, + "target": "chiseled_red_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_terracotta_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_terracotta", + "conversation": "Let's work together to craft an red_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 4, + "red_dye": 1 + }, + "1": { + "terracotta": 4 + } + }, + "agent_count": 2, + "target": "red_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_1_with_plan_missing_redstone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "oak_planks": 1, + "cobblestone": 2, + "diamond_pickaxe": 1 + }, + "1": { + "oak_planks": 2, + "cobblestone": 2, + "iron_ingot": 1 + } + }, + "agent_count": 2, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_waxed_cut_copper_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an waxed_cut_copper", + "conversation": "Let's work together to craft an waxed_cut_copper.", + "initial_inventory": { + "0": { + "waxed_copper_block": 2 + }, + "1": { + "waxed_copper_block": 2 + } + }, + "agent_count": 2, + "target": "waxed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_crossbow_0_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an crossbow", + "conversation": "Let's work together to craft an crossbow.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "string": 1, + "stick": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 1, + "string": 1, + "stone_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "crossbow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_piston_1_with_plan_missing_cobblestone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "iron_ingot": 1, + "wooden_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "redstone": 1 + } + }, + "agent_count": 2, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_golden_hoe_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an golden_hoe", + "conversation": "Let's work together to craft an golden_hoe.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 1 + }, + "1": { + "gold_ingot": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "golden_hoe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_piston_0_with_plan_missing_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "cobblestone": 2, + "iron_ingot": 1 + }, + "1": { + "oak_planks": 2, + "cobblestone": 2, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_dispenser_0_with_plan_missing_cobblestone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "stick": 1, + "string": 2, + "redstone": 1 + }, + "1": { + "stick": 2, + "string": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_waxed_copper_block_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an waxed_copper_block", + "conversation": "Let's work together to craft an waxed_copper_block.", + "initial_inventory": { + "0": { + "copper_block": 1 + }, + "1": { + "honeycomb": 1 + } + }, + "agent_count": 2, + "target": "waxed_copper_block", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_golden_axe_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an golden_axe", + "conversation": "Let's work together to craft an golden_axe.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 1 + }, + "1": { + "gold_ingot": 2, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "golden_axe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cut_copper_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cut_copper", + "conversation": "Let's work together to craft an cut_copper.", + "initial_inventory": { + "0": { + "copper_block": 2 + }, + "1": { + "copper_block": 2 + } + }, + "agent_count": 2, + "target": "cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_stone_hoe_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an stone_hoe", + "conversation": "Let's work together to craft an stone_hoe.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 1 + }, + "1": { + "cobblestone": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "stone_hoe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brick_wall_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an brick_wall", + "conversation": "Let's work together to craft an brick_wall.", + "initial_inventory": { + "0": { + "bricks": 3 + }, + "1": { + "bricks": 3 + } + }, + "agent_count": 2, + "target": "brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_campfire_1_with_plan_missing_coal_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an campfire", + "conversation": "Let's work together to craft an campfire.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "dark_oak_log": 2, + "iron_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "dark_oak_log": 1 + } + }, + "agent_count": 2, + "target": "campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "coal" + ] + }, + "multiagent_crafting_redstone_lamp_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an redstone_lamp", + "conversation": "Let's work together to craft an redstone_lamp.", + "initial_inventory": { + "0": { + "redstone": 2, + "glowstone": 1 + }, + "1": { + "redstone": 2 + } + }, + "agent_count": 2, + "target": "redstone_lamp", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_rail_0_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an rail", + "conversation": "Let's work together to craft an rail.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_repeater_1_with_plan_missing_redstone_torch_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone": 1, + "stone": 1 + }, + "1": { + "stone": 2 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone_torch" + ] + }, + "multiagent_crafting_waxed_cut_copper_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an waxed_cut_copper", + "conversation": "Let's work together to craft an waxed_cut_copper.", + "initial_inventory": { + "0": { + "copper_block": 2, + "honeycomb": 2 + }, + "1": { + "copper_block": 2, + "honeycomb": 2 + } + }, + "agent_count": 2, + "target": "waxed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_redstone_lamp_1_with_plan_missing_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an redstone_lamp", + "conversation": "Let's work together to craft an redstone_lamp.", + "initial_inventory": { + "0": { + "glowstone": 1 + }, + "1": { + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "redstone_lamp", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_golden_pickaxe_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an golden_pickaxe", + "conversation": "Let's work together to craft an golden_pickaxe.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "oak_planks": 1 + }, + "1": { + "gold_ingot": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "golden_pickaxe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_brick_wall_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_blackstone_brick_wall", + "conversation": "Let's work together to craft an polished_blackstone_brick_wall.", + "initial_inventory": { + "0": { + "polished_blackstone_bricks": 3 + }, + "1": { + "polished_blackstone_bricks": 3 + } + }, + "agent_count": 2, + "target": "polished_blackstone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_1_with_plan_missing_cobblestone_redstone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "stick": 2, + "string": 1, + "wooden_pickaxe": 1 + }, + "1": { + "stick": 1, + "string": 2, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "cobblestone", + "redstone" + ] + }, + "multiagent_crafting_purple_stained_glass_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_stained_glass", + "conversation": "Let's work together to craft an purple_stained_glass.", + "initial_inventory": { + "0": { + "glass": 4, + "purple_dye": 1 + }, + "1": { + "glass": 4 + } + }, + "agent_count": 2, + "target": "purple_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_golden_axe_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an golden_axe", + "conversation": "Let's work together to craft an golden_axe.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 1 + }, + "1": { + "gold_ingot": 2, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "golden_axe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_target_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an target", + "conversation": "Let's work together to craft an target.", + "initial_inventory": { + "0": { + "redstone": 2, + "hay_block": 1 + }, + "1": { + "redstone": 2 + } + }, + "agent_count": 2, + "target": "target", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_1_with_plan_missing_stone_brick_slab_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 2, + "gold_ingot": 2 + }, + "1": { + "netherite_scrap": 2, + "gold_ingot": 2 + } + }, + "agent_count": 2, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "stone_brick_slab" + ] + }, + "multiagent_crafting_anvil_0_with_plan_missing_iron_block_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an anvil", + "conversation": "Let's work together to craft an anvil.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 2 + } + }, + "agent_count": 2, + "target": "anvil", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_block" + ] + }, + "multiagent_crafting_iron_sword_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an iron_sword", + "conversation": "Let's work together to craft an iron_sword.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "iron_sword", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purpur_pillar_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an purpur_pillar", + "conversation": "Let's work together to craft an purpur_pillar.", + "initial_inventory": { + "0": { + "purpur_slab": 1 + }, + "1": { + "purpur_slab": 1 + } + }, + "agent_count": 2, + "target": "purpur_pillar", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_cut_copper_1_with_plan_missing_copper_block_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an waxed_cut_copper", + "conversation": "Let's work together to craft an waxed_cut_copper.", + "initial_inventory": { + "0": { + "honeycomb": 2 + }, + "1": { + "honeycomb": 2 + } + }, + "agent_count": 2, + "target": "waxed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "copper_block" + ] + }, + "multiagent_crafting_comparator_1_with_plan_missing_redstone_torch_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "quartz": 1, + "stone": 2 + }, + "1": { + "stone": 1 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone_torch" + ] + }, + "multiagent_crafting_yellow_banner_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 3, + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "yellow_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_netherite_block_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an netherite_block", + "conversation": "Let's work together to craft an netherite_block.", + "initial_inventory": { + "0": { + "netherite_ingot": 5 + }, + "1": { + "netherite_ingot": 4 + } + }, + "agent_count": 2, + "target": "netherite_block", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_banner_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "light_gray_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_terracotta_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_terracotta", + "conversation": "Let's work together to craft an cyan_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 4, + "cyan_dye": 1 + }, + "1": { + "terracotta": 4 + } + }, + "agent_count": 2, + "target": "cyan_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_iron_hoe_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an iron_hoe", + "conversation": "Let's work together to craft an iron_hoe.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "iron_hoe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_shulker_box_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an shulker_box", + "conversation": "Let's work together to craft an shulker_box.", + "initial_inventory": { + "0": { + "shulker_shell": 1, + "chest": 1 + }, + "1": { + "shulker_shell": 1 + } + }, + "agent_count": 2, + "target": "shulker_box", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_comparator_1_with_plan_missing_redstone_stone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "stick": 1, + "quartz": 1, + "wooden_pickaxe": 1 + }, + "1": { + "stick": 2, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone", + "stone" + ] + }, + "multiagent_crafting_end_stone_brick_wall_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an end_stone_brick_wall", + "conversation": "Let's work together to craft an end_stone_brick_wall.", + "initial_inventory": { + "0": { + "end_stone_bricks": 3 + }, + "1": { + "end_stone_bricks": 3 + } + }, + "agent_count": 2, + "target": "end_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "purple_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_stone_brick_wall_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an stone_brick_wall", + "conversation": "Let's work together to craft an stone_brick_wall.", + "initial_inventory": { + "0": { + "stone_bricks": 3 + }, + "1": { + "stone_bricks": 3 + } + }, + "agent_count": 2, + "target": "stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_iron_pickaxe_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an iron_pickaxe", + "conversation": "Let's work together to craft an iron_pickaxe.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "iron_pickaxe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_piston_1_with_plan_missing_cobblestone_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "1": { + "oak_planks": 2, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "cobblestone", + "redstone" + ] + }, + "multiagent_crafting_orange_banner_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "orange_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_soul_torch_1_with_plan_missing_coal_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an soul_torch", + "conversation": "Let's work together to craft an soul_torch.", + "initial_inventory": { + "0": { + "stick": 1, + "iron_pickaxe": 1 + }, + "1": { + "soul_sand": 1 + } + }, + "agent_count": 2, + "target": "soul_torch", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "coal" + ] + }, + "multiagent_crafting_stone_axe_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an stone_axe", + "conversation": "Let's work together to craft an stone_axe.", + "initial_inventory": { + "0": { + "cobblestone": 2, + "oak_planks": 1 + }, + "1": { + "cobblestone": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "stone_axe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tiles_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an deepslate_tiles", + "conversation": "Let's work together to craft an deepslate_tiles.", + "initial_inventory": { + "0": { + "deepslate_bricks": 2 + }, + "1": { + "deepslate_bricks": 2 + } + }, + "agent_count": 2, + "target": "deepslate_tiles", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_grindstone_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an grindstone", + "conversation": "Let's work together to craft an grindstone.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "stone": 1, + "oak_log": 1 + }, + "1": { + "oak_planks": 1, + "stone": 2 + } + }, + "agent_count": 2, + "target": "grindstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_stained_glass_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an magenta_stained_glass", + "conversation": "Let's work together to craft an magenta_stained_glass.", + "initial_inventory": { + "0": { + "glass": 4, + "magenta_dye": 1 + }, + "1": { + "glass": 4 + } + }, + "agent_count": 2, + "target": "magenta_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_terracotta_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_terracotta", + "conversation": "Let's work together to craft an cyan_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 4, + "blue_dye": 1 + }, + "1": { + "terracotta": 4, + "green_dye": 1 + } + }, + "agent_count": 2, + "target": "cyan_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_carpet_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an magenta_carpet", + "conversation": "Let's work together to craft an magenta_carpet.", + "initial_inventory": { + "0": { + "magenta_dye": 1 + }, + "1": { + "black_carpet": 1 + } + }, + "agent_count": 2, + "target": "magenta_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_brick_slab": 8, + "netherite_scrap": 2, + "gold_ingot": 2 + }, + "1": { + "stone_brick_slab": 8, + "netherite_scrap": 2, + "gold_ingot": 2 + } + }, + "agent_count": 2, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_piston_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "cobblestone": 2, + "iron_ingot": 1 + }, + "1": { + "oak_planks": 1, + "cobblestone": 2, + "redstone": 1 + } + }, + "agent_count": 2, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_campfire_0_with_plan_missing_coal_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an campfire", + "conversation": "Let's work together to craft an campfire.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "dark_oak_log": 2, + "iron_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "dark_oak_log": 1 + } + }, + "agent_count": 2, + "target": "campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "coal" + ] + }, + "multiagent_crafting_soul_torch_0_with_plan_missing_coal_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an soul_torch", + "conversation": "Let's work together to craft an soul_torch.", + "initial_inventory": { + "0": { + "stick": 1, + "iron_pickaxe": 1 + }, + "1": { + "soul_sand": 1 + } + }, + "agent_count": 2, + "target": "soul_torch", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "coal" + ] + }, + "multiagent_crafting_polished_blackstone_brick_wall_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_blackstone_brick_wall", + "conversation": "Let's work together to craft an polished_blackstone_brick_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 4 + }, + "1": { + "polished_blackstone": 4 + } + }, + "agent_count": 2, + "target": "polished_blackstone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_detector_rail_1_with_plan_missing_iron_ingot_stone_pressure_plate_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "redstone": 1, + "furnace": 1 + }, + "1": { + "stone_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot", + "stone_pressure_plate" + ] + }, + "multiagent_crafting_sticky_piston_0_with_plan_missing_cobblestone_iron_ingot_redstone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "oak_planks": 2, + "stone_pickaxe": 1, + "diamond_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "wooden_pickaxe": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "cobblestone", + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_anvil_1_with_plan_missing_iron_block_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an anvil", + "conversation": "Let's work together to craft an anvil.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 2 + } + }, + "agent_count": 2, + "target": "anvil", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_block" + ] + }, + "multiagent_crafting_deepslate_brick_wall_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an deepslate_brick_wall", + "conversation": "Let's work together to craft an deepslate_brick_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 4 + }, + "1": { + "polished_deepslate": 4 + } + }, + "agent_count": 2, + "target": "deepslate_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_comparator_1_with_plan_missing_stone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone_torch": 1, + "quartz": 1 + }, + "1": { + "redstone_torch": 2, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "stone" + ] + }, + "multiagent_crafting_purple_stained_glass_0_with_plan_missing_glass_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_stained_glass", + "conversation": "Let's work together to craft an purple_stained_glass.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "red_dye": 1 + } + }, + "agent_count": 2, + "target": "purple_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "glass" + ] + }, + "multiagent_crafting_chain_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an chain", + "conversation": "Let's work together to craft an chain.", + "initial_inventory": { + "0": { + "iron_nugget": 1, + "iron_ingot": 1 + }, + "1": { + "iron_nugget": 1 + } + }, + "agent_count": 2, + "target": "chain", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_andesite_wall_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an andesite_wall", + "conversation": "Let's work together to craft an andesite_wall.", + "initial_inventory": { + "0": { + "diorite": 2, + "cobblestone": 2 + }, + "1": { + "diorite": 1, + "cobblestone": 1 + } + }, + "agent_count": 2, + "target": "andesite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_target_1_with_plan_missing_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an target", + "conversation": "Let's work together to craft an target.", + "initial_inventory": { + "0": { + "hay_block": 1 + }, + "1": { + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "target", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_sticky_piston_1_with_plan_missing_cobblestone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "oak_planks": 2, + "redstone": 1 + }, + "1": { + "oak_planks": 1, + "iron_ingot": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_dispenser_0_with_plan_missing_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 4, + "bow": 1 + }, + "1": { + "cobblestone": 3, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_1_with_plan_missing_iron_ingot_redstone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "stick": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 1, + "stone_pickaxe": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_piston_0_with_plan_missing_cobblestone_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "1": { + "oak_planks": 2, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "cobblestone", + "redstone" + ] + }, + "multiagent_crafting_diamond_sword_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an diamond_sword", + "conversation": "Let's work together to craft an diamond_sword.", + "initial_inventory": { + "0": { + "diamond": 1, + "oak_planks": 1 + }, + "1": { + "diamond": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "diamond_sword", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_diorite_wall_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an diorite_wall", + "conversation": "Let's work together to craft an diorite_wall.", + "initial_inventory": { + "0": { + "diorite": 3 + }, + "1": { + "diorite": 3 + } + }, + "agent_count": 2, + "target": "diorite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lantern_1_with_plan_missing_iron_ingot_coal_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "stick": 1, + "furnace": 1 + }, + "1": { + "stone_pickaxe": 1, + "iron_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_polished_diorite_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_diorite", + "conversation": "Let's work together to craft an polished_diorite.", + "initial_inventory": { + "0": { + "diorite": 2 + }, + "1": { + "diorite": 2 + } + }, + "agent_count": 2, + "target": "polished_diorite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_andesite_wall_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an andesite_wall", + "conversation": "Let's work together to craft an andesite_wall.", + "initial_inventory": { + "0": { + "diorite": 2, + "cobblestone": 2 + }, + "1": { + "diorite": 1, + "cobblestone": 1 + } + }, + "agent_count": 2, + "target": "andesite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_piston_1_with_plan_missing_cobblestone_iron_ingot_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "redstone": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 2, + "wooden_pickaxe": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "cobblestone", + "iron_ingot" + ] + }, + "multiagent_crafting_bamboo_raft_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an bamboo_raft", + "conversation": "Let's work together to craft an bamboo_raft.", + "initial_inventory": { + "0": { + "bamboo_block": 2 + }, + "1": { + "bamboo_block": 1 + } + }, + "agent_count": 2, + "target": "bamboo_raft", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_detector_rail_1_with_plan_missing_stone_pressure_plate_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "diamond_pickaxe": 1 + }, + "1": { + "iron_ingot": 3 + } + }, + "agent_count": 2, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "stone_pressure_plate", + "redstone" + ] + }, + "multiagent_crafting_golden_pickaxe_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an golden_pickaxe", + "conversation": "Let's work together to craft an golden_pickaxe.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "oak_planks": 1 + }, + "1": { + "gold_ingot": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "golden_pickaxe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_nether_brick_wall_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an nether_brick_wall", + "conversation": "Let's work together to craft an nether_brick_wall.", + "initial_inventory": { + "0": { + "nether_bricks": 3 + }, + "1": { + "nether_bricks": 3 + } + }, + "agent_count": 2, + "target": "nether_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mossy_stone_brick_wall_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an mossy_stone_brick_wall", + "conversation": "Let's work together to craft an mossy_stone_brick_wall.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "moss_block": 3 + }, + "1": { + "stone_bricks": 3, + "moss_block": 3 + } + }, + "agent_count": 2, + "target": "mossy_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_detector_rail_1_with_plan_missing_iron_ingot_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "stone_pressure_plate": 1, + "furnace": 1 + }, + "1": { + "stone_pickaxe": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_stone_axe_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an stone_axe", + "conversation": "Let's work together to craft an stone_axe.", + "initial_inventory": { + "0": { + "cobblestone": 2, + "oak_planks": 1 + }, + "1": { + "cobblestone": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "stone_axe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_granite_wall_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an granite_wall", + "conversation": "Let's work together to craft an granite_wall.", + "initial_inventory": { + "0": { + "granite": 3 + }, + "1": { + "granite": 3 + } + }, + "agent_count": 2, + "target": "granite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_1_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "oak_planks": 1, + "cobblestone": 2, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 2, + "cobblestone": 2, + "redstone": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_repeater_1_with_plan_missing_redstone_stone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone_torch": 1, + "diamond_pickaxe": 1 + }, + "1": { + "redstone_torch": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone", + "stone" + ] + }, + "multiagent_crafting_diamond_pickaxe_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an diamond_pickaxe", + "conversation": "Let's work together to craft an diamond_pickaxe.", + "initial_inventory": { + "0": { + "diamond": 2, + "oak_planks": 1 + }, + "1": { + "diamond": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "diamond_pickaxe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_terracotta_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_terracotta", + "conversation": "Let's work together to craft an purple_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 4, + "purple_dye": 1 + }, + "1": { + "terracotta": 4 + } + }, + "agent_count": 2, + "target": "purple_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_lantern_1_with_plan_missing_coal_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "soul_sand": 1 + }, + "1": { + "stick": 1, + "iron_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "coal" + ] + }, + "multiagent_crafting_blue_ice_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an blue_ice", + "conversation": "Let's work together to craft an blue_ice.", + "initial_inventory": { + "0": { + "packed_ice": 5 + }, + "1": { + "packed_ice": 4 + } + }, + "agent_count": 2, + "target": "blue_ice", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_diamond_hoe_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an diamond_hoe", + "conversation": "Let's work together to craft an diamond_hoe.", + "initial_inventory": { + "0": { + "diamond": 1, + "oak_planks": 1 + }, + "1": { + "diamond": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "diamond_hoe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mud_brick_wall_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an mud_brick_wall", + "conversation": "Let's work together to craft an mud_brick_wall.", + "initial_inventory": { + "0": { + "mud_bricks": 3 + }, + "1": { + "mud_bricks": 3 + } + }, + "agent_count": 2, + "target": "mud_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mossy_stone_brick_wall_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an mossy_stone_brick_wall", + "conversation": "Let's work together to craft an mossy_stone_brick_wall.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "moss_block": 3 + }, + "1": { + "stone_bricks": 3, + "moss_block": 3 + } + }, + "agent_count": 2, + "target": "mossy_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_detector_rail_0_with_plan_missing_stone_pressure_plate_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "diamond_pickaxe": 1 + }, + "1": { + "iron_ingot": 3 + } + }, + "agent_count": 2, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "stone_pressure_plate", + "redstone" + ] + }, + "multiagent_crafting_dispenser_1_with_plan_missing_cobblestone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "stick": 1, + "string": 2, + "redstone": 1 + }, + "1": { + "stick": 2, + "string": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_diorite_wall_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an diorite_wall", + "conversation": "Let's work together to craft an diorite_wall.", + "initial_inventory": { + "0": { + "diorite": 3 + }, + "1": { + "diorite": 3 + } + }, + "agent_count": 2, + "target": "diorite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_enchanting_table_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an enchanting_table", + "conversation": "Let's work together to craft an enchanting_table.", + "initial_inventory": { + "0": { + "paper": 2, + "leather": 1, + "diamond": 1, + "obsidian": 2 + }, + "1": { + "paper": 1, + "diamond": 1, + "obsidian": 2 + } + }, + "agent_count": 2, + "target": "enchanting_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brick_wall_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an brick_wall", + "conversation": "Let's work together to craft an brick_wall.", + "initial_inventory": { + "0": { + "bricks": 3 + }, + "1": { + "bricks": 3 + } + }, + "agent_count": 2, + "target": "brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_golden_hoe_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an golden_hoe", + "conversation": "Let's work together to craft an golden_hoe.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 1 + }, + "1": { + "gold_ingot": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "golden_hoe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_sandstone_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_sandstone", + "conversation": "Let's work together to craft an chiseled_sandstone.", + "initial_inventory": { + "0": { + "sandstone_slab": 1 + }, + "1": { + "sandstone_slab": 1 + } + }, + "agent_count": 2, + "target": "chiseled_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_campfire_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an campfire", + "conversation": "Let's work together to craft an campfire.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "coal": 1, + "dark_oak_log": 2 + }, + "1": { + "oak_planks": 1, + "dark_oak_log": 1 + } + }, + "agent_count": 2, + "target": "campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_deepslate_wall_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_deepslate_wall", + "conversation": "Let's work together to craft an polished_deepslate_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 3 + }, + "1": { + "polished_deepslate": 3 + } + }, + "agent_count": 2, + "target": "polished_deepslate_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_1_with_plan_missing_cobblestone_redstone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "oak_planks": 1, + "wooden_pickaxe": 1 + }, + "1": { + "oak_planks": 2, + "iron_ingot": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "cobblestone", + "redstone" + ] + }, + "multiagent_crafting_bamboo_mosaic_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an bamboo_mosaic", + "conversation": "Let's work together to craft an bamboo_mosaic.", + "initial_inventory": { + "0": { + "bamboo_block": 1 + }, + "1": { + "bamboo_block": 1 + } + }, + "agent_count": 2, + "target": "bamboo_mosaic", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bamboo_mosaic_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an bamboo_mosaic", + "conversation": "Let's work together to craft an bamboo_mosaic.", + "initial_inventory": { + "0": { + "bamboo_block": 1 + }, + "1": { + "bamboo_block": 1 + } + }, + "agent_count": 2, + "target": "bamboo_mosaic", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 4 + }, + "1": { + "polished_deepslate": 4 + } + }, + "agent_count": 2, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 4 + }, + "1": { + "polished_deepslate": 4 + } + }, + "agent_count": 2, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_carpet_0_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_carpet", + "conversation": "Let's work together to craft an cyan_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "shears": 1 + }, + "1": { + "green_dye": 1 + } + }, + "agent_count": 2, + "target": "cyan_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_carpet_1_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_carpet", + "conversation": "Let's work together to craft an cyan_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "shears": 1 + }, + "1": { + "green_dye": 1 + } + }, + "agent_count": 2, + "target": "cyan_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_carpet_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_carpet", + "conversation": "Let's work together to craft an cyan_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "black_wool": 1 + }, + "1": { + "green_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "cyan_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_carpet_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_carpet", + "conversation": "Let's work together to craft an cyan_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "black_wool": 1 + }, + "1": { + "green_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "cyan_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_0_with_plan_missing_redstone_stone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "diamond_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone", + "stone" + ] + }, + "multiagent_crafting_repeater_1_with_plan_missing_redstone_stone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "diamond_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone", + "stone" + ] + }, + "multiagent_crafting_repeater_0_with_plan_missing_stone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone": 2, + "oak_planks": 1, + "wooden_pickaxe": 1 + }, + "1": { + "redstone": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "stone" + ] + }, + "multiagent_crafting_repeater_1_with_plan_missing_stone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone": 2, + "oak_planks": 1, + "wooden_pickaxe": 1 + }, + "1": { + "redstone": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "stone" + ] + }, + "multiagent_crafting_repeater_0_with_plan_missing_redstone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "stone": 2, + "diamond_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "stone": 1 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_repeater_1_with_plan_missing_redstone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "stone": 2, + "diamond_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "stone": 1 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_repeater_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone": 2, + "oak_planks": 1, + "stone": 1 + }, + "1": { + "redstone": 1, + "oak_planks": 1, + "stone": 2 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone": 2, + "oak_planks": 1, + "stone": 1 + }, + "1": { + "redstone": 1, + "oak_planks": 1, + "stone": 2 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_comparator_0_with_plan_missing_redstone_stone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "quartz": 1, + "wooden_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone", + "stone" + ] + }, + "multiagent_crafting_comparator_1_with_plan_missing_redstone_stone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "quartz": 1, + "wooden_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone", + "stone" + ] + }, + "multiagent_crafting_comparator_0_with_plan_missing_stone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone": 1, + "oak_planks": 1, + "quartz": 1 + }, + "1": { + "redstone": 2, + "oak_planks": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "stone" + ] + }, + "multiagent_crafting_comparator_1_with_plan_missing_stone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone": 1, + "oak_planks": 1, + "quartz": 1 + }, + "1": { + "redstone": 2, + "oak_planks": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "stone" + ] + }, + "multiagent_crafting_comparator_0_with_plan_missing_redstone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "quartz": 1, + "stone": 1 + }, + "1": { + "oak_planks": 1, + "stone": 2, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_comparator_1_with_plan_missing_redstone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "quartz": 1, + "stone": 1 + }, + "1": { + "oak_planks": 1, + "stone": 2, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_comparator_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone": 1, + "oak_planks": 1, + "quartz": 1, + "stone": 1 + }, + "1": { + "redstone": 2, + "oak_planks": 1, + "stone": 2 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_comparator_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone": 1, + "oak_planks": 1, + "quartz": 1, + "stone": 1 + }, + "1": { + "redstone": 2, + "oak_planks": 1, + "stone": 2 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_0_with_plan_missing_cobblestone_redstone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "string": 1, + "wooden_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "string": 2, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "cobblestone", + "redstone" + ] + }, + "multiagent_crafting_dispenser_1_with_plan_missing_cobblestone_redstone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "string": 1, + "wooden_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "string": 2, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "cobblestone", + "redstone" + ] + }, + "multiagent_crafting_dispenser_0_with_plan_missing_redstone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 4, + "oak_planks": 1, + "string": 1, + "diamond_pickaxe": 1 + }, + "1": { + "cobblestone": 3, + "oak_planks": 1, + "string": 2 + } + }, + "agent_count": 2, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_dispenser_1_with_plan_missing_redstone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 4, + "oak_planks": 1, + "string": 1, + "diamond_pickaxe": 1 + }, + "1": { + "cobblestone": 3, + "oak_planks": 1, + "string": 2 + } + }, + "agent_count": 2, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_dispenser_0_with_plan_missing_cobblestone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "string": 1, + "redstone": 1 + }, + "1": { + "oak_planks": 1, + "string": 2, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_dispenser_1_with_plan_missing_cobblestone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "string": 1, + "redstone": 1 + }, + "1": { + "oak_planks": 1, + "string": 2, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_dispenser_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 3, + "oak_planks": 1, + "string": 1, + "redstone": 1 + }, + "1": { + "cobblestone": 4, + "oak_planks": 1, + "string": 2 + } + }, + "agent_count": 2, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 3, + "oak_planks": 1, + "string": 1, + "redstone": 1 + }, + "1": { + "cobblestone": 4, + "oak_planks": 1, + "string": 2 + } + }, + "agent_count": 2, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_trapped_chest_0_with_plan_missing_iron_ingot_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an trapped_chest", + "conversation": "Let's work together to craft an trapped_chest.", + "initial_inventory": { + "0": { + "oak_log": 1, + "oak_planks": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_log": 2, + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "trapped_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_trapped_chest_1_with_plan_missing_iron_ingot_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an trapped_chest", + "conversation": "Let's work together to craft an trapped_chest.", + "initial_inventory": { + "0": { + "oak_log": 1, + "oak_planks": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_log": 2, + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "trapped_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_activator_rail_0_with_plan_missing_iron_ingot_redstone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "oak_log": 1, + "oak_planks": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 1, + "stone_pickaxe": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_activator_rail_1_with_plan_missing_iron_ingot_redstone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "oak_log": 1, + "oak_planks": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 1, + "stone_pickaxe": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_activator_rail_0_with_plan_missing_redstone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_log": 1, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 3, + "oak_planks": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_1_with_plan_missing_redstone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_log": 1, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 3, + "oak_planks": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_0_with_plan_missing_iron_ingot_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "oak_log": 1, + "oak_planks": 1, + "stone_pickaxe": 1 + }, + "1": { + "redstone": 1, + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_activator_rail_1_with_plan_missing_iron_ingot_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "oak_log": 1, + "oak_planks": 1, + "stone_pickaxe": 1 + }, + "1": { + "redstone": 1, + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_activator_rail_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_log": 1, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 3, + "redstone": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_log": 1, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 3, + "redstone": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_glow_item_frame_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an glow_item_frame", + "conversation": "Let's work together to craft an glow_item_frame.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "rabbit_hide": 2, + "glow_ink_sac": 1 + }, + "1": { + "oak_planks": 2, + "rabbit_hide": 2 + } + }, + "agent_count": 2, + "target": "glow_item_frame", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_glow_item_frame_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an glow_item_frame", + "conversation": "Let's work together to craft an glow_item_frame.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "rabbit_hide": 2, + "glow_ink_sac": 1 + }, + "1": { + "oak_planks": 2, + "rabbit_hide": 2 + } + }, + "agent_count": 2, + "target": "glow_item_frame", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_0_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 2, + "red_dye": 1, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "red_dye": 2, + "shears": 1 + } + }, + "agent_count": 2, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_purple_banner_1_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 2, + "red_dye": 1, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "red_dye": 2, + "shears": 1 + } + }, + "agent_count": 2, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_purple_banner_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 2, + "red_dye": 2, + "black_wool": 3, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "red_dye": 1, + "black_wool": 3 + } + }, + "agent_count": 2, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 2, + "red_dye": 2, + "black_wool": 3, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "red_dye": 1, + "black_wool": 3 + } + }, + "agent_count": 2, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_crossbow_0_with_plan_missing_iron_ingot_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an crossbow", + "conversation": "Let's work together to craft an crossbow.", + "initial_inventory": { + "0": { + "oak_log": 1, + "string": 1, + "oak_planks": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_log": 1, + "string": 1, + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "crossbow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_crossbow_1_with_plan_missing_iron_ingot_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an crossbow", + "conversation": "Let's work together to craft an crossbow.", + "initial_inventory": { + "0": { + "oak_log": 1, + "string": 1, + "oak_planks": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_log": 1, + "string": 1, + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "crossbow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_crossbow_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an crossbow", + "conversation": "Let's work together to craft an crossbow.", + "initial_inventory": { + "0": { + "oak_log": 1, + "iron_ingot": 1, + "string": 1, + "oak_planks": 1 + }, + "1": { + "oak_log": 1, + "iron_ingot": 1, + "string": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "crossbow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_crossbow_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an crossbow", + "conversation": "Let's work together to craft an crossbow.", + "initial_inventory": { + "0": { + "oak_log": 1, + "iron_ingot": 1, + "string": 1, + "oak_planks": 1 + }, + "1": { + "oak_log": 1, + "iron_ingot": 1, + "string": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "crossbow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lantern_0_with_plan_missing_iron_ingot_coal_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "stone_pickaxe": 1, + "iron_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_lantern_1_with_plan_missing_iron_ingot_coal_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "stone_pickaxe": 1, + "iron_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_lantern_0_with_plan_missing_coal_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "1": { + "oak_planks": 1, + "iron_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "coal" + ] + }, + "multiagent_crafting_lantern_1_with_plan_missing_coal_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "1": { + "oak_planks": 1, + "iron_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "coal" + ] + }, + "multiagent_crafting_lantern_0_with_plan_missing_iron_ingot_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "coal": 1, + "oak_planks": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 1, + "stone_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_lantern_1_with_plan_missing_iron_ingot_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "coal": 1, + "oak_planks": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 1, + "stone_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_lantern_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "1": { + "coal": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lantern_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "1": { + "coal": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_lantern_0_with_plan_missing_iron_ingot_coal_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "soul_sand": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 1, + "stone_pickaxe": 1, + "iron_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_soul_lantern_1_with_plan_missing_iron_ingot_coal_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "soul_sand": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 1, + "stone_pickaxe": 1, + "iron_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_soul_lantern_0_with_plan_missing_coal_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 1, + "iron_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "soul_sand": 1 + } + }, + "agent_count": 2, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "coal" + ] + }, + "multiagent_crafting_soul_lantern_1_with_plan_missing_coal_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 1, + "iron_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "soul_sand": 1 + } + }, + "agent_count": 2, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "coal" + ] + }, + "multiagent_crafting_soul_lantern_0_with_plan_missing_iron_ingot_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "coal": 1, + "oak_planks": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "soul_sand": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_soul_lantern_1_with_plan_missing_iron_ingot_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "coal": 1, + "oak_planks": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "soul_sand": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_soul_lantern_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 1, + "soul_sand": 1 + }, + "1": { + "coal": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_lantern_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 1, + "soul_sand": 1 + }, + "1": { + "coal": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_0_with_plan_missing_stone_bricks_gold_ingot_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 2, + "iron_pickaxe": 1 + }, + "1": { + "netherite_scrap": 2, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "stone_bricks", + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_1_with_plan_missing_stone_bricks_gold_ingot_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 2, + "iron_pickaxe": 1 + }, + "1": { + "netherite_scrap": 2, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "stone_bricks", + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_0_with_plan_missing_gold_ingot_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 4, + "netherite_scrap": 2, + "iron_pickaxe": 1 + }, + "1": { + "stone_bricks": 5, + "netherite_scrap": 2, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_1_with_plan_missing_gold_ingot_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 4, + "netherite_scrap": 2, + "iron_pickaxe": 1 + }, + "1": { + "stone_bricks": 5, + "netherite_scrap": 2, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_0_with_plan_missing_stone_bricks_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 2, + "gold_ingot": 2 + }, + "1": { + "netherite_scrap": 2, + "gold_ingot": 2 + } + }, + "agent_count": 2, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "stone_bricks" + ] + }, + "multiagent_crafting_lodestone_1_with_plan_missing_stone_bricks_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 2, + "gold_ingot": 2 + }, + "1": { + "netherite_scrap": 2, + "gold_ingot": 2 + } + }, + "agent_count": 2, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "stone_bricks" + ] + }, + "multiagent_crafting_lodestone_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 5, + "netherite_scrap": 2, + "gold_ingot": 2 + }, + "1": { + "stone_bricks": 4, + "netherite_scrap": 2, + "gold_ingot": 2 + } + }, + "agent_count": 2, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 5, + "netherite_scrap": 2, + "gold_ingot": 2 + }, + "1": { + "stone_bricks": 4, + "netherite_scrap": 2, + "gold_ingot": 2 + } + }, + "agent_count": 2, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/train_tasks/tasks_2_agents_stats.txt b/tasks/crafting_tasks/train_tasks/tasks_2_agents_stats.txt new file mode 100644 index 0000000..f6c5fea --- /dev/null +++ b/tasks/crafting_tasks/train_tasks/tasks_2_agents_stats.txt @@ -0,0 +1,16 @@ +{ + "num_tasks": 276, + "avg_depth": 2.260869565217391, + "std_depth": 0.7642780796194337, + "num_tasks_based_depth": { + "0": 100, + "1": 100, + "2": 76 + }, + "num_missing_resources": { + "0": 148, + "1": 91, + "2": 35, + "3": 2 + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/train_tasks/tasks_3_agents.json b/tasks/crafting_tasks/train_tasks/tasks_3_agents.json new file mode 100644 index 0000000..3edef3a --- /dev/null +++ b/tasks/crafting_tasks/train_tasks/tasks_3_agents.json @@ -0,0 +1,9278 @@ +{ + "multiagent_crafting_polished_diorite_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_diorite", + "conversation": "Let's work together to craft an polished_diorite.", + "initial_inventory": { + "0": { + "diorite": 2 + }, + "1": { + "diorite": 1 + }, + "2": { + "diorite": 1 + } + }, + "agent_count": 3, + "target": "polished_diorite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_stained_glass_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_stained_glass", + "conversation": "Let's work together to craft an purple_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "blue_dye": 1 + }, + "1": { + "glass": 4, + "red_dye": 1 + }, + "2": { + "glass": 2 + } + }, + "agent_count": 3, + "target": "purple_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_terracotta_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an magenta_terracotta", + "conversation": "Let's work together to craft an magenta_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 4, + "magenta_dye": 1 + }, + "1": { + "terracotta": 2 + }, + "2": { + "terracotta": 2 + } + }, + "agent_count": 3, + "target": "magenta_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_nether_bricks_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an chiseled_nether_bricks", + "conversation": "Let's work together to craft an chiseled_nether_bricks.", + "initial_inventory": { + "0": { + "nether_bricks": 1 + }, + "1": { + "nether_bricks": 1 + }, + "2": { + "nether_bricks": 1 + } + }, + "agent_count": 3, + "target": "chiseled_nether_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_enchanting_table_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an enchanting_table", + "conversation": "Let's work together to craft an enchanting_table.", + "initial_inventory": { + "0": { + "book": 1, + "obsidian": 1 + }, + "1": { + "diamond": 2, + "obsidian": 2 + }, + "2": { + "obsidian": 1 + } + }, + "agent_count": 3, + "target": "enchanting_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_granite_wall_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an granite_wall", + "conversation": "Let's work together to craft an granite_wall.", + "initial_inventory": { + "0": { + "diorite": 2, + "quartz": 2 + }, + "1": { + "diorite": 2, + "quartz": 2 + }, + "2": { + "diorite": 2, + "quartz": 2 + } + }, + "agent_count": 3, + "target": "granite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_comparator_0_with_plan_missing_redstone_torch_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "quartz": 1, + "stone": 1 + }, + "1": { + "stone": 1 + }, + "2": { + "stone": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone_torch" + ] + }, + "multiagent_crafting_deepslate_brick_wall_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an deepslate_brick_wall", + "conversation": "Let's work together to craft an deepslate_brick_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 2 + }, + "1": { + "polished_deepslate": 4 + }, + "2": { + "polished_deepslate": 2 + } + }, + "agent_count": 3, + "target": "deepslate_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_diorite_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_diorite", + "conversation": "Let's work together to craft an polished_diorite.", + "initial_inventory": { + "0": { + "diorite": 2 + }, + "1": { + "diorite": 1 + }, + "2": { + "diorite": 1 + } + }, + "agent_count": 3, + "target": "polished_diorite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_banner_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_dye": 2, + "oak_planks": 2 + }, + "1": { + "light_gray_dye": 2, + "shears": 1 + }, + "2": { + "light_gray_dye": 2 + } + }, + "agent_count": 3, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_blast_furnace_2_with_plan_missing_iron_ingot_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "furnace": 1, + "smooth_stone": 1 + }, + "1": { + "smooth_stone": 1, + "stone_pickaxe": 1 + }, + "2": { + "smooth_stone": 1, + "furnace": 1 + } + }, + "agent_count": 3, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_soul_lantern_0_with_plan_missing_iron_ingot_coal_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "stick": 1, + "furnace": 1 + }, + "1": { + "soul_sand": 1, + "iron_pickaxe": 1 + }, + "2": { + "stone_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_diorite_wall_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an diorite_wall", + "conversation": "Let's work together to craft an diorite_wall.", + "initial_inventory": { + "0": { + "diorite": 2 + }, + "1": { + "diorite": 2 + }, + "2": { + "diorite": 2 + } + }, + "agent_count": 3, + "target": "diorite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_banner_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "orange_dye": 2, + "black_wool": 2 + }, + "2": { + "orange_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_comparator_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone_torch": 1, + "quartz": 1, + "stone": 1 + }, + "1": { + "redstone_torch": 1, + "stone": 1 + }, + "2": { + "redstone_torch": 1, + "stone": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_candle_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_candle", + "conversation": "Let's work together to craft an purple_candle.", + "initial_inventory": { + "0": { + "string": 1, + "red_dye": 1 + }, + "1": { + "honeycomb": 1 + }, + "2": { + "blue_dye": 1 + } + }, + "agent_count": 3, + "target": "purple_candle", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_end_stone_brick_wall_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an end_stone_brick_wall", + "conversation": "Let's work together to craft an end_stone_brick_wall.", + "initial_inventory": { + "0": { + "end_stone_bricks": 2 + }, + "1": { + "end_stone_bricks": 2 + }, + "2": { + "end_stone_bricks": 2 + } + }, + "agent_count": 3, + "target": "end_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_brick_wall_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_blackstone_brick_wall", + "conversation": "Let's work together to craft an polished_blackstone_brick_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 2 + }, + "1": { + "polished_blackstone": 4 + }, + "2": { + "polished_blackstone": 2 + } + }, + "agent_count": 3, + "target": "polished_blackstone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_sandstone_wall_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an red_sandstone_wall", + "conversation": "Let's work together to craft an red_sandstone_wall.", + "initial_inventory": { + "0": { + "red_sandstone": 2 + }, + "1": { + "red_sandstone": 2 + }, + "2": { + "red_sandstone": 2 + } + }, + "agent_count": 3, + "target": "red_sandstone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_grindstone_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an grindstone", + "conversation": "Let's work together to craft an grindstone.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "stone": 1 + }, + "1": { + "stone": 1, + "oak_log": 1 + }, + "2": { + "stone": 1 + } + }, + "agent_count": 3, + "target": "grindstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brick_wall_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an brick_wall", + "conversation": "Let's work together to craft an brick_wall.", + "initial_inventory": { + "0": { + "bricks": 2 + }, + "1": { + "bricks": 2 + }, + "2": { + "bricks": 2 + } + }, + "agent_count": 3, + "target": "brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_stone_axe_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an stone_axe", + "conversation": "Let's work together to craft an stone_axe.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 1 + }, + "2": { + "cobblestone": 1 + } + }, + "agent_count": 3, + "target": "stone_axe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_piston_1_with_plan_missing_cobblestone_iron_ingot_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "redstone": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 1, + "wooden_pickaxe": 1 + }, + "2": { + "oak_planks": 1, + "stone_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "cobblestone", + "iron_ingot" + ] + }, + "multiagent_crafting_waxed_cut_copper_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an waxed_cut_copper", + "conversation": "Let's work together to craft an waxed_cut_copper.", + "initial_inventory": { + "0": { + "copper_block": 1, + "honeycomb": 1 + }, + "1": { + "copper_block": 2, + "honeycomb": 2 + }, + "2": { + "copper_block": 1, + "honeycomb": 1 + } + }, + "agent_count": 3, + "target": "waxed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_terracotta_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_terracotta", + "conversation": "Let's work together to craft an purple_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 2, + "purple_dye": 1 + }, + "1": { + "terracotta": 2 + }, + "2": { + "terracotta": 4 + } + }, + "agent_count": 3, + "target": "purple_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_granite_wall_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an granite_wall", + "conversation": "Let's work together to craft an granite_wall.", + "initial_inventory": { + "0": { + "diorite": 2, + "quartz": 2 + }, + "1": { + "diorite": 2, + "quartz": 2 + }, + "2": { + "diorite": 2, + "quartz": 2 + } + }, + "agent_count": 3, + "target": "granite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone_torch": 2, + "stone": 1 + }, + "1": { + "redstone": 1, + "stone": 1 + }, + "2": { + "stone": 1 + } + }, + "agent_count": 3, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_enchanting_table_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an enchanting_table", + "conversation": "Let's work together to craft an enchanting_table.", + "initial_inventory": { + "0": { + "paper": 1, + "leather": 1, + "obsidian": 1 + }, + "1": { + "paper": 1, + "diamond": 2, + "obsidian": 1 + }, + "2": { + "paper": 1, + "obsidian": 2 + } + }, + "agent_count": 3, + "target": "enchanting_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_stone_brick_wall_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an stone_brick_wall", + "conversation": "Let's work together to craft an stone_brick_wall.", + "initial_inventory": { + "0": { + "stone_bricks": 2 + }, + "1": { + "stone_bricks": 2 + }, + "2": { + "stone_bricks": 2 + } + }, + "agent_count": 3, + "target": "stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bamboo_mosaic_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an bamboo_mosaic", + "conversation": "Let's work together to craft an bamboo_mosaic.", + "initial_inventory": { + "0": { + "bamboo_planks": 1 + }, + "1": { + "bamboo_planks": 1 + }, + "2": { + "bamboo_planks": 1 + } + }, + "agent_count": 3, + "target": "bamboo_mosaic", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chain_2_with_plan_missing_iron_ingot_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an chain", + "conversation": "Let's work together to craft an chain.", + "initial_inventory": { + "0": { + "iron_nugget": 2 + }, + "1": { + "stone_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "chain", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_soul_lantern_1_with_plan_missing_iron_ingot_coal_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "stick": 1, + "furnace": 1 + }, + "1": { + "soul_sand": 1, + "iron_pickaxe": 1 + }, + "2": { + "stone_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_enchanting_table_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an enchanting_table", + "conversation": "Let's work together to craft an enchanting_table.", + "initial_inventory": { + "0": { + "book": 1, + "obsidian": 1 + }, + "1": { + "diamond": 2, + "obsidian": 2 + }, + "2": { + "obsidian": 1 + } + }, + "agent_count": 3, + "target": "enchanting_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tiles_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an deepslate_tiles", + "conversation": "Let's work together to craft an deepslate_tiles.", + "initial_inventory": { + "0": { + "polished_deepslate": 1 + }, + "1": { + "polished_deepslate": 2 + }, + "2": { + "polished_deepslate": 1 + } + }, + "agent_count": 3, + "target": "deepslate_tiles", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_banner_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_wool": 2, + "stick": 1 + }, + "1": { + "yellow_wool": 2 + }, + "2": { + "yellow_wool": 2 + } + }, + "agent_count": 3, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_terracotta_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_terracotta", + "conversation": "Let's work together to craft an cyan_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 2, + "blue_dye": 1 + }, + "1": { + "terracotta": 2, + "green_dye": 1 + }, + "2": { + "terracotta": 4 + } + }, + "agent_count": 3, + "target": "cyan_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_cut_copper_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an waxed_cut_copper", + "conversation": "Let's work together to craft an waxed_cut_copper.", + "initial_inventory": { + "0": { + "waxed_copper_block": 2 + }, + "1": { + "waxed_copper_block": 1 + }, + "2": { + "waxed_copper_block": 1 + } + }, + "agent_count": 3, + "target": "waxed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_banner_0_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_dye": 2, + "oak_planks": 2 + }, + "1": { + "light_gray_dye": 2, + "shears": 1 + }, + "2": { + "light_gray_dye": 2 + } + }, + "agent_count": 3, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_map_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an map", + "conversation": "Let's work together to craft an map.", + "initial_inventory": { + "0": { + "paper": 4, + "compass": 1 + }, + "1": { + "paper": 2 + }, + "2": { + "paper": 2 + } + }, + "agent_count": 3, + "target": "map", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_campfire_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an campfire", + "conversation": "Let's work together to craft an campfire.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "dark_oak_log": 1 + }, + "1": { + "coal": 1, + "dark_oak_log": 1 + }, + "2": { + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "target": "campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_end_crystal_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an end_crystal", + "conversation": "Let's work together to craft an end_crystal.", + "initial_inventory": { + "0": { + "glass": 2, + "ender_eye": 1 + }, + "1": { + "glass": 3, + "ghast_tear": 1 + }, + "2": { + "glass": 2 + } + }, + "agent_count": 3, + "target": "end_crystal", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_banner_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "magenta_dye": 2, + "black_wool": 2 + }, + "2": { + "magenta_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_piston_0_with_plan_missing_cobblestone_redstone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "1": { + "oak_planks": 1, + "wooden_pickaxe": 1 + }, + "2": { + "oak_planks": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "cobblestone", + "redstone" + ] + }, + "multiagent_crafting_iron_axe_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an iron_axe", + "conversation": "Let's work together to craft an iron_axe.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + } + }, + "agent_count": 3, + "target": "iron_axe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_golden_carrot_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an golden_carrot", + "conversation": "Let's work together to craft an golden_carrot.", + "initial_inventory": { + "0": { + "gold_nugget": 2, + "carrot": 1 + }, + "1": { + "gold_nugget": 4 + }, + "2": { + "gold_nugget": 2 + } + }, + "agent_count": 3, + "target": "golden_carrot", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_brick_wall_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_blackstone_brick_wall", + "conversation": "Let's work together to craft an polished_blackstone_brick_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 2 + }, + "1": { + "polished_blackstone": 4 + }, + "2": { + "polished_blackstone": 2 + } + }, + "agent_count": 3, + "target": "polished_blackstone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_stone_brick_wall_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an stone_brick_wall", + "conversation": "Let's work together to craft an stone_brick_wall.", + "initial_inventory": { + "0": { + "stone_bricks": 2 + }, + "1": { + "stone_bricks": 2 + }, + "2": { + "stone_bricks": 2 + } + }, + "agent_count": 3, + "target": "stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_lantern_2_with_plan_missing_iron_ingot_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "coal": 1, + "stone_pickaxe": 1 + }, + "1": { + "stick": 1, + "furnace": 1 + }, + "2": { + "soul_sand": 1 + } + }, + "agent_count": 3, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_blast_furnace_0_with_plan_missing_furnace_smooth_stone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 3 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + } + }, + "agent_count": 3, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "furnace", + "smooth_stone" + ] + }, + "multiagent_crafting_armor_stand_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an armor_stand", + "conversation": "Let's work together to craft an armor_stand.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "smooth_stone": 1 + }, + "1": { + "oak_planks": 2, + "smooth_stone": 1 + }, + "2": { + "oak_planks": 1, + "smooth_stone": 1 + } + }, + "agent_count": 3, + "target": "armor_stand", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_2_with_plan_missing_redstone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 2, + "bow": 1 + }, + "1": { + "cobblestone": 3, + "diamond_pickaxe": 1 + }, + "2": { + "cobblestone": 2 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_armor_stand_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an armor_stand", + "conversation": "Let's work together to craft an armor_stand.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "smooth_stone": 1 + }, + "1": { + "oak_planks": 2, + "smooth_stone": 1 + }, + "2": { + "oak_planks": 1, + "smooth_stone": 1 + } + }, + "agent_count": 3, + "target": "armor_stand", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_wall_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_blackstone_wall", + "conversation": "Let's work together to craft an polished_blackstone_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 2 + }, + "1": { + "polished_blackstone": 2 + }, + "2": { + "polished_blackstone": 2 + } + }, + "agent_count": 3, + "target": "polished_blackstone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_campfire_1_with_plan_missing_coal_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an campfire", + "conversation": "Let's work together to craft an campfire.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "dark_oak_log": 1 + }, + "1": { + "dark_oak_log": 1, + "iron_pickaxe": 1 + }, + "2": { + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "target": "campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "coal" + ] + }, + "multiagent_crafting_anvil_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an anvil", + "conversation": "Let's work together to craft an anvil.", + "initial_inventory": { + "0": { + "iron_block": 1, + "iron_ingot": 1 + }, + "1": { + "iron_block": 1, + "iron_ingot": 1 + }, + "2": { + "iron_block": 1, + "iron_ingot": 2 + } + }, + "agent_count": 3, + "target": "anvil", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_candle_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_candle", + "conversation": "Let's work together to craft an cyan_candle.", + "initial_inventory": { + "0": { + "string": 1, + "green_dye": 1 + }, + "1": { + "honeycomb": 1 + }, + "2": { + "blue_dye": 1 + } + }, + "agent_count": 3, + "target": "cyan_candle", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_1_with_plan_missing_redstone_stone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone_torch": 2 + }, + "1": { + "diamond_pickaxe": 1 + }, + "2": { + "wooden_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone", + "stone" + ] + }, + "multiagent_crafting_chiseled_sandstone_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an chiseled_sandstone", + "conversation": "Let's work together to craft an chiseled_sandstone.", + "initial_inventory": { + "0": { + "sandstone": 1 + }, + "1": { + "sandstone": 1 + }, + "2": { + "sandstone": 1 + } + }, + "agent_count": 3, + "target": "chiseled_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_wall_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_blackstone_wall", + "conversation": "Let's work together to craft an polished_blackstone_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 2 + }, + "1": { + "polished_blackstone": 2 + }, + "2": { + "polished_blackstone": 2 + } + }, + "agent_count": 3, + "target": "polished_blackstone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_campfire_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an campfire", + "conversation": "Let's work together to craft an campfire.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "dark_oak_log": 1 + }, + "1": { + "coal": 1, + "dark_oak_log": 1 + }, + "2": { + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "target": "campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_piston_1_with_plan_missing_cobblestone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "1": { + "oak_planks": 1, + "redstone": 1 + }, + "2": { + "oak_planks": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_mossy_stone_brick_wall_2_with_plan_missing_stone_bricks_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an mossy_stone_brick_wall", + "conversation": "Let's work together to craft an mossy_stone_brick_wall.", + "initial_inventory": { + "0": { + "moss_block": 2 + }, + "1": { + "moss_block": 2 + }, + "2": { + "moss_block": 2 + } + }, + "agent_count": 3, + "target": "mossy_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "stone_bricks" + ] + }, + "multiagent_crafting_crossbow_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an crossbow", + "conversation": "Let's work together to craft an crossbow.", + "initial_inventory": { + "0": { + "stick": 1, + "iron_ingot": 1 + }, + "1": { + "stick": 1, + "string": 2 + }, + "2": { + "stick": 1, + "tripwire_hook": 1 + } + }, + "agent_count": 3, + "target": "crossbow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mossy_stone_brick_wall_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an mossy_stone_brick_wall", + "conversation": "Let's work together to craft an mossy_stone_brick_wall.", + "initial_inventory": { + "0": { + "stone_bricks": 2, + "moss_block": 2 + }, + "1": { + "stone_bricks": 2, + "moss_block": 2 + }, + "2": { + "stone_bricks": 2, + "moss_block": 2 + } + }, + "agent_count": 3, + "target": "mossy_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_banner_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_wool": 2, + "stick": 1 + }, + "1": { + "orange_wool": 2 + }, + "2": { + "orange_wool": 2 + } + }, + "agent_count": 3, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_brick_slab": 5, + "netherite_scrap": 1, + "gold_ingot": 2 + }, + "1": { + "stone_brick_slab": 6, + "netherite_scrap": 2, + "gold_ingot": 1 + }, + "2": { + "stone_brick_slab": 5, + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_piston_2_with_plan_missing_redstone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "cobblestone": 1, + "iron_ingot": 1 + }, + "1": { + "oak_planks": 1, + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "2": { + "oak_planks": 1, + "cobblestone": 2 + } + }, + "agent_count": 3, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_chiseled_red_sandstone_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an chiseled_red_sandstone", + "conversation": "Let's work together to craft an chiseled_red_sandstone.", + "initial_inventory": { + "0": { + "red_sandstone": 1 + }, + "1": { + "red_sandstone": 1 + }, + "2": { + "red_sandstone": 1 + } + }, + "agent_count": 3, + "target": "chiseled_red_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_map_2_with_plan_missing_compass_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an map", + "conversation": "Let's work together to craft an map.", + "initial_inventory": { + "0": { + "paper": 2 + }, + "1": { + "paper": 4 + }, + "2": { + "paper": 2 + } + }, + "agent_count": 3, + "target": "map", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "compass" + ] + }, + "multiagent_crafting_stone_pickaxe_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an stone_pickaxe", + "conversation": "Let's work together to craft an stone_pickaxe.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 1 + }, + "2": { + "cobblestone": 1 + } + }, + "agent_count": 3, + "target": "stone_pickaxe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_bookshelf_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an chiseled_bookshelf", + "conversation": "Let's work together to craft an chiseled_bookshelf.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "oak_slab": 1 + }, + "1": { + "oak_planks": 2, + "oak_slab": 1 + }, + "2": { + "oak_planks": 2, + "oak_slab": 1 + } + }, + "agent_count": 3, + "target": "chiseled_bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_diamond_axe_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an diamond_axe", + "conversation": "Let's work together to craft an diamond_axe.", + "initial_inventory": { + "0": { + "diamond": 1, + "oak_planks": 2 + }, + "1": { + "diamond": 1 + }, + "2": { + "diamond": 1 + } + }, + "agent_count": 3, + "target": "diamond_axe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_map_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an map", + "conversation": "Let's work together to craft an map.", + "initial_inventory": { + "0": { + "paper": 4, + "compass": 1 + }, + "1": { + "paper": 2 + }, + "2": { + "paper": 2 + } + }, + "agent_count": 3, + "target": "map", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_0_with_plan_missing_stone_brick_slab_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 2, + "gold_ingot": 1 + }, + "1": { + "netherite_scrap": 1, + "gold_ingot": 2 + }, + "2": { + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "stone_brick_slab" + ] + }, + "multiagent_crafting_purple_stained_glass_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_stained_glass", + "conversation": "Let's work together to craft an purple_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "purple_dye": 1 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 4 + } + }, + "agent_count": 3, + "target": "purple_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_item_frame_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an item_frame", + "conversation": "Let's work together to craft an item_frame.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "1": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "2": { + "oak_planks": 2, + "rabbit_hide": 2 + } + }, + "agent_count": 3, + "target": "item_frame", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_anvil_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an anvil", + "conversation": "Let's work together to craft an anvil.", + "initial_inventory": { + "0": { + "iron_block": 1, + "iron_ingot": 1 + }, + "1": { + "iron_block": 1, + "iron_ingot": 1 + }, + "2": { + "iron_block": 1, + "iron_ingot": 2 + } + }, + "agent_count": 3, + "target": "anvil", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_brick_wall_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an deepslate_brick_wall", + "conversation": "Let's work together to craft an deepslate_brick_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 2 + }, + "1": { + "polished_deepslate": 4 + }, + "2": { + "polished_deepslate": 2 + } + }, + "agent_count": 3, + "target": "deepslate_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_diorite_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_diorite", + "conversation": "Let's work together to craft an polished_diorite.", + "initial_inventory": { + "0": { + "diorite": 2 + }, + "1": { + "diorite": 1 + }, + "2": { + "diorite": 1 + } + }, + "agent_count": 3, + "target": "polished_diorite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_candle_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_candle", + "conversation": "Let's work together to craft an purple_candle.", + "initial_inventory": { + "0": { + "string": 1, + "red_dye": 1 + }, + "1": { + "honeycomb": 1 + }, + "2": { + "blue_dye": 1 + } + }, + "agent_count": 3, + "target": "purple_candle", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_deepslate_wall_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_deepslate_wall", + "conversation": "Let's work together to craft an polished_deepslate_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 2 + }, + "1": { + "polished_deepslate": 2 + }, + "2": { + "polished_deepslate": 2 + } + }, + "agent_count": 3, + "target": "polished_deepslate_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_banner_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "yellow_dye": 2, + "black_wool": 2 + }, + "2": { + "yellow_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_end_crystal_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an end_crystal", + "conversation": "Let's work together to craft an end_crystal.", + "initial_inventory": { + "0": { + "glass": 2, + "ender_eye": 1 + }, + "1": { + "glass": 3, + "ghast_tear": 1 + }, + "2": { + "glass": 2 + } + }, + "agent_count": 3, + "target": "end_crystal", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bamboo_mosaic_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an bamboo_mosaic", + "conversation": "Let's work together to craft an bamboo_mosaic.", + "initial_inventory": { + "0": { + "bamboo_planks": 1 + }, + "1": { + "bamboo_planks": 1 + }, + "2": { + "bamboo_planks": 1 + } + }, + "agent_count": 3, + "target": "bamboo_mosaic", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_banner_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_wool": 2, + "stick": 1 + }, + "1": { + "orange_wool": 2 + }, + "2": { + "orange_wool": 2 + } + }, + "agent_count": 3, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_golden_pickaxe_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an golden_pickaxe", + "conversation": "Let's work together to craft an golden_pickaxe.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1 + }, + "2": { + "gold_ingot": 1 + } + }, + "agent_count": 3, + "target": "golden_pickaxe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_green_banner_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an green_banner", + "conversation": "Let's work together to craft an green_banner.", + "initial_inventory": { + "0": { + "green_wool": 2, + "stick": 1 + }, + "1": { + "green_wool": 2 + }, + "2": { + "green_wool": 2 + } + }, + "agent_count": 3, + "target": "green_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "purple_dye": 2, + "black_wool": 2 + }, + "2": { + "purple_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_map_1_with_plan_missing_compass_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an map", + "conversation": "Let's work together to craft an map.", + "initial_inventory": { + "0": { + "paper": 2 + }, + "1": { + "paper": 4 + }, + "2": { + "paper": 2 + } + }, + "agent_count": 3, + "target": "map", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "compass" + ] + }, + "multiagent_crafting_lodestone_2_with_plan_missing_stone_brick_slab_gold_ingot_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 2, + "iron_pickaxe": 1 + }, + "1": { + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "netherite_scrap": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "stone_brick_slab", + "gold_ingot" + ] + }, + "multiagent_crafting_purple_terracotta_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_terracotta", + "conversation": "Let's work together to craft an purple_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 2, + "purple_dye": 1 + }, + "1": { + "terracotta": 2 + }, + "2": { + "terracotta": 4 + } + }, + "agent_count": 3, + "target": "purple_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_1_with_plan_missing_stone_brick_slab_gold_ingot_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 2, + "iron_pickaxe": 1 + }, + "1": { + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "netherite_scrap": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "stone_brick_slab", + "gold_ingot" + ] + }, + "multiagent_crafting_magenta_banner_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_wool": 2, + "stick": 1 + }, + "1": { + "magenta_wool": 2 + }, + "2": { + "magenta_wool": 2 + } + }, + "agent_count": 3, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tiles_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an deepslate_tiles", + "conversation": "Let's work together to craft an deepslate_tiles.", + "initial_inventory": { + "0": { + "polished_deepslate": 1 + }, + "1": { + "polished_deepslate": 2 + }, + "2": { + "polished_deepslate": 1 + } + }, + "agent_count": 3, + "target": "deepslate_tiles", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_2_with_plan_missing_redstone_torch_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone": 1, + "stone": 1 + }, + "1": { + "stone": 1 + }, + "2": { + "stone": 1 + } + }, + "agent_count": 3, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "redstone_torch" + ] + }, + "multiagent_crafting_green_banner_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an green_banner", + "conversation": "Let's work together to craft an green_banner.", + "initial_inventory": { + "0": { + "green_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "green_dye": 2, + "black_wool": 2 + }, + "2": { + "green_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "green_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bamboo_raft_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an bamboo_raft", + "conversation": "Let's work together to craft an bamboo_raft.", + "initial_inventory": { + "0": { + "bamboo_planks": 1 + }, + "1": { + "bamboo_planks": 1 + }, + "2": { + "bamboo_planks": 3 + } + }, + "agent_count": 3, + "target": "bamboo_raft", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_red_sandstone_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an chiseled_red_sandstone", + "conversation": "Let's work together to craft an chiseled_red_sandstone.", + "initial_inventory": { + "0": { + "red_sandstone": 1 + }, + "1": { + "red_sandstone": 1 + }, + "2": { + "red_sandstone": 1 + } + }, + "agent_count": 3, + "target": "chiseled_red_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "deepslate_tiles": 2 + }, + "1": { + "deepslate_tiles": 2 + }, + "2": { + "deepslate_tiles": 2 + } + }, + "agent_count": 3, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_lantern_1_with_plan_missing_iron_ingot_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "coal": 1, + "stone_pickaxe": 1 + }, + "1": { + "stick": 1, + "furnace": 1 + }, + "2": { + "soul_sand": 1 + } + }, + "agent_count": 3, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_stone_axe_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an stone_axe", + "conversation": "Let's work together to craft an stone_axe.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "stick": 2 + }, + "1": { + "cobblestone": 1 + }, + "2": { + "cobblestone": 1 + } + }, + "agent_count": 3, + "target": "stone_axe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_banner_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 2, + "oak_planks": 2 + }, + "1": { + "yellow_dye": 2, + "shears": 1 + }, + "2": { + "yellow_dye": 2 + } + }, + "agent_count": 3, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_dispenser_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 2, + "bow": 1 + }, + "1": { + "cobblestone": 3, + "redstone": 1 + }, + "2": { + "cobblestone": 2 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_sandstone_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an chiseled_sandstone", + "conversation": "Let's work together to craft an chiseled_sandstone.", + "initial_inventory": { + "0": { + "sandstone": 1 + }, + "1": { + "sandstone": 1 + }, + "2": { + "sandstone": 1 + } + }, + "agent_count": 3, + "target": "chiseled_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_piston_0_with_plan_missing_iron_ingot_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "cobblestone": 1, + "redstone": 1 + }, + "1": { + "oak_planks": 1, + "cobblestone": 2, + "stone_pickaxe": 1 + }, + "2": { + "oak_planks": 1, + "cobblestone": 1, + "furnace": 1 + } + }, + "agent_count": 3, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_granite_wall_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an granite_wall", + "conversation": "Let's work together to craft an granite_wall.", + "initial_inventory": { + "0": { + "diorite": 2, + "quartz": 2 + }, + "1": { + "diorite": 2, + "quartz": 2 + }, + "2": { + "diorite": 2, + "quartz": 2 + } + }, + "agent_count": 3, + "target": "granite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_detector_rail_1_with_plan_missing_stone_pressure_plate_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "redstone": 1 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + } + }, + "agent_count": 3, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "stone_pressure_plate" + ] + }, + "multiagent_crafting_cyan_terracotta_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_terracotta", + "conversation": "Let's work together to craft an cyan_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 2, + "blue_dye": 1 + }, + "1": { + "terracotta": 2, + "green_dye": 1 + }, + "2": { + "terracotta": 4 + } + }, + "agent_count": 3, + "target": "cyan_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_recovery_compass_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an recovery_compass", + "conversation": "Let's work together to craft an recovery_compass.", + "initial_inventory": { + "0": { + "echo_shard": 2, + "compass": 1 + }, + "1": { + "echo_shard": 2 + }, + "2": { + "echo_shard": 4 + } + }, + "agent_count": 3, + "target": "recovery_compass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_enchanting_table_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an enchanting_table", + "conversation": "Let's work together to craft an enchanting_table.", + "initial_inventory": { + "0": { + "paper": 1, + "leather": 1, + "obsidian": 1 + }, + "1": { + "paper": 1, + "diamond": 2, + "obsidian": 1 + }, + "2": { + "paper": 1, + "obsidian": 2 + } + }, + "agent_count": 3, + "target": "enchanting_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_detector_rail_1_with_plan_missing_iron_ingot_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "stone_pressure_plate": 1, + "furnace": 1 + }, + "1": { + "redstone": 1 + }, + "2": { + "stone_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_chiseled_nether_bricks_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an chiseled_nether_bricks", + "conversation": "Let's work together to craft an chiseled_nether_bricks.", + "initial_inventory": { + "0": { + "nether_bricks": 1 + }, + "1": { + "nether_bricks": 1 + }, + "2": { + "nether_bricks": 1 + } + }, + "agent_count": 3, + "target": "chiseled_nether_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_composter_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an composter", + "conversation": "Let's work together to craft an composter.", + "initial_inventory": { + "0": { + "oak_slab": 2 + }, + "1": { + "oak_slab": 2 + }, + "2": { + "oak_slab": 3 + } + }, + "agent_count": 3, + "target": "composter", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_cut_copper_0_with_plan_missing_copper_block_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an waxed_cut_copper", + "conversation": "Let's work together to craft an waxed_cut_copper.", + "initial_inventory": { + "0": { + "honeycomb": 1 + }, + "1": { + "honeycomb": 2 + }, + "2": { + "honeycomb": 1 + } + }, + "agent_count": 3, + "target": "waxed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "copper_block" + ] + }, + "multiagent_crafting_crossbow_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an crossbow", + "conversation": "Let's work together to craft an crossbow.", + "initial_inventory": { + "0": { + "stick": 1, + "iron_ingot": 1 + }, + "1": { + "stick": 1, + "string": 2 + }, + "2": { + "stick": 1, + "tripwire_hook": 1 + } + }, + "agent_count": 3, + "target": "crossbow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_1_with_plan_missing_redstone_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "oak_planks": 1, + "cobblestone": 1 + }, + "1": { + "oak_planks": 1, + "cobblestone": 2, + "iron_ingot": 1 + }, + "2": { + "oak_planks": 1, + "cobblestone": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_purple_banner_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_wool": 2, + "stick": 1 + }, + "1": { + "purple_wool": 2 + }, + "2": { + "purple_wool": 2 + } + }, + "agent_count": 3, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magma_block_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an magma_block", + "conversation": "Let's work together to craft an magma_block.", + "initial_inventory": { + "0": { + "blaze_powder": 2, + "slime_ball": 2 + }, + "1": { + "blaze_powder": 1, + "slime_ball": 1 + }, + "2": { + "blaze_powder": 1, + "slime_ball": 1 + } + }, + "agent_count": 3, + "target": "magma_block", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "stick": 2 + }, + "1": { + "iron_ingot": 2, + "redstone_torch": 1 + }, + "2": { + "iron_ingot": 2 + } + }, + "agent_count": 3, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 2, + "redstone": 1 + }, + "2": { + "iron_ingot": 2, + "stick": 1 + } + }, + "agent_count": 3, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bamboo_raft_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an bamboo_raft", + "conversation": "Let's work together to craft an bamboo_raft.", + "initial_inventory": { + "0": { + "bamboo_planks": 1 + }, + "1": { + "bamboo_planks": 1 + }, + "2": { + "bamboo_planks": 3 + } + }, + "agent_count": 3, + "target": "bamboo_raft", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_andesite_wall_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an andesite_wall", + "conversation": "Let's work together to craft an andesite_wall.", + "initial_inventory": { + "0": { + "diorite": 1, + "cobblestone": 1 + }, + "1": { + "diorite": 1, + "cobblestone": 1 + }, + "2": { + "diorite": 1, + "cobblestone": 1 + } + }, + "agent_count": 3, + "target": "andesite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_piston_2_with_plan_missing_iron_ingot_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "cobblestone": 1, + "redstone": 1 + }, + "1": { + "oak_planks": 1, + "cobblestone": 2, + "stone_pickaxe": 1 + }, + "2": { + "oak_planks": 1, + "cobblestone": 1, + "furnace": 1 + } + }, + "agent_count": 3, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_lodestone_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_brick_slab": 5, + "netherite_scrap": 1, + "gold_ingot": 2 + }, + "1": { + "stone_brick_slab": 6, + "netherite_scrap": 2, + "gold_ingot": 1 + }, + "2": { + "stone_brick_slab": 5, + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sandstone_wall_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an sandstone_wall", + "conversation": "Let's work together to craft an sandstone_wall.", + "initial_inventory": { + "0": { + "sandstone": 2 + }, + "1": { + "sandstone": 2 + }, + "2": { + "sandstone": 2 + } + }, + "agent_count": 3, + "target": "sandstone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_andesite_wall_2_with_plan_missing_cobblestone_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an andesite_wall", + "conversation": "Let's work together to craft an andesite_wall.", + "initial_inventory": { + "0": { + "diorite": 1, + "wooden_pickaxe": 1 + }, + "1": { + "diorite": 1 + }, + "2": { + "diorite": 1 + } + }, + "agent_count": 3, + "target": "andesite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_detector_rail_0_with_plan_missing_iron_ingot_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "stone_pressure_plate": 1, + "furnace": 1 + }, + "1": { + "redstone": 1 + }, + "2": { + "stone_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_purple_banner_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "purple_dye": 2, + "black_wool": 2 + }, + "2": { + "purple_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mud_brick_wall_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an mud_brick_wall", + "conversation": "Let's work together to craft an mud_brick_wall.", + "initial_inventory": { + "0": { + "mud_bricks": 2 + }, + "1": { + "mud_bricks": 2 + }, + "2": { + "mud_bricks": 2 + } + }, + "agent_count": 3, + "target": "mud_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 3, + "stick": 1, + "string": 1, + "redstone": 1 + }, + "1": { + "cobblestone": 2, + "stick": 1, + "string": 1 + }, + "2": { + "cobblestone": 2, + "stick": 1, + "string": 1 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_rail_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an rail", + "conversation": "Let's work together to craft an rail.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "stick": 1 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + } + }, + "agent_count": 3, + "target": "rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bamboo_raft_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an bamboo_raft", + "conversation": "Let's work together to craft an bamboo_raft.", + "initial_inventory": { + "0": { + "bamboo_block": 1 + }, + "1": { + "bamboo_block": 1 + }, + "2": { + "bamboo_block": 1 + } + }, + "agent_count": 3, + "target": "bamboo_raft", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magma_block_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an magma_block", + "conversation": "Let's work together to craft an magma_block.", + "initial_inventory": { + "0": { + "magma_cream": 1 + }, + "1": { + "magma_cream": 1 + }, + "2": { + "magma_cream": 2 + } + }, + "agent_count": 3, + "target": "magma_block", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "deepslate_bricks": 2 + }, + "1": { + "deepslate_bricks": 2 + }, + "2": { + "deepslate_bricks": 4 + } + }, + "agent_count": 3, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mud_brick_wall_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an mud_brick_wall", + "conversation": "Let's work together to craft an mud_brick_wall.", + "initial_inventory": { + "0": { + "mud_bricks": 2 + }, + "1": { + "mud_bricks": 2 + }, + "2": { + "mud_bricks": 2 + } + }, + "agent_count": 3, + "target": "mud_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_grindstone_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an grindstone", + "conversation": "Let's work together to craft an grindstone.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "stone": 1 + }, + "1": { + "stone": 1, + "oak_log": 1 + }, + "2": { + "stone": 1 + } + }, + "agent_count": 3, + "target": "grindstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_detector_rail_2_with_plan_missing_iron_ingot_stone_pressure_plate_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "redstone": 1 + }, + "1": { + "stone_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "iron_ingot", + "stone_pressure_plate" + ] + }, + "multiagent_crafting_green_banner_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an green_banner", + "conversation": "Let's work together to craft an green_banner.", + "initial_inventory": { + "0": { + "green_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "green_dye": 2, + "black_wool": 2 + }, + "2": { + "green_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "green_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_stone_brick_wall_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an stone_brick_wall", + "conversation": "Let's work together to craft an stone_brick_wall.", + "initial_inventory": { + "0": { + "stone_bricks": 2 + }, + "1": { + "stone_bricks": 2 + }, + "2": { + "stone_bricks": 2 + } + }, + "agent_count": 3, + "target": "stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_banner_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "orange_dye": 2, + "black_wool": 2 + }, + "2": { + "orange_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_detector_rail_2_with_plan_missing_stone_pressure_plate_redstone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "diamond_pickaxe": 1 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + } + }, + "agent_count": 3, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "stone_pressure_plate", + "redstone" + ] + }, + "multiagent_crafting_golden_pickaxe_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an golden_pickaxe", + "conversation": "Let's work together to craft an golden_pickaxe.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1 + }, + "2": { + "gold_ingot": 1 + } + }, + "agent_count": 3, + "target": "golden_pickaxe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_iron_axe_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an iron_axe", + "conversation": "Let's work together to craft an iron_axe.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "stick": 2 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + } + }, + "agent_count": 3, + "target": "iron_axe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_iron_axe_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an iron_axe", + "conversation": "Let's work together to craft an iron_axe.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + } + }, + "agent_count": 3, + "target": "iron_axe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_terracotta_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_terracotta", + "conversation": "Let's work together to craft an cyan_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 2, + "cyan_dye": 1 + }, + "1": { + "terracotta": 4 + }, + "2": { + "terracotta": 2 + } + }, + "agent_count": 3, + "target": "cyan_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_1_with_plan_missing_gold_ingot_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_brick_slab": 5, + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "stone_brick_slab": 5, + "netherite_scrap": 2, + "furnace": 1 + }, + "2": { + "stone_brick_slab": 6, + "netherite_scrap": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_rail_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an rail", + "conversation": "Let's work together to craft an rail.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "stick": 1 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + } + }, + "agent_count": 3, + "target": "rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_comparator_0_with_plan_missing_stone_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone": 1, + "stick": 1, + "quartz": 1 + }, + "1": { + "redstone": 1, + "stick": 1, + "wooden_pickaxe": 1 + }, + "2": { + "redstone": 1, + "stick": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "stone" + ] + }, + "multiagent_crafting_stone_pickaxe_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an stone_pickaxe", + "conversation": "Let's work together to craft an stone_pickaxe.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "stick": 2 + }, + "1": { + "cobblestone": 1 + }, + "2": { + "cobblestone": 1 + } + }, + "agent_count": 3, + "target": "stone_pickaxe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_iron_pickaxe_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an iron_pickaxe", + "conversation": "Let's work together to craft an iron_pickaxe.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + } + }, + "agent_count": 3, + "target": "iron_pickaxe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tiles_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an deepslate_tiles", + "conversation": "Let's work together to craft an deepslate_tiles.", + "initial_inventory": { + "0": { + "deepslate_bricks": 2 + }, + "1": { + "deepslate_bricks": 1 + }, + "2": { + "deepslate_bricks": 1 + } + }, + "agent_count": 3, + "target": "deepslate_tiles", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_stone_axe_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an stone_axe", + "conversation": "Let's work together to craft an stone_axe.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 1 + }, + "2": { + "cobblestone": 1 + } + }, + "agent_count": 3, + "target": "stone_axe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_prismarine_wall_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an prismarine_wall", + "conversation": "Let's work together to craft an prismarine_wall.", + "initial_inventory": { + "0": { + "prismarine": 2 + }, + "1": { + "prismarine": 2 + }, + "2": { + "prismarine": 2 + } + }, + "agent_count": 3, + "target": "prismarine_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_banner_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "light_gray_dye": 2, + "black_wool": 2 + }, + "2": { + "light_gray_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_0_with_plan_missing_cobblestone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "bow": 1 + }, + "1": { + "redstone": 1 + }, + "2": { + "wooden_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_comparator_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone": 1, + "stick": 1, + "quartz": 1, + "stone": 1 + }, + "1": { + "redstone": 1, + "stick": 1, + "stone": 1 + }, + "2": { + "redstone": 1, + "stick": 1, + "stone": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tiles_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an deepslate_tiles", + "conversation": "Let's work together to craft an deepslate_tiles.", + "initial_inventory": { + "0": { + "deepslate_bricks": 2 + }, + "1": { + "deepslate_bricks": 1 + }, + "2": { + "deepslate_bricks": 1 + } + }, + "agent_count": 3, + "target": "deepslate_tiles", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_brick_slab": 5, + "netherite_scrap": 1, + "gold_ingot": 2 + }, + "1": { + "stone_brick_slab": 6, + "netherite_scrap": 2, + "gold_ingot": 1 + }, + "2": { + "stone_brick_slab": 5, + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_nether_brick_wall_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an red_nether_brick_wall", + "conversation": "Let's work together to craft an red_nether_brick_wall.", + "initial_inventory": { + "0": { + "red_nether_bricks": 2 + }, + "1": { + "red_nether_bricks": 2 + }, + "2": { + "red_nether_bricks": 2 + } + }, + "agent_count": 3, + "target": "red_nether_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_0_with_plan_missing_cobblestone_redstone_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "oak_planks": 1, + "diamond_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "2": { + "oak_planks": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "cobblestone", + "redstone" + ] + }, + "multiagent_crafting_piston_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "cobblestone": 1, + "iron_ingot": 1 + }, + "1": { + "oak_planks": 1, + "cobblestone": 2, + "redstone": 1 + }, + "2": { + "oak_planks": 1, + "cobblestone": 1 + } + }, + "agent_count": 3, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bow_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an bow", + "conversation": "Let's work together to craft an bow.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "string": 1 + }, + "1": { + "string": 1 + }, + "2": { + "string": 1 + } + }, + "agent_count": 3, + "target": "bow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_piston_0_with_plan_missing_cobblestone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "1": { + "oak_planks": 1, + "redstone": 1 + }, + "2": { + "oak_planks": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_green_banner_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an green_banner", + "conversation": "Let's work together to craft an green_banner.", + "initial_inventory": { + "0": { + "green_dye": 2, + "oak_planks": 2 + }, + "1": { + "green_dye": 2, + "shears": 1 + }, + "2": { + "green_dye": 2 + } + }, + "agent_count": 3, + "target": "green_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_blast_furnace_2_with_plan_missing_furnace_smooth_stone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 3 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + } + }, + "agent_count": 3, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "furnace", + "smooth_stone" + ] + }, + "multiagent_crafting_item_frame_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an item_frame", + "conversation": "Let's work together to craft an item_frame.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "1": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "2": { + "oak_planks": 2, + "rabbit_hide": 2 + } + }, + "agent_count": 3, + "target": "item_frame", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lantern_2_with_plan_missing_torch_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "iron_nugget": 4 + }, + "1": { + "iron_nugget": 2 + }, + "2": { + "iron_nugget": 2 + } + }, + "agent_count": 3, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "torch" + ] + }, + "multiagent_crafting_activator_rail_1_with_plan_missing_iron_ingot_redstone_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "furnace": 1 + }, + "1": { + "stick": 1, + "diamond_pickaxe": 1 + }, + "2": { + "stone_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_golden_axe_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an golden_axe", + "conversation": "Let's work together to craft an golden_axe.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 2 + }, + "1": { + "gold_ingot": 1 + }, + "2": { + "gold_ingot": 1 + } + }, + "agent_count": 3, + "target": "golden_axe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone": 1, + "stick": 2, + "stone": 1 + }, + "1": { + "redstone": 1, + "stone": 1 + }, + "2": { + "redstone": 1, + "stone": 1 + } + }, + "agent_count": 3, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_andesite_wall_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an andesite_wall", + "conversation": "Let's work together to craft an andesite_wall.", + "initial_inventory": { + "0": { + "andesite": 2 + }, + "1": { + "andesite": 2 + }, + "2": { + "andesite": 2 + } + }, + "agent_count": 3, + "target": "andesite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_1_with_plan_missing_cobblestone_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "oak_planks": 1, + "wooden_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "2": { + "oak_planks": 1, + "redstone": 1 + } + }, + "agent_count": 3, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_activator_rail_2_with_plan_missing_iron_ingot_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "stick": 2, + "furnace": 1 + }, + "1": { + "redstone_torch": 1 + }, + "2": { + "stone_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_dispenser_1_with_plan_missing_cobblestone_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "stick": 1, + "string": 1, + "redstone": 1 + }, + "1": { + "stick": 1, + "string": 1, + "wooden_pickaxe": 1 + }, + "2": { + "stick": 1, + "string": 1 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_campfire_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an campfire", + "conversation": "Let's work together to craft an campfire.", + "initial_inventory": { + "0": { + "stick": 1, + "coal": 1, + "dark_oak_log": 1 + }, + "1": { + "stick": 1, + "dark_oak_log": 1 + }, + "2": { + "stick": 1, + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "target": "campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purpur_pillar_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purpur_pillar", + "conversation": "Let's work together to craft an purpur_pillar.", + "initial_inventory": { + "0": { + "purpur_block": 1 + }, + "1": { + "purpur_block": 1 + }, + "2": { + "purpur_block": 1 + } + }, + "agent_count": 3, + "target": "purpur_pillar", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_stone_axe_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an stone_axe", + "conversation": "Let's work together to craft an stone_axe.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "stick": 2 + }, + "1": { + "cobblestone": 1 + }, + "2": { + "cobblestone": 1 + } + }, + "agent_count": 3, + "target": "stone_axe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_red_sandstone_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an chiseled_red_sandstone", + "conversation": "Let's work together to craft an chiseled_red_sandstone.", + "initial_inventory": { + "0": { + "red_sandstone": 1 + }, + "1": { + "red_sandstone": 1 + }, + "2": { + "red_sandstone": 1 + } + }, + "agent_count": 3, + "target": "chiseled_red_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sandstone_wall_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an sandstone_wall", + "conversation": "Let's work together to craft an sandstone_wall.", + "initial_inventory": { + "0": { + "sandstone": 2 + }, + "1": { + "sandstone": 2 + }, + "2": { + "sandstone": 2 + } + }, + "agent_count": 3, + "target": "sandstone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_2_with_plan_missing_gold_ingot_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_brick_slab": 5, + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "stone_brick_slab": 5, + "netherite_scrap": 2, + "furnace": 1 + }, + "2": { + "stone_brick_slab": 6, + "netherite_scrap": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_map_0_with_plan_missing_compass_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an map", + "conversation": "Let's work together to craft an map.", + "initial_inventory": { + "0": { + "paper": 2 + }, + "1": { + "paper": 4 + }, + "2": { + "paper": 2 + } + }, + "agent_count": 3, + "target": "map", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "compass" + ] + }, + "multiagent_crafting_deepslate_tiles_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an deepslate_tiles", + "conversation": "Let's work together to craft an deepslate_tiles.", + "initial_inventory": { + "0": { + "polished_deepslate": 1 + }, + "1": { + "polished_deepslate": 2 + }, + "2": { + "polished_deepslate": 1 + } + }, + "agent_count": 3, + "target": "deepslate_tiles", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_respawn_anchor_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an respawn_anchor", + "conversation": "Let's work together to craft an respawn_anchor.", + "initial_inventory": { + "0": { + "crying_obsidian": 2, + "glowstone": 1 + }, + "1": { + "crying_obsidian": 2, + "glowstone": 1 + }, + "2": { + "crying_obsidian": 2, + "glowstone": 1 + } + }, + "agent_count": 3, + "target": "respawn_anchor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purpur_pillar_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purpur_pillar", + "conversation": "Let's work together to craft an purpur_pillar.", + "initial_inventory": { + "0": { + "purpur_block": 1 + }, + "1": { + "purpur_block": 1 + }, + "2": { + "purpur_block": 1 + } + }, + "agent_count": 3, + "target": "purpur_pillar", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_comparator_2_with_plan_missing_stone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone_torch": 1, + "quartz": 1 + }, + "1": { + "redstone_torch": 1, + "wooden_pickaxe": 1 + }, + "2": { + "redstone_torch": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "stone" + ] + }, + "multiagent_crafting_stone_pickaxe_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an stone_pickaxe", + "conversation": "Let's work together to craft an stone_pickaxe.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 1 + }, + "2": { + "cobblestone": 1 + } + }, + "agent_count": 3, + "target": "stone_pickaxe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_diorite_wall_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an diorite_wall", + "conversation": "Let's work together to craft an diorite_wall.", + "initial_inventory": { + "0": { + "diorite": 2 + }, + "1": { + "diorite": 2 + }, + "2": { + "diorite": 2 + } + }, + "agent_count": 3, + "target": "diorite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_blue_banner_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "light_blue_dye": 2, + "black_wool": 2 + }, + "2": { + "light_blue_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_target_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an target", + "conversation": "Let's work together to craft an target.", + "initial_inventory": { + "0": { + "redstone": 1, + "hay_block": 1 + }, + "1": { + "redstone": 2 + }, + "2": { + "redstone": 1 + } + }, + "agent_count": 3, + "target": "target", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_banner_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_dye": 2, + "oak_planks": 2 + }, + "1": { + "orange_dye": 2, + "shears": 1 + }, + "2": { + "orange_dye": 2 + } + }, + "agent_count": 3, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_dispenser_1_with_plan_missing_redstone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 2, + "bow": 1 + }, + "1": { + "cobblestone": 3, + "diamond_pickaxe": 1 + }, + "2": { + "cobblestone": 2 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_end_crystal_0_with_plan_missing_glass_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an end_crystal", + "conversation": "Let's work together to craft an end_crystal.", + "initial_inventory": { + "0": { + "ender_pearl": 1 + }, + "1": { + "blaze_powder": 1 + }, + "2": { + "ghast_tear": 1 + } + }, + "agent_count": 3, + "target": "end_crystal", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "glass" + ] + }, + "multiagent_crafting_repeater_1_with_plan_missing_redstone_torch_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone": 1, + "stone": 1 + }, + "1": { + "stone": 1 + }, + "2": { + "stone": 1 + } + }, + "agent_count": 3, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone_torch" + ] + }, + "multiagent_crafting_andesite_wall_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an andesite_wall", + "conversation": "Let's work together to craft an andesite_wall.", + "initial_inventory": { + "0": { + "diorite": 1, + "cobblestone": 1 + }, + "1": { + "diorite": 1, + "cobblestone": 1 + }, + "2": { + "diorite": 1, + "cobblestone": 1 + } + }, + "agent_count": 3, + "target": "andesite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chain_1_with_plan_missing_iron_ingot_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an chain", + "conversation": "Let's work together to craft an chain.", + "initial_inventory": { + "0": { + "iron_nugget": 2 + }, + "1": { + "stone_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "chain", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_golden_pickaxe_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an golden_pickaxe", + "conversation": "Let's work together to craft an golden_pickaxe.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1 + }, + "2": { + "gold_ingot": 1 + } + }, + "agent_count": 3, + "target": "golden_pickaxe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_fire_charge_0_with_plan_missing_coal_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an fire_charge", + "conversation": "Let's work together to craft an fire_charge.", + "initial_inventory": { + "0": { + "gunpowder": 1 + }, + "1": { + "blaze_powder": 1 + }, + "2": { + "iron_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "fire_charge", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "coal" + ] + }, + "multiagent_crafting_iron_pickaxe_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an iron_pickaxe", + "conversation": "Let's work together to craft an iron_pickaxe.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + } + }, + "agent_count": 3, + "target": "iron_pickaxe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_diorite_wall_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an diorite_wall", + "conversation": "Let's work together to craft an diorite_wall.", + "initial_inventory": { + "0": { + "diorite": 2 + }, + "1": { + "diorite": 2 + }, + "2": { + "diorite": 2 + } + }, + "agent_count": 3, + "target": "diorite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "deepslate_bricks": 2 + }, + "1": { + "deepslate_bricks": 2 + }, + "2": { + "deepslate_bricks": 4 + } + }, + "agent_count": 3, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 2 + }, + "1": { + "polished_deepslate": 4 + }, + "2": { + "polished_deepslate": 2 + } + }, + "agent_count": 3, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 2 + }, + "1": { + "polished_deepslate": 4 + }, + "2": { + "polished_deepslate": 2 + } + }, + "agent_count": 3, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 2 + }, + "1": { + "polished_deepslate": 4 + }, + "2": { + "polished_deepslate": 2 + } + }, + "agent_count": 3, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_carpet_0_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_carpet", + "conversation": "Let's work together to craft an cyan_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "green_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "cyan_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_carpet_1_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_carpet", + "conversation": "Let's work together to craft an cyan_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "green_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "cyan_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_carpet_2_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_carpet", + "conversation": "Let's work together to craft an cyan_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "green_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "cyan_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_carpet_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_carpet", + "conversation": "Let's work together to craft an cyan_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "green_dye": 1 + }, + "2": { + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "cyan_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_carpet_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_carpet", + "conversation": "Let's work together to craft an cyan_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "green_dye": 1 + }, + "2": { + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "cyan_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_carpet_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_carpet", + "conversation": "Let's work together to craft an cyan_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "green_dye": 1 + }, + "2": { + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "cyan_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_0_with_plan_missing_stone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone": 1, + "oak_planks": 2 + }, + "1": { + "redstone": 1, + "wooden_pickaxe": 1 + }, + "2": { + "redstone": 1 + } + }, + "agent_count": 3, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "stone" + ] + }, + "multiagent_crafting_repeater_1_with_plan_missing_stone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone": 1, + "oak_planks": 2 + }, + "1": { + "redstone": 1, + "wooden_pickaxe": 1 + }, + "2": { + "redstone": 1 + } + }, + "agent_count": 3, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "stone" + ] + }, + "multiagent_crafting_repeater_2_with_plan_missing_stone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone": 1, + "oak_planks": 2 + }, + "1": { + "redstone": 1, + "wooden_pickaxe": 1 + }, + "2": { + "redstone": 1 + } + }, + "agent_count": 3, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "stone" + ] + }, + "multiagent_crafting_repeater_0_with_plan_missing_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "stone": 1 + }, + "1": { + "stone": 1, + "diamond_pickaxe": 1 + }, + "2": { + "stone": 1 + } + }, + "agent_count": 3, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_repeater_1_with_plan_missing_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "stone": 1 + }, + "1": { + "stone": 1, + "diamond_pickaxe": 1 + }, + "2": { + "stone": 1 + } + }, + "agent_count": 3, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_repeater_2_with_plan_missing_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "stone": 1 + }, + "1": { + "stone": 1, + "diamond_pickaxe": 1 + }, + "2": { + "stone": 1 + } + }, + "agent_count": 3, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_repeater_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone": 1, + "oak_planks": 2, + "stone": 1 + }, + "1": { + "redstone": 1, + "stone": 1 + }, + "2": { + "redstone": 1, + "stone": 1 + } + }, + "agent_count": 3, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone": 1, + "oak_planks": 2, + "stone": 1 + }, + "1": { + "redstone": 1, + "stone": 1 + }, + "2": { + "redstone": 1, + "stone": 1 + } + }, + "agent_count": 3, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone": 1, + "oak_planks": 2, + "stone": 1 + }, + "1": { + "redstone": 1, + "stone": 1 + }, + "2": { + "redstone": 1, + "stone": 1 + } + }, + "agent_count": 3, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_comparator_0_with_plan_missing_redstone_stone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "wooden_pickaxe": 1 + }, + "1": { + "quartz": 1 + }, + "2": { + "diamond_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone", + "stone" + ] + }, + "multiagent_crafting_comparator_1_with_plan_missing_redstone_stone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "wooden_pickaxe": 1 + }, + "1": { + "quartz": 1 + }, + "2": { + "diamond_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone", + "stone" + ] + }, + "multiagent_crafting_comparator_2_with_plan_missing_redstone_stone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "wooden_pickaxe": 1 + }, + "1": { + "quartz": 1 + }, + "2": { + "diamond_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "redstone", + "stone" + ] + }, + "multiagent_crafting_comparator_0_with_plan_missing_stone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone": 1, + "oak_planks": 2 + }, + "1": { + "redstone": 1, + "quartz": 1 + }, + "2": { + "redstone": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "stone" + ] + }, + "multiagent_crafting_comparator_1_with_plan_missing_stone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone": 1, + "oak_planks": 2 + }, + "1": { + "redstone": 1, + "quartz": 1 + }, + "2": { + "redstone": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "stone" + ] + }, + "multiagent_crafting_comparator_2_with_plan_missing_stone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone": 1, + "oak_planks": 2 + }, + "1": { + "redstone": 1, + "quartz": 1 + }, + "2": { + "redstone": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "stone" + ] + }, + "multiagent_crafting_comparator_0_with_plan_missing_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "stone": 1 + }, + "1": { + "quartz": 1, + "stone": 1 + }, + "2": { + "stone": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_comparator_1_with_plan_missing_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "stone": 1 + }, + "1": { + "quartz": 1, + "stone": 1 + }, + "2": { + "stone": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_comparator_2_with_plan_missing_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "stone": 1 + }, + "1": { + "quartz": 1, + "stone": 1 + }, + "2": { + "stone": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_comparator_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone": 1, + "oak_planks": 2, + "stone": 1 + }, + "1": { + "redstone": 1, + "quartz": 1, + "stone": 1 + }, + "2": { + "redstone": 1, + "stone": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_comparator_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone": 1, + "oak_planks": 2, + "stone": 1 + }, + "1": { + "redstone": 1, + "quartz": 1, + "stone": 1 + }, + "2": { + "redstone": 1, + "stone": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_comparator_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone": 1, + "oak_planks": 2, + "stone": 1 + }, + "1": { + "redstone": 1, + "quartz": 1, + "stone": 1 + }, + "2": { + "redstone": 1, + "stone": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_0_with_plan_missing_cobblestone_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "string": 1 + }, + "1": { + "string": 1, + "wooden_pickaxe": 1 + }, + "2": { + "string": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "cobblestone", + "redstone" + ] + }, + "multiagent_crafting_dispenser_1_with_plan_missing_cobblestone_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "string": 1 + }, + "1": { + "string": 1, + "wooden_pickaxe": 1 + }, + "2": { + "string": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "cobblestone", + "redstone" + ] + }, + "multiagent_crafting_dispenser_2_with_plan_missing_cobblestone_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "string": 1 + }, + "1": { + "string": 1, + "wooden_pickaxe": 1 + }, + "2": { + "string": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "cobblestone", + "redstone" + ] + }, + "multiagent_crafting_dispenser_0_with_plan_missing_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 2, + "oak_planks": 2, + "string": 1 + }, + "1": { + "cobblestone": 2, + "string": 1, + "diamond_pickaxe": 1 + }, + "2": { + "cobblestone": 3, + "string": 1 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_dispenser_1_with_plan_missing_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 2, + "oak_planks": 2, + "string": 1 + }, + "1": { + "cobblestone": 2, + "string": 1, + "diamond_pickaxe": 1 + }, + "2": { + "cobblestone": 3, + "string": 1 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_dispenser_2_with_plan_missing_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 2, + "oak_planks": 2, + "string": 1 + }, + "1": { + "cobblestone": 2, + "string": 1, + "diamond_pickaxe": 1 + }, + "2": { + "cobblestone": 3, + "string": 1 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_dispenser_0_with_plan_missing_cobblestone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "string": 1 + }, + "1": { + "string": 1, + "redstone": 1 + }, + "2": { + "string": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_dispenser_1_with_plan_missing_cobblestone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "string": 1 + }, + "1": { + "string": 1, + "redstone": 1 + }, + "2": { + "string": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_dispenser_2_with_plan_missing_cobblestone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "string": 1 + }, + "1": { + "string": 1, + "redstone": 1 + }, + "2": { + "string": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_dispenser_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 3, + "oak_planks": 2, + "string": 1 + }, + "1": { + "cobblestone": 2, + "string": 1, + "redstone": 1 + }, + "2": { + "cobblestone": 2, + "string": 1 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 3, + "oak_planks": 2, + "string": 1 + }, + "1": { + "cobblestone": 2, + "string": 1, + "redstone": 1 + }, + "2": { + "cobblestone": 2, + "string": 1 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 3, + "oak_planks": 2, + "string": 1 + }, + "1": { + "cobblestone": 2, + "string": 1, + "redstone": 1 + }, + "2": { + "cobblestone": 2, + "string": 1 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_0_with_plan_missing_iron_ingot_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "oak_log": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 2, + "diamond_pickaxe": 1 + }, + "2": { + "stone_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_activator_rail_1_with_plan_missing_iron_ingot_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "oak_log": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 2, + "diamond_pickaxe": 1 + }, + "2": { + "stone_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_activator_rail_2_with_plan_missing_iron_ingot_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "oak_log": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 2, + "diamond_pickaxe": 1 + }, + "2": { + "stone_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_activator_rail_0_with_plan_missing_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_log": 1 + }, + "1": { + "iron_ingot": 2, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 2, + "diamond_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_1_with_plan_missing_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_log": 1 + }, + "1": { + "iron_ingot": 2, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 2, + "diamond_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_2_with_plan_missing_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_log": 1 + }, + "1": { + "iron_ingot": 2, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 2, + "diamond_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_log": 1 + }, + "1": { + "iron_ingot": 2, + "redstone": 1 + }, + "2": { + "iron_ingot": 2, + "oak_planks": 2 + } + }, + "agent_count": 3, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_log": 1 + }, + "1": { + "iron_ingot": 2, + "redstone": 1 + }, + "2": { + "iron_ingot": 2, + "oak_planks": 2 + } + }, + "agent_count": 3, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_log": 1 + }, + "1": { + "iron_ingot": 2, + "redstone": 1 + }, + "2": { + "iron_ingot": 2, + "oak_planks": 2 + } + }, + "agent_count": 3, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_glow_item_frame_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an glow_item_frame", + "conversation": "Let's work together to craft an glow_item_frame.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "rabbit_hide": 1, + "glow_ink_sac": 1 + }, + "1": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "2": { + "oak_planks": 2, + "rabbit_hide": 2 + } + }, + "agent_count": 3, + "target": "glow_item_frame", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_glow_item_frame_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an glow_item_frame", + "conversation": "Let's work together to craft an glow_item_frame.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "rabbit_hide": 1, + "glow_ink_sac": 1 + }, + "1": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "2": { + "oak_planks": 2, + "rabbit_hide": 2 + } + }, + "agent_count": 3, + "target": "glow_item_frame", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_glow_item_frame_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an glow_item_frame", + "conversation": "Let's work together to craft an glow_item_frame.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "rabbit_hide": 1, + "glow_ink_sac": 1 + }, + "1": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "2": { + "oak_planks": 2, + "rabbit_hide": 2 + } + }, + "agent_count": 3, + "target": "glow_item_frame", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_0_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "red_dye": 1, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "red_dye": 1, + "shears": 1 + }, + "2": { + "blue_dye": 1, + "red_dye": 1 + } + }, + "agent_count": 3, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_purple_banner_1_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "red_dye": 1, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "red_dye": 1, + "shears": 1 + }, + "2": { + "blue_dye": 1, + "red_dye": 1 + } + }, + "agent_count": 3, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_purple_banner_2_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "red_dye": 1, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "red_dye": 1, + "shears": 1 + }, + "2": { + "blue_dye": 1, + "red_dye": 1 + } + }, + "agent_count": 3, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_purple_banner_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "red_dye": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "red_dye": 1, + "black_wool": 2 + }, + "2": { + "blue_dye": 1, + "red_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "red_dye": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "red_dye": 1, + "black_wool": 2 + }, + "2": { + "blue_dye": 1, + "red_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "red_dye": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "red_dye": 1, + "black_wool": 2 + }, + "2": { + "blue_dye": 1, + "red_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lantern_0_with_plan_missing_iron_ingot_coal_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "iron_pickaxe": 1 + }, + "1": { + "stone_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_lantern_1_with_plan_missing_iron_ingot_coal_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "iron_pickaxe": 1 + }, + "1": { + "stone_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_lantern_2_with_plan_missing_iron_ingot_coal_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "iron_pickaxe": 1 + }, + "1": { + "stone_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_soul_lantern_0_with_plan_missing_iron_ingot_coal_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "furnace": 1 + }, + "1": { + "soul_sand": 1, + "iron_pickaxe": 1 + }, + "2": { + "stone_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_soul_lantern_1_with_plan_missing_iron_ingot_coal_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "furnace": 1 + }, + "1": { + "soul_sand": 1, + "iron_pickaxe": 1 + }, + "2": { + "stone_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_soul_lantern_2_with_plan_missing_iron_ingot_coal_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "furnace": 1 + }, + "1": { + "soul_sand": 1, + "iron_pickaxe": 1 + }, + "2": { + "stone_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_soul_lantern_0_with_plan_missing_iron_ingot_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "coal": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 2, + "furnace": 1 + }, + "2": { + "soul_sand": 1 + } + }, + "agent_count": 3, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_soul_lantern_1_with_plan_missing_iron_ingot_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "coal": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 2, + "furnace": 1 + }, + "2": { + "soul_sand": 1 + } + }, + "agent_count": 3, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_soul_lantern_2_with_plan_missing_iron_ingot_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "coal": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 2, + "furnace": 1 + }, + "2": { + "soul_sand": 1 + } + }, + "agent_count": 3, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_lodestone_0_with_plan_missing_stone_bricks_gold_ingot_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "netherite_scrap": 2 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "stone_bricks", + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_1_with_plan_missing_stone_bricks_gold_ingot_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "netherite_scrap": 2 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "stone_bricks", + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_2_with_plan_missing_stone_bricks_gold_ingot_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "netherite_scrap": 2 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "stone_bricks", + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_0_with_plan_missing_gold_ingot_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "stone_bricks": 3, + "netherite_scrap": 2, + "furnace": 1 + }, + "2": { + "stone_bricks": 3, + "netherite_scrap": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_1_with_plan_missing_gold_ingot_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "stone_bricks": 3, + "netherite_scrap": 2, + "furnace": 1 + }, + "2": { + "stone_bricks": 3, + "netherite_scrap": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_2_with_plan_missing_gold_ingot_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "stone_bricks": 3, + "netherite_scrap": 2, + "furnace": 1 + }, + "2": { + "stone_bricks": 3, + "netherite_scrap": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_0_with_plan_missing_stone_bricks_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "1": { + "netherite_scrap": 2, + "gold_ingot": 2 + }, + "2": { + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "stone_bricks" + ] + }, + "multiagent_crafting_lodestone_1_with_plan_missing_stone_bricks_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "1": { + "netherite_scrap": 2, + "gold_ingot": 2 + }, + "2": { + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "stone_bricks" + ] + }, + "multiagent_crafting_lodestone_2_with_plan_missing_stone_bricks_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "1": { + "netherite_scrap": 2, + "gold_ingot": 2 + }, + "2": { + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "stone_bricks" + ] + }, + "multiagent_crafting_lodestone_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "netherite_scrap": 1, + "gold_ingot": 2 + }, + "1": { + "stone_bricks": 3, + "netherite_scrap": 2, + "gold_ingot": 1 + }, + "2": { + "stone_bricks": 3, + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "netherite_scrap": 1, + "gold_ingot": 2 + }, + "1": { + "stone_bricks": 3, + "netherite_scrap": 2, + "gold_ingot": 1 + }, + "2": { + "stone_bricks": 3, + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "netherite_scrap": 1, + "gold_ingot": 2 + }, + "1": { + "stone_bricks": 3, + "netherite_scrap": 2, + "gold_ingot": 1 + }, + "2": { + "stone_bricks": 3, + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/train_tasks/tasks_3_agents_stats.txt b/tasks/crafting_tasks/train_tasks/tasks_3_agents_stats.txt new file mode 100644 index 0000000..ea1a0ba --- /dev/null +++ b/tasks/crafting_tasks/train_tasks/tasks_3_agents_stats.txt @@ -0,0 +1,15 @@ +{ + "num_tasks": 281, + "avg_depth": 2.2562277580071175, + "std_depth": 0.7487869226953681, + "num_tasks_based_depth": { + "0": 100, + "1": 100, + "2": 81 + }, + "num_missing_resources": { + "0": 171, + "1": 79, + "2": 31 + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/train_tasks/tasks_4_agents.json b/tasks/crafting_tasks/train_tasks/tasks_4_agents.json new file mode 100644 index 0000000..c59debf --- /dev/null +++ b/tasks/crafting_tasks/train_tasks/tasks_4_agents.json @@ -0,0 +1,9401 @@ +{ + "multiagent_crafting_blast_furnace_0_with_plan_missing_furnace_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "smooth_stone": 3 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "furnace" + ] + }, + "multiagent_crafting_light_blue_banner_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "light_blue_dye": 1, + "black_wool": 1 + }, + "2": { + "light_blue_dye": 1, + "black_wool": 3 + }, + "3": { + "light_blue_dye": 3, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_target_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an target", + "conversation": "Let's work together to craft an target.", + "initial_inventory": { + "0": { + "redstone": 1, + "hay_block": 1 + }, + "1": { + "redstone": 1 + }, + "2": { + "redstone": 1 + }, + "3": { + "redstone": 1 + } + }, + "agent_count": 4, + "target": "target", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mossy_stone_brick_wall_2_with_plan_missing_stone_bricks_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an mossy_stone_brick_wall", + "conversation": "Let's work together to craft an mossy_stone_brick_wall.", + "initial_inventory": { + "0": { + "moss_block": 1 + }, + "1": { + "moss_block": 3 + }, + "2": { + "moss_block": 1 + }, + "3": { + "moss_block": 1 + } + }, + "agent_count": 4, + "target": "mossy_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "stone_bricks" + ] + }, + "multiagent_crafting_mossy_stone_brick_wall_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an mossy_stone_brick_wall", + "conversation": "Let's work together to craft an mossy_stone_brick_wall.", + "initial_inventory": { + "0": { + "mossy_stone_bricks": 3 + }, + "1": { + "mossy_stone_bricks": 1 + }, + "2": { + "mossy_stone_bricks": 1 + }, + "3": { + "mossy_stone_bricks": 1 + } + }, + "agent_count": 4, + "target": "mossy_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 4, + "stick": 3 + }, + "1": { + "cobblestone": 1, + "string": 3 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_map_3_with_plan_missing_compass_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an map", + "conversation": "Let's work together to craft an map.", + "initial_inventory": { + "0": { + "paper": 2 + }, + "1": { + "paper": 2 + }, + "2": { + "paper": 2 + }, + "3": { + "paper": 2 + } + }, + "agent_count": 4, + "target": "map", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "compass" + ] + }, + "multiagent_crafting_deepslate_tiles_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an deepslate_tiles", + "conversation": "Let's work together to craft an deepslate_tiles.", + "initial_inventory": { + "0": { + "polished_deepslate": 1 + }, + "1": { + "polished_deepslate": 1 + }, + "2": { + "polished_deepslate": 1 + }, + "3": { + "polished_deepslate": 1 + } + }, + "agent_count": 4, + "target": "deepslate_tiles", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magma_block_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an magma_block", + "conversation": "Let's work together to craft an magma_block.", + "initial_inventory": { + "0": { + "magma_cream": 1 + }, + "1": { + "magma_cream": 1 + }, + "2": { + "magma_cream": 1 + }, + "3": { + "magma_cream": 1 + } + }, + "agent_count": 4, + "target": "magma_block", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_2_with_plan_missing_cobblestone_iron_ingot_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 3, + "furnace": 1 + }, + "2": { + "redstone": 1 + }, + "3": { + "wooden_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "cobblestone", + "iron_ingot" + ] + }, + "multiagent_crafting_prismarine_wall_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an prismarine_wall", + "conversation": "Let's work together to craft an prismarine_wall.", + "initial_inventory": { + "0": { + "prismarine": 1 + }, + "1": { + "prismarine": 1 + }, + "2": { + "prismarine": 3 + }, + "3": { + "prismarine": 1 + } + }, + "agent_count": 4, + "target": "prismarine_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_banner_3_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_dye": 1, + "oak_planks": 2 + }, + "1": { + "orange_dye": 3, + "shears": 1 + }, + "2": { + "orange_dye": 1 + }, + "3": { + "orange_dye": 1 + } + }, + "agent_count": 4, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_polished_diorite_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_diorite", + "conversation": "Let's work together to craft an polished_diorite.", + "initial_inventory": { + "0": { + "diorite": 1 + }, + "1": { + "diorite": 1 + }, + "2": { + "diorite": 1 + }, + "3": { + "diorite": 1 + } + }, + "agent_count": 4, + "target": "polished_diorite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "cobblestone": 1 + }, + "1": { + "oak_planks": 3, + "cobblestone": 1 + }, + "2": { + "cobblestone": 1, + "iron_ingot": 1 + }, + "3": { + "cobblestone": 1, + "redstone": 1 + } + }, + "agent_count": 4, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_weathered_cut_copper_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an waxed_weathered_cut_copper", + "conversation": "Let's work together to craft an waxed_weathered_cut_copper.", + "initial_inventory": { + "0": { + "waxed_weathered_copper": 1 + }, + "1": { + "waxed_weathered_copper": 1 + }, + "2": { + "waxed_weathered_copper": 1 + }, + "3": { + "waxed_weathered_copper": 1 + } + }, + "agent_count": 4, + "target": "waxed_weathered_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_0_with_plan_missing_gold_ingot_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "stone_brick_slab": 4, + "netherite_scrap": 1 + }, + "3": { + "stone_brick_slab": 4, + "netherite_scrap": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_activator_rail_1_with_plan_missing_redstone_torch_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "stick": 2 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 3 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone_torch" + ] + }, + "multiagent_crafting_lodestone_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "1": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "2": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "3": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_piston_0_with_plan_missing_iron_ingot_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "cobblestone": 1 + }, + "1": { + "cobblestone": 1, + "redstone": 1 + }, + "2": { + "cobblestone": 1, + "stone_pickaxe": 1 + }, + "3": { + "cobblestone": 1, + "furnace": 1 + } + }, + "agent_count": 4, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_sticky_piston_3_with_plan_missing_redstone_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "cobblestone": 1 + }, + "1": { + "oak_planks": 3, + "cobblestone": 1 + }, + "2": { + "cobblestone": 1, + "iron_ingot": 1 + }, + "3": { + "cobblestone": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_cut_copper_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an cut_copper", + "conversation": "Let's work together to craft an cut_copper.", + "initial_inventory": { + "0": { + "copper_block": 1 + }, + "1": { + "copper_block": 1 + }, + "2": { + "copper_block": 1 + }, + "3": { + "copper_block": 1 + } + }, + "agent_count": 4, + "target": "cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_rail_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an rail", + "conversation": "Let's work together to craft an rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_piston_3_with_plan_missing_iron_ingot_redstone_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "cobblestone": 1 + }, + "1": { + "cobblestone": 1, + "stone_pickaxe": 1 + }, + "2": { + "cobblestone": 1, + "furnace": 1 + }, + "3": { + "cobblestone": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_purple_candle_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_candle", + "conversation": "Let's work together to craft an purple_candle.", + "initial_inventory": { + "0": { + "string": 1 + }, + "1": { + "honeycomb": 1 + }, + "2": { + "blue_dye": 1 + }, + "3": { + "red_dye": 1 + } + }, + "agent_count": 4, + "target": "purple_candle", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_detector_rail_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "stone_pressure_plate": 1 + }, + "1": { + "iron_ingot": 3, + "redstone": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_rail_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an rail", + "conversation": "Let's work together to craft an rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_detector_rail_2_with_plan_missing_stone_pressure_plate_redstone_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "1": { + "iron_ingot": 3 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "stone_pressure_plate", + "redstone" + ] + }, + "multiagent_crafting_dispenser_0_with_plan_missing_redstone_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "stick": 3 + }, + "1": { + "cobblestone": 4, + "string": 3 + }, + "2": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "3": { + "cobblestone": 1 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_glistering_melon_slice_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an glistering_melon_slice", + "conversation": "Let's work together to craft an glistering_melon_slice.", + "initial_inventory": { + "0": { + "gold_nugget": 2, + "melon_slice": 1 + }, + "1": { + "gold_nugget": 2 + }, + "2": { + "gold_nugget": 2 + }, + "3": { + "gold_nugget": 2 + } + }, + "agent_count": 4, + "target": "glistering_melon_slice", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_cut_copper_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an waxed_cut_copper", + "conversation": "Let's work together to craft an waxed_cut_copper.", + "initial_inventory": { + "0": { + "copper_block": 1, + "honeycomb": 1 + }, + "1": { + "copper_block": 1, + "honeycomb": 1 + }, + "2": { + "copper_block": 1, + "honeycomb": 1 + }, + "3": { + "copper_block": 1, + "honeycomb": 1 + } + }, + "agent_count": 4, + "target": "waxed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_diorite_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_diorite", + "conversation": "Let's work together to craft an polished_diorite.", + "initial_inventory": { + "0": { + "diorite": 1 + }, + "1": { + "diorite": 1 + }, + "2": { + "diorite": 1 + }, + "3": { + "diorite": 1 + } + }, + "agent_count": 4, + "target": "polished_diorite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "redstone": 1 + }, + "2": { + "iron_ingot": 1, + "stick": 1 + }, + "3": { + "iron_ingot": 3 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_helmet_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_helmet", + "conversation": "Let's work together to craft an leather_helmet.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 2 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + } + }, + "agent_count": 4, + "target": "leather_helmet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_cut_copper_0_with_plan_missing_copper_block_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an waxed_cut_copper", + "conversation": "Let's work together to craft an waxed_cut_copper.", + "initial_inventory": { + "0": { + "honeycomb": 1 + }, + "1": { + "honeycomb": 1 + }, + "2": { + "honeycomb": 1 + }, + "3": { + "honeycomb": 1 + } + }, + "agent_count": 4, + "target": "waxed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "copper_block" + ] + }, + "multiagent_crafting_cut_copper_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an cut_copper", + "conversation": "Let's work together to craft an cut_copper.", + "initial_inventory": { + "0": { + "copper_block": 1 + }, + "1": { + "copper_block": 1 + }, + "2": { + "copper_block": 1 + }, + "3": { + "copper_block": 1 + } + }, + "agent_count": 4, + "target": "cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_banner_2_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 3, + "oak_planks": 2 + }, + "1": { + "yellow_dye": 1, + "shears": 1 + }, + "2": { + "yellow_dye": 1 + }, + "3": { + "yellow_dye": 1 + } + }, + "agent_count": 4, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_netherite_block_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an netherite_block", + "conversation": "Let's work together to craft an netherite_block.", + "initial_inventory": { + "0": { + "netherite_ingot": 3 + }, + "1": { + "netherite_ingot": 2 + }, + "2": { + "netherite_ingot": 2 + }, + "3": { + "netherite_ingot": 2 + } + }, + "agent_count": 4, + "target": "netherite_block", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_2_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_dye": 1, + "oak_planks": 2 + }, + "1": { + "purple_dye": 3, + "shears": 1 + }, + "2": { + "purple_dye": 1 + }, + "3": { + "purple_dye": 1 + } + }, + "agent_count": 4, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_recovery_compass_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an recovery_compass", + "conversation": "Let's work together to craft an recovery_compass.", + "initial_inventory": { + "0": { + "echo_shard": 2, + "compass": 1 + }, + "1": { + "echo_shard": 2 + }, + "2": { + "echo_shard": 2 + }, + "3": { + "echo_shard": 2 + } + }, + "agent_count": 4, + "target": "recovery_compass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_banner_0_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_dye": 3, + "oak_planks": 2 + }, + "1": { + "magenta_dye": 1, + "shears": 1 + }, + "2": { + "magenta_dye": 1 + }, + "3": { + "magenta_dye": 1 + } + }, + "agent_count": 4, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_diorite_wall_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an diorite_wall", + "conversation": "Let's work together to craft an diorite_wall.", + "initial_inventory": { + "0": { + "diorite": 1 + }, + "1": { + "diorite": 1 + }, + "2": { + "diorite": 3 + }, + "3": { + "diorite": 1 + } + }, + "agent_count": 4, + "target": "diorite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_brick_wall_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an deepslate_brick_wall", + "conversation": "Let's work together to craft an deepslate_brick_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 2 + }, + "1": { + "polished_deepslate": 2 + }, + "2": { + "polished_deepslate": 2 + }, + "3": { + "polished_deepslate": 2 + } + }, + "agent_count": 4, + "target": "deepslate_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "stick": 2 + }, + "1": { + "iron_ingot": 3, + "redstone_torch": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_3_with_plan_missing_gold_ingot_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "stone_brick_slab": 4, + "netherite_scrap": 1 + }, + "3": { + "stone_brick_slab": 4, + "netherite_scrap": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_dispenser_0_with_plan_missing_redstone_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "bow": 1 + }, + "1": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "2": { + "cobblestone": 4 + }, + "3": { + "cobblestone": 1 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_sticky_piston_1_with_plan_missing_cobblestone_iron_ingot_redstone_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 3, + "diamond_pickaxe": 1 + }, + "2": { + "wooden_pickaxe": 1 + }, + "3": { + "stone_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "cobblestone", + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_detector_rail_3_with_plan_missing_stone_pressure_plate_redstone_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "1": { + "iron_ingot": 3 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "stone_pressure_plate", + "redstone" + ] + }, + "multiagent_crafting_purple_terracotta_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_terracotta", + "conversation": "Let's work together to craft an purple_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 2, + "blue_dye": 1 + }, + "1": { + "terracotta": 2, + "red_dye": 1 + }, + "2": { + "terracotta": 2 + }, + "3": { + "terracotta": 2 + } + }, + "agent_count": 4, + "target": "purple_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_helmet_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_helmet", + "conversation": "Let's work together to craft an leather_helmet.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 2 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + } + }, + "agent_count": 4, + "target": "leather_helmet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_blue_banner_0_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_dye": 1, + "oak_planks": 2 + }, + "1": { + "light_blue_dye": 1, + "shears": 1 + }, + "2": { + "light_blue_dye": 3 + }, + "3": { + "light_blue_dye": 1 + } + }, + "agent_count": 4, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_dispenser_2_with_plan_missing_redstone_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "bow": 1 + }, + "1": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "2": { + "cobblestone": 4 + }, + "3": { + "cobblestone": 1 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_light_blue_banner_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "light_blue_dye": 1, + "black_wool": 1 + }, + "2": { + "light_blue_dye": 1, + "black_wool": 3 + }, + "3": { + "light_blue_dye": 3, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_weathered_cut_copper_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an waxed_weathered_cut_copper", + "conversation": "Let's work together to craft an waxed_weathered_cut_copper.", + "initial_inventory": { + "0": { + "waxed_weathered_copper": 1 + }, + "1": { + "waxed_weathered_copper": 1 + }, + "2": { + "waxed_weathered_copper": 1 + }, + "3": { + "waxed_weathered_copper": 1 + } + }, + "agent_count": 4, + "target": "waxed_weathered_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_terracotta_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_terracotta", + "conversation": "Let's work together to craft an cyan_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 2, + "blue_dye": 1 + }, + "1": { + "terracotta": 2, + "green_dye": 1 + }, + "2": { + "terracotta": 2 + }, + "3": { + "terracotta": 2 + } + }, + "agent_count": 4, + "target": "cyan_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_glistering_melon_slice_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an glistering_melon_slice", + "conversation": "Let's work together to craft an glistering_melon_slice.", + "initial_inventory": { + "0": { + "gold_nugget": 2, + "melon_slice": 1 + }, + "1": { + "gold_nugget": 2 + }, + "2": { + "gold_nugget": 2 + }, + "3": { + "gold_nugget": 2 + } + }, + "agent_count": 4, + "target": "glistering_melon_slice", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_banner_1_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_dye": 1, + "oak_planks": 2 + }, + "1": { + "orange_dye": 3, + "shears": 1 + }, + "2": { + "orange_dye": 1 + }, + "3": { + "orange_dye": 1 + } + }, + "agent_count": 4, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_piston_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "cobblestone": 1 + }, + "1": { + "cobblestone": 1, + "iron_ingot": 1 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + } + }, + "agent_count": 4, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_end_crystal_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an end_crystal", + "conversation": "Let's work together to craft an end_crystal.", + "initial_inventory": { + "0": { + "glass": 1, + "ender_pearl": 1 + }, + "1": { + "glass": 4, + "blaze_powder": 1 + }, + "2": { + "glass": 1, + "ghast_tear": 1 + }, + "3": { + "glass": 1 + } + }, + "agent_count": 4, + "target": "end_crystal", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blast_furnace_0_with_plan_missing_smooth_stone_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "furnace": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 2 + } + }, + "agent_count": 4, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "smooth_stone" + ] + }, + "multiagent_crafting_purple_banner_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "purple_dye": 1, + "black_wool": 3 + }, + "2": { + "purple_dye": 3, + "black_wool": 1 + }, + "3": { + "purple_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_terracotta_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_terracotta", + "conversation": "Let's work together to craft an red_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 2, + "red_dye": 1 + }, + "1": { + "terracotta": 2 + }, + "2": { + "terracotta": 2 + }, + "3": { + "terracotta": 2 + } + }, + "agent_count": 4, + "target": "red_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_lantern_0_with_plan_missing_iron_ingot_coal_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "stick": 1, + "iron_pickaxe": 1 + }, + "1": { + "soul_sand": 1 + }, + "2": { + "stone_pickaxe": 1 + }, + "3": { + "furnace": 1 + } + }, + "agent_count": 4, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_lantern_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "iron_nugget": 2, + "torch": 1 + }, + "1": { + "iron_nugget": 2 + }, + "2": { + "iron_nugget": 2 + }, + "3": { + "iron_nugget": 2 + } + }, + "agent_count": 4, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_granite_wall_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an granite_wall", + "conversation": "Let's work together to craft an granite_wall.", + "initial_inventory": { + "0": { + "diorite": 1, + "quartz": 1 + }, + "1": { + "diorite": 1, + "quartz": 1 + }, + "2": { + "diorite": 1, + "quartz": 1 + }, + "3": { + "diorite": 3, + "quartz": 3 + } + }, + "agent_count": 4, + "target": "granite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blast_furnace_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "furnace": 1 + }, + "1": { + "iron_ingot": 1, + "smooth_stone": 3 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_banner_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "magenta_dye": 1, + "black_wool": 1 + }, + "2": { + "magenta_dye": 3, + "black_wool": 3 + }, + "3": { + "magenta_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mossy_cobblestone_wall_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an mossy_cobblestone_wall", + "conversation": "Let's work together to craft an mossy_cobblestone_wall.", + "initial_inventory": { + "0": { + "mossy_cobblestone": 1 + }, + "1": { + "mossy_cobblestone": 1 + }, + "2": { + "mossy_cobblestone": 3 + }, + "3": { + "mossy_cobblestone": 1 + } + }, + "agent_count": 4, + "target": "mossy_cobblestone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_blue_banner_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "light_blue_dye": 1, + "black_wool": 1 + }, + "2": { + "light_blue_dye": 1, + "black_wool": 3 + }, + "3": { + "light_blue_dye": 3, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_banner_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_wool": 1, + "stick": 1 + }, + "1": { + "yellow_wool": 1 + }, + "2": { + "yellow_wool": 3 + }, + "3": { + "yellow_wool": 1 + } + }, + "agent_count": 4, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_end_crystal_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an end_crystal", + "conversation": "Let's work together to craft an end_crystal.", + "initial_inventory": { + "0": { + "glass": 1, + "ender_pearl": 1 + }, + "1": { + "glass": 4, + "blaze_powder": 1 + }, + "2": { + "glass": 1, + "ghast_tear": 1 + }, + "3": { + "glass": 1 + } + }, + "agent_count": 4, + "target": "end_crystal", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_terracotta_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_terracotta", + "conversation": "Let's work together to craft an cyan_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 2, + "cyan_dye": 1 + }, + "1": { + "terracotta": 2 + }, + "2": { + "terracotta": 2 + }, + "3": { + "terracotta": 2 + } + }, + "agent_count": 4, + "target": "cyan_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "redstone": 1 + }, + "2": { + "iron_ingot": 1, + "stick": 1 + }, + "3": { + "iron_ingot": 3 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_lantern_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "iron_nugget": 2, + "soul_torch": 1 + }, + "1": { + "iron_nugget": 2 + }, + "2": { + "iron_nugget": 2 + }, + "3": { + "iron_nugget": 2 + } + }, + "agent_count": 4, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_2_with_plan_missing_iron_ingot_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "cobblestone": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 3, + "cobblestone": 1 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1, + "stone_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_polished_blackstone_wall_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_blackstone_wall", + "conversation": "Let's work together to craft an polished_blackstone_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 1 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + }, + "3": { + "polished_blackstone": 3 + } + }, + "agent_count": 4, + "target": "polished_blackstone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mossy_stone_brick_wall_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an mossy_stone_brick_wall", + "conversation": "Let's work together to craft an mossy_stone_brick_wall.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "moss_block": 1 + }, + "1": { + "stone_bricks": 1, + "moss_block": 1 + }, + "2": { + "stone_bricks": 1, + "moss_block": 3 + }, + "3": { + "stone_bricks": 1, + "moss_block": 1 + } + }, + "agent_count": 4, + "target": "mossy_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_recovery_compass_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an recovery_compass", + "conversation": "Let's work together to craft an recovery_compass.", + "initial_inventory": { + "0": { + "echo_shard": 2, + "compass": 1 + }, + "1": { + "echo_shard": 2 + }, + "2": { + "echo_shard": 2 + }, + "3": { + "echo_shard": 2 + } + }, + "agent_count": 4, + "target": "recovery_compass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "deepslate_bricks": 2 + }, + "1": { + "deepslate_bricks": 2 + }, + "2": { + "deepslate_bricks": 2 + }, + "3": { + "deepslate_bricks": 2 + } + }, + "agent_count": 4, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_helmet_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_helmet", + "conversation": "Let's work together to craft an leather_helmet.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 2 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + } + }, + "agent_count": 4, + "target": "leather_helmet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_banner_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "orange_dye": 3, + "black_wool": 1 + }, + "2": { + "orange_dye": 1, + "black_wool": 3 + }, + "3": { + "orange_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_wall_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_blackstone_wall", + "conversation": "Let's work together to craft an polished_blackstone_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 1 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + }, + "3": { + "polished_blackstone": 3 + } + }, + "agent_count": 4, + "target": "polished_blackstone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_banner_1_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_dye": 3, + "oak_planks": 2 + }, + "1": { + "magenta_dye": 1, + "shears": 1 + }, + "2": { + "magenta_dye": 1 + }, + "3": { + "magenta_dye": 1 + } + }, + "agent_count": 4, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_magenta_terracotta_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an magenta_terracotta", + "conversation": "Let's work together to craft an magenta_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 2, + "magenta_dye": 1 + }, + "1": { + "terracotta": 2 + }, + "2": { + "terracotta": 2 + }, + "3": { + "terracotta": 2 + } + }, + "agent_count": 4, + "target": "magenta_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_banner_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "yellow_dye": 1, + "black_wool": 1 + }, + "2": { + "yellow_dye": 3, + "black_wool": 1 + }, + "3": { + "yellow_dye": 1, + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_golden_carrot_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an golden_carrot", + "conversation": "Let's work together to craft an golden_carrot.", + "initial_inventory": { + "0": { + "gold_nugget": 2, + "carrot": 1 + }, + "1": { + "gold_nugget": 2 + }, + "2": { + "gold_nugget": 2 + }, + "3": { + "gold_nugget": 2 + } + }, + "agent_count": 4, + "target": "golden_carrot", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_3_with_plan_missing_stone_brick_slab_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "1": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "2": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "3": { + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "stone_brick_slab" + ] + }, + "multiagent_crafting_light_blue_banner_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_wool": 3, + "stick": 1 + }, + "1": { + "light_blue_wool": 1 + }, + "2": { + "light_blue_wool": 1 + }, + "3": { + "light_blue_wool": 1 + } + }, + "agent_count": 4, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_green_banner_2_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an green_banner", + "conversation": "Let's work together to craft an green_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "oak_planks": 2 + }, + "1": { + "green_dye": 1, + "shears": 1 + }, + "2": { + "green_dye": 1 + }, + "3": { + "green_dye": 3 + } + }, + "agent_count": 4, + "target": "green_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_respawn_anchor_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an respawn_anchor", + "conversation": "Let's work together to craft an respawn_anchor.", + "initial_inventory": { + "0": { + "crying_obsidian": 1, + "glowstone": 3 + }, + "1": { + "crying_obsidian": 1 + }, + "2": { + "crying_obsidian": 3 + }, + "3": { + "crying_obsidian": 1 + } + }, + "agent_count": 4, + "target": "respawn_anchor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_stained_glass_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_stained_glass", + "conversation": "Let's work together to craft an purple_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "blue_dye": 1 + }, + "1": { + "glass": 2, + "red_dye": 1 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "purple_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_brick_wall_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_blackstone_brick_wall", + "conversation": "Let's work together to craft an polished_blackstone_brick_wall.", + "initial_inventory": { + "0": { + "polished_blackstone_bricks": 3 + }, + "1": { + "polished_blackstone_bricks": 1 + }, + "2": { + "polished_blackstone_bricks": 1 + }, + "3": { + "polished_blackstone_bricks": 1 + } + }, + "agent_count": 4, + "target": "polished_blackstone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "cobblestone": 1 + }, + "1": { + "oak_planks": 3, + "cobblestone": 1 + }, + "2": { + "cobblestone": 1, + "iron_ingot": 1 + }, + "3": { + "cobblestone": 1, + "redstone": 1 + } + }, + "agent_count": 4, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tiles_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an deepslate_tiles", + "conversation": "Let's work together to craft an deepslate_tiles.", + "initial_inventory": { + "0": { + "deepslate_bricks": 1 + }, + "1": { + "deepslate_bricks": 1 + }, + "2": { + "deepslate_bricks": 1 + }, + "3": { + "deepslate_bricks": 1 + } + }, + "agent_count": 4, + "target": "deepslate_tiles", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_3_with_plan_missing_redstone_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "stick": 1 + }, + "2": { + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_0_with_plan_missing_redstone_torch_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "stick": 2 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 3 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone_torch" + ] + }, + "multiagent_crafting_purple_candle_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_candle", + "conversation": "Let's work together to craft an purple_candle.", + "initial_inventory": { + "0": { + "string": 1 + }, + "1": { + "honeycomb": 1 + }, + "2": { + "blue_dye": 1 + }, + "3": { + "red_dye": 1 + } + }, + "agent_count": 4, + "target": "purple_candle", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_recovery_compass_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an recovery_compass", + "conversation": "Let's work together to craft an recovery_compass.", + "initial_inventory": { + "0": { + "echo_shard": 2, + "compass": 1 + }, + "1": { + "echo_shard": 2 + }, + "2": { + "echo_shard": 2 + }, + "3": { + "echo_shard": 2 + } + }, + "agent_count": 4, + "target": "recovery_compass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_brick_wall_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_blackstone_brick_wall", + "conversation": "Let's work together to craft an polished_blackstone_brick_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 2 + }, + "1": { + "polished_blackstone": 2 + }, + "2": { + "polished_blackstone": 2 + }, + "3": { + "polished_blackstone": 2 + } + }, + "agent_count": 4, + "target": "polished_blackstone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_terracotta_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_terracotta", + "conversation": "Let's work together to craft an red_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 2, + "red_dye": 1 + }, + "1": { + "terracotta": 2 + }, + "2": { + "terracotta": 2 + }, + "3": { + "terracotta": 2 + } + }, + "agent_count": 4, + "target": "red_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_2_with_plan_missing_redstone_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "cobblestone": 1 + }, + "1": { + "oak_planks": 3, + "cobblestone": 1 + }, + "2": { + "cobblestone": 1, + "iron_ingot": 1 + }, + "3": { + "cobblestone": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_blast_furnace_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "furnace": 1 + }, + "1": { + "iron_ingot": 1, + "smooth_stone": 3 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_stained_glass_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_stained_glass", + "conversation": "Let's work together to craft an purple_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "blue_dye": 1 + }, + "1": { + "glass": 2, + "red_dye": 1 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "purple_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_banner_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_wool": 1, + "stick": 1 + }, + "1": { + "orange_wool": 1 + }, + "2": { + "orange_wool": 3 + }, + "3": { + "orange_wool": 1 + } + }, + "agent_count": 4, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tiles_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an deepslate_tiles", + "conversation": "Let's work together to craft an deepslate_tiles.", + "initial_inventory": { + "0": { + "polished_deepslate": 1 + }, + "1": { + "polished_deepslate": 1 + }, + "2": { + "polished_deepslate": 1 + }, + "3": { + "polished_deepslate": 1 + } + }, + "agent_count": 4, + "target": "deepslate_tiles", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_brick_wall_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an deepslate_brick_wall", + "conversation": "Let's work together to craft an deepslate_brick_wall.", + "initial_inventory": { + "0": { + "deepslate_bricks": 1 + }, + "1": { + "deepslate_bricks": 1 + }, + "2": { + "deepslate_bricks": 3 + }, + "3": { + "deepslate_bricks": 1 + } + }, + "agent_count": 4, + "target": "deepslate_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_brick_wall_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_blackstone_brick_wall", + "conversation": "Let's work together to craft an polished_blackstone_brick_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 2 + }, + "1": { + "polished_blackstone": 2 + }, + "2": { + "polished_blackstone": 2 + }, + "3": { + "polished_blackstone": 2 + } + }, + "agent_count": 4, + "target": "polished_blackstone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "stick": 2 + }, + "1": { + "iron_ingot": 3, + "redstone_torch": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_candle_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_candle", + "conversation": "Let's work together to craft an purple_candle.", + "initial_inventory": { + "0": { + "string": 1 + }, + "1": { + "honeycomb": 1 + }, + "2": { + "blue_dye": 1 + }, + "3": { + "red_dye": 1 + } + }, + "agent_count": 4, + "target": "purple_candle", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bone_block_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an bone_block", + "conversation": "Let's work together to craft an bone_block.", + "initial_inventory": { + "0": { + "bone_meal": 3 + }, + "1": { + "bone_meal": 2 + }, + "2": { + "bone_meal": 2 + }, + "3": { + "bone_meal": 2 + } + }, + "agent_count": 4, + "target": "bone_block", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_green_banner_0_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an green_banner", + "conversation": "Let's work together to craft an green_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "oak_planks": 2 + }, + "1": { + "green_dye": 1, + "shears": 1 + }, + "2": { + "green_dye": 1 + }, + "3": { + "green_dye": 3 + } + }, + "agent_count": 4, + "target": "green_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_piston_1_with_plan_missing_iron_ingot_redstone_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "cobblestone": 1 + }, + "1": { + "cobblestone": 1, + "stone_pickaxe": 1 + }, + "2": { + "cobblestone": 1, + "furnace": 1 + }, + "3": { + "cobblestone": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_magenta_banner_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "magenta_dye": 1, + "black_wool": 1 + }, + "2": { + "magenta_dye": 3, + "black_wool": 3 + }, + "3": { + "magenta_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_terracotta_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an magenta_terracotta", + "conversation": "Let's work together to craft an magenta_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 2, + "magenta_dye": 1 + }, + "1": { + "terracotta": 2 + }, + "2": { + "terracotta": 2 + }, + "3": { + "terracotta": 2 + } + }, + "agent_count": 4, + "target": "magenta_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_1_with_plan_missing_stone_brick_slab_gold_ingot_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "netherite_scrap": 1 + }, + "3": { + "netherite_scrap": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "stone_brick_slab", + "gold_ingot" + ] + }, + "multiagent_crafting_anvil_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an anvil", + "conversation": "Let's work together to craft an anvil.", + "initial_inventory": { + "0": { + "iron_block": 3, + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "anvil", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magma_block_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an magma_block", + "conversation": "Let's work together to craft an magma_block.", + "initial_inventory": { + "0": { + "blaze_powder": 1, + "slime_ball": 1 + }, + "1": { + "blaze_powder": 1, + "slime_ball": 1 + }, + "2": { + "blaze_powder": 1, + "slime_ball": 1 + }, + "3": { + "blaze_powder": 1, + "slime_ball": 1 + } + }, + "agent_count": 4, + "target": "magma_block", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_netherite_block_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an netherite_block", + "conversation": "Let's work together to craft an netherite_block.", + "initial_inventory": { + "0": { + "netherite_ingot": 3 + }, + "1": { + "netherite_ingot": 2 + }, + "2": { + "netherite_ingot": 2 + }, + "3": { + "netherite_ingot": 2 + } + }, + "agent_count": 4, + "target": "netherite_block", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_banner_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "yellow_dye": 1, + "black_wool": 1 + }, + "2": { + "yellow_dye": 3, + "black_wool": 1 + }, + "3": { + "yellow_dye": 1, + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_ice_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an blue_ice", + "conversation": "Let's work together to craft an blue_ice.", + "initial_inventory": { + "0": { + "packed_ice": 2 + }, + "1": { + "packed_ice": 3 + }, + "2": { + "packed_ice": 2 + }, + "3": { + "packed_ice": 2 + } + }, + "agent_count": 4, + "target": "blue_ice", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_item_frame_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an item_frame", + "conversation": "Let's work together to craft an item_frame.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "1": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "2": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "3": { + "oak_planks": 1, + "rabbit_hide": 1 + } + }, + "agent_count": 4, + "target": "item_frame", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_prismarine_wall_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an prismarine_wall", + "conversation": "Let's work together to craft an prismarine_wall.", + "initial_inventory": { + "0": { + "prismarine": 1 + }, + "1": { + "prismarine": 1 + }, + "2": { + "prismarine": 3 + }, + "3": { + "prismarine": 1 + } + }, + "agent_count": 4, + "target": "prismarine_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_brick_wall_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an deepslate_brick_wall", + "conversation": "Let's work together to craft an deepslate_brick_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 2 + }, + "1": { + "polished_deepslate": 2 + }, + "2": { + "polished_deepslate": 2 + }, + "3": { + "polished_deepslate": 2 + } + }, + "agent_count": 4, + "target": "deepslate_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_anvil_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an anvil", + "conversation": "Let's work together to craft an anvil.", + "initial_inventory": { + "0": { + "iron_block": 3, + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "anvil", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_2_with_plan_missing_iron_ingot_redstone_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "1": { + "oak_planks": 3, + "cobblestone": 1 + }, + "2": { + "cobblestone": 1, + "stone_pickaxe": 1 + }, + "3": { + "cobblestone": 1, + "furnace": 1 + } + }, + "agent_count": 4, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_blast_furnace_3_with_plan_missing_furnace_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "smooth_stone": 3 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "furnace" + ] + }, + "multiagent_crafting_lodestone_1_with_plan_missing_gold_ingot_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "stone_brick_slab": 4, + "netherite_scrap": 1 + }, + "3": { + "stone_brick_slab": 4, + "netherite_scrap": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_mossy_cobblestone_wall_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an mossy_cobblestone_wall", + "conversation": "Let's work together to craft an mossy_cobblestone_wall.", + "initial_inventory": { + "0": { + "mossy_cobblestone": 1 + }, + "1": { + "mossy_cobblestone": 1 + }, + "2": { + "mossy_cobblestone": 3 + }, + "3": { + "mossy_cobblestone": 1 + } + }, + "agent_count": 4, + "target": "mossy_cobblestone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_banner_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "yellow_dye": 1, + "black_wool": 1 + }, + "2": { + "yellow_dye": 3, + "black_wool": 1 + }, + "3": { + "yellow_dye": 1, + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brick_wall_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an brick_wall", + "conversation": "Let's work together to craft an brick_wall.", + "initial_inventory": { + "0": { + "bricks": 1 + }, + "1": { + "bricks": 3 + }, + "2": { + "bricks": 1 + }, + "3": { + "bricks": 1 + } + }, + "agent_count": 4, + "target": "brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_3_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_dye": 1, + "oak_planks": 2 + }, + "1": { + "purple_dye": 3, + "shears": 1 + }, + "2": { + "purple_dye": 1 + }, + "3": { + "purple_dye": 1 + } + }, + "agent_count": 4, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_detector_rail_1_with_plan_missing_iron_ingot_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "stone_pressure_plate": 1 + }, + "1": { + "redstone": 1 + }, + "2": { + "stone_pickaxe": 1 + }, + "3": { + "furnace": 1 + } + }, + "agent_count": 4, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_sticky_piston_1_with_plan_missing_iron_ingot_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "cobblestone": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 3, + "cobblestone": 1 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1, + "stone_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_map_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an map", + "conversation": "Let's work together to craft an map.", + "initial_inventory": { + "0": { + "paper": 2, + "compass": 1 + }, + "1": { + "paper": 2 + }, + "2": { + "paper": 2 + }, + "3": { + "paper": 2 + } + }, + "agent_count": 4, + "target": "map", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_enchanting_table_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an enchanting_table", + "conversation": "Let's work together to craft an enchanting_table.", + "initial_inventory": { + "0": { + "paper": 3, + "obsidian": 1 + }, + "1": { + "leather": 1, + "obsidian": 1 + }, + "2": { + "diamond": 2, + "obsidian": 1 + }, + "3": { + "obsidian": 1 + } + }, + "agent_count": 4, + "target": "enchanting_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_stained_glass_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an magenta_stained_glass", + "conversation": "Let's work together to craft an magenta_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "magenta_dye": 1 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "magenta_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_rail_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an rail", + "conversation": "Let's work together to craft an rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lantern_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "iron_nugget": 2, + "torch": 1 + }, + "1": { + "iron_nugget": 2 + }, + "2": { + "iron_nugget": 2 + }, + "3": { + "iron_nugget": 2 + } + }, + "agent_count": 4, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_cut_copper_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an waxed_cut_copper", + "conversation": "Let's work together to craft an waxed_cut_copper.", + "initial_inventory": { + "0": { + "copper_block": 1, + "honeycomb": 1 + }, + "1": { + "copper_block": 1, + "honeycomb": 1 + }, + "2": { + "copper_block": 1, + "honeycomb": 1 + }, + "3": { + "copper_block": 1, + "honeycomb": 1 + } + }, + "agent_count": 4, + "target": "waxed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_detector_rail_3_with_plan_missing_iron_ingot_redstone_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "stone_pressure_plate": 1 + }, + "1": { + "stone_pickaxe": 1 + }, + "2": { + "furnace": 1 + }, + "3": { + "diamond_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_green_banner_3_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an green_banner", + "conversation": "Let's work together to craft an green_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "oak_planks": 2 + }, + "1": { + "green_dye": 1, + "shears": 1 + }, + "2": { + "green_dye": 1 + }, + "3": { + "green_dye": 3 + } + }, + "agent_count": 4, + "target": "green_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_brick_wall_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an brick_wall", + "conversation": "Let's work together to craft an brick_wall.", + "initial_inventory": { + "0": { + "bricks": 1 + }, + "1": { + "bricks": 3 + }, + "2": { + "bricks": 1 + }, + "3": { + "bricks": 1 + } + }, + "agent_count": 4, + "target": "brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_item_frame_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an item_frame", + "conversation": "Let's work together to craft an item_frame.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "1": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "2": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "3": { + "oak_planks": 1, + "rabbit_hide": 1 + } + }, + "agent_count": 4, + "target": "item_frame", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_1_with_plan_missing_redstone_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "bow": 1 + }, + "1": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "2": { + "cobblestone": 4 + }, + "3": { + "cobblestone": 1 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_purple_banner_1_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_dye": 1, + "oak_planks": 2 + }, + "1": { + "purple_dye": 3, + "shears": 1 + }, + "2": { + "purple_dye": 1 + }, + "3": { + "purple_dye": 1 + } + }, + "agent_count": 4, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_waxed_cut_copper_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an waxed_cut_copper", + "conversation": "Let's work together to craft an waxed_cut_copper.", + "initial_inventory": { + "0": { + "waxed_copper_block": 1 + }, + "1": { + "waxed_copper_block": 1 + }, + "2": { + "waxed_copper_block": 1 + }, + "3": { + "waxed_copper_block": 1 + } + }, + "agent_count": 4, + "target": "waxed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_0_with_plan_missing_iron_ingot_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "cobblestone": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 3, + "cobblestone": 1 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1, + "stone_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_deepslate_bricks_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an deepslate_bricks", + "conversation": "Let's work together to craft an deepslate_bricks.", + "initial_inventory": { + "0": { + "polished_deepslate": 1 + }, + "1": { + "polished_deepslate": 1 + }, + "2": { + "polished_deepslate": 1 + }, + "3": { + "polished_deepslate": 1 + } + }, + "agent_count": 4, + "target": "deepslate_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_1_with_plan_missing_iron_ingot_redstone_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "1": { + "oak_planks": 3, + "cobblestone": 1 + }, + "2": { + "cobblestone": 1, + "stone_pickaxe": 1 + }, + "3": { + "cobblestone": 1, + "furnace": 1 + } + }, + "agent_count": 4, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_piston_2_with_plan_missing_cobblestone_iron_ingot_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "furnace": 1 + }, + "1": { + "redstone": 1 + }, + "2": { + "wooden_pickaxe": 1 + }, + "3": { + "stone_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "cobblestone", + "iron_ingot" + ] + }, + "multiagent_crafting_dispenser_3_with_plan_missing_redstone_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "stick": 3 + }, + "1": { + "cobblestone": 4, + "string": 3 + }, + "2": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "3": { + "cobblestone": 1 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_detector_rail_1_with_plan_missing_stone_pressure_plate_redstone_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "1": { + "iron_ingot": 3 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "stone_pressure_plate", + "redstone" + ] + }, + "multiagent_crafting_soul_lantern_2_with_plan_missing_iron_ingot_coal_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "stick": 1, + "iron_pickaxe": 1 + }, + "1": { + "soul_sand": 1 + }, + "2": { + "stone_pickaxe": 1 + }, + "3": { + "furnace": 1 + } + }, + "agent_count": 4, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_blue_ice_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an blue_ice", + "conversation": "Let's work together to craft an blue_ice.", + "initial_inventory": { + "0": { + "packed_ice": 2 + }, + "1": { + "packed_ice": 3 + }, + "2": { + "packed_ice": 2 + }, + "3": { + "packed_ice": 2 + } + }, + "agent_count": 4, + "target": "blue_ice", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_1_with_plan_missing_redstone_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "stick": 1 + }, + "2": { + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_leather_chestplate_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_chestplate", + "conversation": "Let's work together to craft an leather_chestplate.", + "initial_inventory": { + "0": { + "leather": 2 + }, + "1": { + "leather": 2 + }, + "2": { + "leather": 2 + }, + "3": { + "leather": 2 + } + }, + "agent_count": 4, + "target": "leather_chestplate", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_1_with_plan_missing_cobblestone_iron_ingot_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 3, + "furnace": 1 + }, + "2": { + "redstone": 1 + }, + "3": { + "wooden_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "cobblestone", + "iron_ingot" + ] + }, + "multiagent_crafting_polished_deepslate_wall_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_deepslate_wall", + "conversation": "Let's work together to craft an polished_deepslate_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 1 + }, + "1": { + "polished_deepslate": 1 + }, + "2": { + "polished_deepslate": 1 + }, + "3": { + "polished_deepslate": 3 + } + }, + "agent_count": 4, + "target": "polished_deepslate_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 4, + "stick": 3 + }, + "1": { + "cobblestone": 1, + "string": 3 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_wool": 1, + "stick": 1 + }, + "1": { + "purple_wool": 1 + }, + "2": { + "purple_wool": 3 + }, + "3": { + "purple_wool": 1 + } + }, + "agent_count": 4, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "1": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "2": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "3": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_piston_3_with_plan_missing_cobblestone_iron_ingot_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "furnace": 1 + }, + "1": { + "redstone": 1 + }, + "2": { + "wooden_pickaxe": 1 + }, + "3": { + "stone_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "cobblestone", + "iron_ingot" + ] + }, + "multiagent_crafting_waxed_cut_copper_3_with_plan_missing_copper_block_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an waxed_cut_copper", + "conversation": "Let's work together to craft an waxed_cut_copper.", + "initial_inventory": { + "0": { + "honeycomb": 1 + }, + "1": { + "honeycomb": 1 + }, + "2": { + "honeycomb": 1 + }, + "3": { + "honeycomb": 1 + } + }, + "agent_count": 4, + "target": "waxed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "copper_block" + ] + }, + "multiagent_crafting_activator_rail_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "stick": 2 + }, + "1": { + "iron_ingot": 3, + "redstone_torch": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_blue_banner_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "light_blue_dye": 1, + "black_wool": 1 + }, + "2": { + "light_blue_dye": 1, + "black_wool": 3 + }, + "3": { + "light_blue_dye": 3, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_respawn_anchor_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an respawn_anchor", + "conversation": "Let's work together to craft an respawn_anchor.", + "initial_inventory": { + "0": { + "crying_obsidian": 1, + "glowstone": 3 + }, + "1": { + "crying_obsidian": 1 + }, + "2": { + "crying_obsidian": 3 + }, + "3": { + "crying_obsidian": 1 + } + }, + "agent_count": 4, + "target": "respawn_anchor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 4, + "stick": 3 + }, + "1": { + "cobblestone": 1, + "string": 3 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_piston_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "cobblestone": 1 + }, + "1": { + "cobblestone": 1, + "iron_ingot": 1 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + } + }, + "agent_count": 4, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_3_with_plan_missing_iron_ingot_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "cobblestone": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 3, + "cobblestone": 1 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1, + "stone_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_anvil_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an anvil", + "conversation": "Let's work together to craft an anvil.", + "initial_inventory": { + "0": { + "iron_block": 3, + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "anvil", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_end_crystal_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an end_crystal", + "conversation": "Let's work together to craft an end_crystal.", + "initial_inventory": { + "0": { + "glass": 1, + "ender_pearl": 1 + }, + "1": { + "glass": 4, + "blaze_powder": 1 + }, + "2": { + "glass": 1, + "ghast_tear": 1 + }, + "3": { + "glass": 1 + } + }, + "agent_count": 4, + "target": "end_crystal", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_target_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an target", + "conversation": "Let's work together to craft an target.", + "initial_inventory": { + "0": { + "redstone": 1, + "hay_block": 1 + }, + "1": { + "redstone": 1 + }, + "2": { + "redstone": 1 + }, + "3": { + "redstone": 1 + } + }, + "agent_count": 4, + "target": "target", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_banner_0_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_dye": 3, + "oak_planks": 2 + }, + "1": { + "light_gray_dye": 1, + "shears": 1 + }, + "2": { + "light_gray_dye": 1 + }, + "3": { + "light_gray_dye": 1 + } + }, + "agent_count": 4, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_mossy_stone_brick_wall_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an mossy_stone_brick_wall", + "conversation": "Let's work together to craft an mossy_stone_brick_wall.", + "initial_inventory": { + "0": { + "mossy_stone_bricks": 3 + }, + "1": { + "mossy_stone_bricks": 1 + }, + "2": { + "mossy_stone_bricks": 1 + }, + "3": { + "mossy_stone_bricks": 1 + } + }, + "agent_count": 4, + "target": "mossy_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_2_with_plan_missing_cobblestone_iron_ingot_redstone_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 3, + "diamond_pickaxe": 1 + }, + "2": { + "wooden_pickaxe": 1 + }, + "3": { + "stone_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "cobblestone", + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_piston_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "cobblestone": 1 + }, + "1": { + "cobblestone": 1, + "iron_ingot": 1 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + } + }, + "agent_count": 4, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_0_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_dye": 1, + "oak_planks": 2 + }, + "1": { + "purple_dye": 3, + "shears": 1 + }, + "2": { + "purple_dye": 1 + }, + "3": { + "purple_dye": 1 + } + }, + "agent_count": 4, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_soul_lantern_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "iron_nugget": 2, + "soul_torch": 1 + }, + "1": { + "iron_nugget": 2 + }, + "2": { + "iron_nugget": 2 + }, + "3": { + "iron_nugget": 2 + } + }, + "agent_count": 4, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_banner_0_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_dye": 1, + "oak_planks": 2 + }, + "1": { + "orange_dye": 3, + "shears": 1 + }, + "2": { + "orange_dye": 1 + }, + "3": { + "orange_dye": 1 + } + }, + "agent_count": 4, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_blast_furnace_0_with_plan_missing_furnace_smooth_stone_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "furnace", + "smooth_stone" + ] + }, + "multiagent_crafting_lodestone_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "1": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "2": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "3": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_green_banner_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an green_banner", + "conversation": "Let's work together to craft an green_banner.", + "initial_inventory": { + "0": { + "green_wool": 1, + "stick": 1 + }, + "1": { + "green_wool": 3 + }, + "2": { + "green_wool": 1 + }, + "3": { + "green_wool": 1 + } + }, + "agent_count": 4, + "target": "green_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mossy_stone_brick_wall_3_with_plan_missing_stone_bricks_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an mossy_stone_brick_wall", + "conversation": "Let's work together to craft an mossy_stone_brick_wall.", + "initial_inventory": { + "0": { + "moss_block": 1 + }, + "1": { + "moss_block": 3 + }, + "2": { + "moss_block": 1 + }, + "3": { + "moss_block": 1 + } + }, + "agent_count": 4, + "target": "mossy_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "stone_bricks" + ] + }, + "multiagent_crafting_leather_chestplate_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_chestplate", + "conversation": "Let's work together to craft an leather_chestplate.", + "initial_inventory": { + "0": { + "leather": 2 + }, + "1": { + "leather": 2 + }, + "2": { + "leather": 2 + }, + "3": { + "leather": 2 + } + }, + "agent_count": 4, + "target": "leather_chestplate", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_enchanting_table_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an enchanting_table", + "conversation": "Let's work together to craft an enchanting_table.", + "initial_inventory": { + "0": { + "paper": 3, + "obsidian": 1 + }, + "1": { + "leather": 1, + "obsidian": 1 + }, + "2": { + "diamond": 2, + "obsidian": 1 + }, + "3": { + "obsidian": 1 + } + }, + "agent_count": 4, + "target": "enchanting_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mossy_cobblestone_wall_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an mossy_cobblestone_wall", + "conversation": "Let's work together to craft an mossy_cobblestone_wall.", + "initial_inventory": { + "0": { + "mossy_cobblestone": 1 + }, + "1": { + "mossy_cobblestone": 1 + }, + "2": { + "mossy_cobblestone": 3 + }, + "3": { + "mossy_cobblestone": 1 + } + }, + "agent_count": 4, + "target": "mossy_cobblestone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_brick_wall_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_blackstone_brick_wall", + "conversation": "Let's work together to craft an polished_blackstone_brick_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 2 + }, + "1": { + "polished_blackstone": 2 + }, + "2": { + "polished_blackstone": 2 + }, + "3": { + "polished_blackstone": 2 + } + }, + "agent_count": 4, + "target": "polished_blackstone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_anvil_2_with_plan_missing_iron_block_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an anvil", + "conversation": "Let's work together to craft an anvil.", + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "anvil", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "iron_block" + ] + }, + "multiagent_crafting_lodestone_0_with_plan_missing_stone_brick_slab_gold_ingot_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "netherite_scrap": 1 + }, + "3": { + "netherite_scrap": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "stone_brick_slab", + "gold_ingot" + ] + }, + "multiagent_crafting_blast_furnace_1_with_plan_missing_iron_ingot_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "furnace": 1 + }, + "1": { + "smooth_stone": 3 + }, + "2": { + "stone_pickaxe": 1 + }, + "3": { + "furnace": 1 + } + }, + "agent_count": 4, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_dispenser_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 4, + "stick": 3 + }, + "1": { + "cobblestone": 1, + "string": 3 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_stained_glass_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_stained_glass", + "conversation": "Let's work together to craft an purple_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "purple_dye": 1 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "purple_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "purple_dye": 1, + "black_wool": 3 + }, + "2": { + "purple_dye": 3, + "black_wool": 1 + }, + "3": { + "purple_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_recovery_compass_1_with_plan_missing_compass_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an recovery_compass", + "conversation": "Let's work together to craft an recovery_compass.", + "initial_inventory": { + "0": { + "echo_shard": 2 + }, + "1": { + "echo_shard": 2 + }, + "2": { + "echo_shard": 2 + }, + "3": { + "echo_shard": 2 + } + }, + "agent_count": 4, + "target": "recovery_compass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "compass" + ] + }, + "multiagent_crafting_cyan_terracotta_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_terracotta", + "conversation": "Let's work together to craft an cyan_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 2, + "blue_dye": 1 + }, + "1": { + "terracotta": 2, + "green_dye": 1 + }, + "2": { + "terracotta": 2 + }, + "3": { + "terracotta": 2 + } + }, + "agent_count": 4, + "target": "cyan_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_andesite_wall_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an andesite_wall", + "conversation": "Let's work together to craft an andesite_wall.", + "initial_inventory": { + "0": { + "andesite": 1 + }, + "1": { + "andesite": 1 + }, + "2": { + "andesite": 3 + }, + "3": { + "andesite": 1 + } + }, + "agent_count": 4, + "target": "andesite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_2_with_plan_missing_gold_ingot_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "stone_brick_slab": 4, + "netherite_scrap": 1 + }, + "3": { + "stone_brick_slab": 4, + "netherite_scrap": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_magma_block_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an magma_block", + "conversation": "Let's work together to craft an magma_block.", + "initial_inventory": { + "0": { + "magma_cream": 1 + }, + "1": { + "magma_cream": 1 + }, + "2": { + "magma_cream": 1 + }, + "3": { + "magma_cream": 1 + } + }, + "agent_count": 4, + "target": "magma_block", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_1_with_plan_missing_redstone_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "cobblestone": 1 + }, + "1": { + "oak_planks": 3, + "cobblestone": 1 + }, + "2": { + "cobblestone": 1, + "iron_ingot": 1 + }, + "3": { + "cobblestone": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_purple_stained_glass_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_stained_glass", + "conversation": "Let's work together to craft an purple_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "purple_dye": 1 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "purple_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_0_with_plan_missing_redstone_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "cobblestone": 1 + }, + "1": { + "oak_planks": 3, + "cobblestone": 1 + }, + "2": { + "cobblestone": 1, + "iron_ingot": 1 + }, + "3": { + "cobblestone": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_deepslate_tile_wall_0_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 2 + }, + "1": { + "polished_deepslate": 2 + }, + "2": { + "polished_deepslate": 2 + }, + "3": { + "polished_deepslate": 2 + } + }, + "agent_count": 4, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_1_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 2 + }, + "1": { + "polished_deepslate": 2 + }, + "2": { + "polished_deepslate": 2 + }, + "3": { + "polished_deepslate": 2 + } + }, + "agent_count": 4, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_2_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 2 + }, + "1": { + "polished_deepslate": 2 + }, + "2": { + "polished_deepslate": 2 + }, + "3": { + "polished_deepslate": 2 + } + }, + "agent_count": 4, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_3_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 2 + }, + "1": { + "polished_deepslate": 2 + }, + "2": { + "polished_deepslate": 2 + }, + "3": { + "polished_deepslate": 2 + } + }, + "agent_count": 4, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_0_with_plan_missing_redstone_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 1, + "string": 3 + }, + "2": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "3": { + "cobblestone": 4 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_dispenser_1_with_plan_missing_redstone_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 1, + "string": 3 + }, + "2": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "3": { + "cobblestone": 4 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_dispenser_2_with_plan_missing_redstone_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 1, + "string": 3 + }, + "2": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "3": { + "cobblestone": 4 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_dispenser_3_with_plan_missing_redstone_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 1, + "string": 3 + }, + "2": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "3": { + "cobblestone": 4 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_dispenser_0_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 4, + "string": 3 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_1_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 4, + "string": 3 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_2_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 4, + "string": 3 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_3_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 4, + "string": 3 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_0_with_plan_missing_redstone_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "3": { + "iron_ingot": 3 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_1_with_plan_missing_redstone_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "3": { + "iron_ingot": 3 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_2_with_plan_missing_redstone_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "3": { + "iron_ingot": 3 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_3_with_plan_missing_redstone_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "3": { + "iron_ingot": 3 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_0_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "redstone": 1 + }, + "2": { + "iron_ingot": 3, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_1_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "redstone": 1 + }, + "2": { + "iron_ingot": 3, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_2_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "redstone": 1 + }, + "2": { + "iron_ingot": 3, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_3_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "redstone": 1 + }, + "2": { + "iron_ingot": 3, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_glow_item_frame_0_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an glow_item_frame", + "conversation": "Let's work together to craft an glow_item_frame.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "rabbit_hide": 1, + "glow_ink_sac": 1 + }, + "1": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "2": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "3": { + "oak_planks": 1, + "rabbit_hide": 1 + } + }, + "agent_count": 4, + "target": "glow_item_frame", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_glow_item_frame_1_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an glow_item_frame", + "conversation": "Let's work together to craft an glow_item_frame.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "rabbit_hide": 1, + "glow_ink_sac": 1 + }, + "1": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "2": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "3": { + "oak_planks": 1, + "rabbit_hide": 1 + } + }, + "agent_count": 4, + "target": "glow_item_frame", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_glow_item_frame_2_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an glow_item_frame", + "conversation": "Let's work together to craft an glow_item_frame.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "rabbit_hide": 1, + "glow_ink_sac": 1 + }, + "1": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "2": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "3": { + "oak_planks": 1, + "rabbit_hide": 1 + } + }, + "agent_count": 4, + "target": "glow_item_frame", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_glow_item_frame_3_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an glow_item_frame", + "conversation": "Let's work together to craft an glow_item_frame.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "rabbit_hide": 1, + "glow_ink_sac": 1 + }, + "1": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "2": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "3": { + "oak_planks": 1, + "rabbit_hide": 1 + } + }, + "agent_count": 4, + "target": "glow_item_frame", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_0_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 3, + "black_wool": 3 + }, + "1": { + "red_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_1_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 3, + "black_wool": 3 + }, + "1": { + "red_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_2_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 3, + "black_wool": 3 + }, + "1": { + "red_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_3_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 3, + "black_wool": 3 + }, + "1": { + "red_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_lantern_0_with_plan_missing_iron_ingot_coal_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "iron_pickaxe": 1 + }, + "1": { + "soul_sand": 1 + }, + "2": { + "stone_pickaxe": 1 + }, + "3": { + "furnace": 1 + } + }, + "agent_count": 4, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_soul_lantern_1_with_plan_missing_iron_ingot_coal_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "iron_pickaxe": 1 + }, + "1": { + "soul_sand": 1 + }, + "2": { + "stone_pickaxe": 1 + }, + "3": { + "furnace": 1 + } + }, + "agent_count": 4, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_soul_lantern_2_with_plan_missing_iron_ingot_coal_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "iron_pickaxe": 1 + }, + "1": { + "soul_sand": 1 + }, + "2": { + "stone_pickaxe": 1 + }, + "3": { + "furnace": 1 + } + }, + "agent_count": 4, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_soul_lantern_3_with_plan_missing_iron_ingot_coal_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "iron_pickaxe": 1 + }, + "1": { + "soul_sand": 1 + }, + "2": { + "stone_pickaxe": 1 + }, + "3": { + "furnace": 1 + } + }, + "agent_count": 4, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_lodestone_0_with_plan_missing_stone_bricks_gold_ingot_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "netherite_scrap": 1 + }, + "3": { + "netherite_scrap": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "stone_bricks", + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_1_with_plan_missing_stone_bricks_gold_ingot_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "netherite_scrap": 1 + }, + "3": { + "netherite_scrap": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "stone_bricks", + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_2_with_plan_missing_stone_bricks_gold_ingot_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "netherite_scrap": 1 + }, + "3": { + "netherite_scrap": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "stone_bricks", + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_3_with_plan_missing_stone_bricks_gold_ingot_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "netherite_scrap": 1 + }, + "3": { + "netherite_scrap": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "stone_bricks", + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_0_with_plan_missing_gold_ingot_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "stone_bricks": 2, + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "stone_bricks": 2, + "netherite_scrap": 1 + }, + "3": { + "stone_bricks": 2, + "netherite_scrap": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_1_with_plan_missing_gold_ingot_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "stone_bricks": 2, + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "stone_bricks": 2, + "netherite_scrap": 1 + }, + "3": { + "stone_bricks": 2, + "netherite_scrap": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_2_with_plan_missing_gold_ingot_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "stone_bricks": 2, + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "stone_bricks": 2, + "netherite_scrap": 1 + }, + "3": { + "stone_bricks": 2, + "netherite_scrap": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_3_with_plan_missing_gold_ingot_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "stone_bricks": 2, + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "stone_bricks": 2, + "netherite_scrap": 1 + }, + "3": { + "stone_bricks": 2, + "netherite_scrap": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_0_with_plan_missing_stone_bricks_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "1": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "2": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "3": { + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "stone_bricks" + ] + }, + "multiagent_crafting_lodestone_1_with_plan_missing_stone_bricks_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "1": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "2": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "3": { + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "stone_bricks" + ] + }, + "multiagent_crafting_lodestone_2_with_plan_missing_stone_bricks_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "1": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "2": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "3": { + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "stone_bricks" + ] + }, + "multiagent_crafting_lodestone_3_with_plan_missing_stone_bricks_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "1": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "2": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "3": { + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "stone_bricks" + ] + }, + "multiagent_crafting_lodestone_0_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "1": { + "stone_bricks": 2, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "2": { + "stone_bricks": 2, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "3": { + "stone_bricks": 2, + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_1_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "1": { + "stone_bricks": 2, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "2": { + "stone_bricks": 2, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "3": { + "stone_bricks": 2, + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_2_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "1": { + "stone_bricks": 2, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "2": { + "stone_bricks": 2, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "3": { + "stone_bricks": 2, + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_3_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "1": { + "stone_bricks": 2, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "2": { + "stone_bricks": 2, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "3": { + "stone_bricks": 2, + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/train_tasks/tasks_4_agents_stats.txt b/tasks/crafting_tasks/train_tasks/tasks_4_agents_stats.txt new file mode 100644 index 0000000..e7973ce --- /dev/null +++ b/tasks/crafting_tasks/train_tasks/tasks_4_agents_stats.txt @@ -0,0 +1,16 @@ +{ + "num_tasks": 248, + "avg_depth": 2.0766129032258065, + "std_depth": 0.8020748166140171, + "num_tasks_based_depth": { + "0": 100, + "1": 100, + "2": 48 + }, + "num_missing_resources": { + "0": 155, + "1": 66, + "2": 25, + "3": 2 + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/train_tasks/tasks_5_agents.json b/tasks/crafting_tasks/train_tasks/tasks_5_agents.json new file mode 100644 index 0000000..26c0bed --- /dev/null +++ b/tasks/crafting_tasks/train_tasks/tasks_5_agents.json @@ -0,0 +1,10201 @@ +{ + "multiagent_crafting_leather_chestplate_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an leather_chestplate", + "conversation": "Let's work together to craft an leather_chestplate.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + }, + "4": { + "leather": 4 + } + }, + "agent_count": 5, + "target": "leather_chestplate", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "stick": 3 + }, + "1": { + "cobblestone": 3, + "string": 3 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blast_furnace_0_with_plan_missing_furnace_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "smooth_stone": 3 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "furnace" + ] + }, + "multiagent_crafting_cyan_terracotta_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_terracotta", + "conversation": "Let's work together to craft an cyan_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 1, + "blue_dye": 1 + }, + "1": { + "terracotta": 4, + "green_dye": 1 + }, + "2": { + "terracotta": 1 + }, + "3": { + "terracotta": 1 + }, + "4": { + "terracotta": 1 + } + }, + "agent_count": 5, + "target": "cyan_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_stained_glass_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an magenta_stained_glass", + "conversation": "Let's work together to craft an magenta_stained_glass.", + "initial_inventory": { + "0": { + "glass": 4, + "magenta_dye": 1 + }, + "1": { + "glass": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 1 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "magenta_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_terracotta_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an purple_terracotta", + "conversation": "Let's work together to craft an purple_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 1, + "blue_dye": 1 + }, + "1": { + "terracotta": 1, + "red_dye": 1 + }, + "2": { + "terracotta": 1 + }, + "3": { + "terracotta": 4 + }, + "4": { + "terracotta": 1 + } + }, + "agent_count": 5, + "target": "purple_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mud_brick_wall_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an mud_brick_wall", + "conversation": "Let's work together to craft an mud_brick_wall.", + "initial_inventory": { + "0": { + "mud_bricks": 2 + }, + "1": { + "mud_bricks": 1 + }, + "2": { + "mud_bricks": 1 + }, + "3": { + "mud_bricks": 1 + }, + "4": { + "mud_bricks": 1 + } + }, + "agent_count": 5, + "target": "mud_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_green_banner_2_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an green_banner", + "conversation": "Let's work together to craft an green_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "oak_planks": 2 + }, + "1": { + "green_dye": 1, + "shears": 1 + }, + "2": { + "green_dye": 1 + }, + "3": { + "green_dye": 2 + }, + "4": { + "green_dye": 1 + } + }, + "agent_count": 5, + "target": "green_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_end_crystal_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an end_crystal", + "conversation": "Let's work together to craft an end_crystal.", + "initial_inventory": { + "0": { + "glass": 3, + "ender_eye": 1 + }, + "1": { + "glass": 1, + "ghast_tear": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 1 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "end_crystal", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_banner_2_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_dye": 1, + "oak_planks": 2 + }, + "1": { + "magenta_dye": 1, + "shears": 1 + }, + "2": { + "magenta_dye": 1 + }, + "3": { + "magenta_dye": 1 + }, + "4": { + "magenta_dye": 2 + } + }, + "agent_count": 5, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_mud_brick_wall_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an mud_brick_wall", + "conversation": "Let's work together to craft an mud_brick_wall.", + "initial_inventory": { + "0": { + "mud_bricks": 2 + }, + "1": { + "mud_bricks": 1 + }, + "2": { + "mud_bricks": 1 + }, + "3": { + "mud_bricks": 1 + }, + "4": { + "mud_bricks": 1 + } + }, + "agent_count": 5, + "target": "mud_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_banner_4_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_dye": 1, + "oak_planks": 2 + }, + "1": { + "magenta_dye": 1, + "shears": 1 + }, + "2": { + "magenta_dye": 1 + }, + "3": { + "magenta_dye": 1 + }, + "4": { + "magenta_dye": 2 + } + }, + "agent_count": 5, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_end_stone_brick_wall_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an end_stone_brick_wall", + "conversation": "Let's work together to craft an end_stone_brick_wall.", + "initial_inventory": { + "0": { + "end_stone_bricks": 1 + }, + "1": { + "end_stone_bricks": 1 + }, + "2": { + "end_stone_bricks": 1 + }, + "3": { + "end_stone_bricks": 2 + }, + "4": { + "end_stone_bricks": 1 + } + }, + "agent_count": 5, + "target": "end_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_brick_wall_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an deepslate_brick_wall", + "conversation": "Let's work together to craft an deepslate_brick_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 4 + }, + "1": { + "polished_deepslate": 1 + }, + "2": { + "polished_deepslate": 1 + }, + "3": { + "polished_deepslate": 1 + }, + "4": { + "polished_deepslate": 1 + } + }, + "agent_count": 5, + "target": "deepslate_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_map_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an map", + "conversation": "Let's work together to craft an map.", + "initial_inventory": { + "0": { + "paper": 1, + "compass": 1 + }, + "1": { + "paper": 1 + }, + "2": { + "paper": 4 + }, + "3": { + "paper": 1 + }, + "4": { + "paper": 1 + } + }, + "agent_count": 5, + "target": "map", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_banner_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "yellow_dye": 2, + "black_wool": 1 + }, + "2": { + "yellow_dye": 1, + "black_wool": 2 + }, + "3": { + "yellow_dye": 1, + "black_wool": 1 + }, + "4": { + "yellow_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_end_crystal_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an end_crystal", + "conversation": "Let's work together to craft an end_crystal.", + "initial_inventory": { + "0": { + "glass": 3, + "ender_eye": 1 + }, + "1": { + "glass": 1, + "ghast_tear": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 1 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "end_crystal", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_banner_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "light_gray_dye": 1, + "black_wool": 2 + }, + "2": { + "light_gray_dye": 1, + "black_wool": 1 + }, + "3": { + "light_gray_dye": 1, + "black_wool": 1 + }, + "4": { + "light_gray_dye": 2, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brick_wall_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an brick_wall", + "conversation": "Let's work together to craft an brick_wall.", + "initial_inventory": { + "0": { + "bricks": 1 + }, + "1": { + "bricks": 1 + }, + "2": { + "bricks": 1 + }, + "3": { + "bricks": 1 + }, + "4": { + "bricks": 2 + } + }, + "agent_count": 5, + "target": "brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_banner_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "yellow_dye": 2, + "black_wool": 1 + }, + "2": { + "yellow_dye": 1, + "black_wool": 2 + }, + "3": { + "yellow_dye": 1, + "black_wool": 1 + }, + "4": { + "yellow_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_netherite_block_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an netherite_block", + "conversation": "Let's work together to craft an netherite_block.", + "initial_inventory": { + "0": { + "netherite_ingot": 1 + }, + "1": { + "netherite_ingot": 5 + }, + "2": { + "netherite_ingot": 1 + }, + "3": { + "netherite_ingot": 1 + }, + "4": { + "netherite_ingot": 1 + } + }, + "agent_count": 5, + "target": "netherite_block", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_brick_wall_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an polished_blackstone_brick_wall", + "conversation": "Let's work together to craft an polished_blackstone_brick_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 4 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + }, + "3": { + "polished_blackstone": 1 + }, + "4": { + "polished_blackstone": 1 + } + }, + "agent_count": 5, + "target": "polished_blackstone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_nether_brick_wall_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an nether_brick_wall", + "conversation": "Let's work together to craft an nether_brick_wall.", + "initial_inventory": { + "0": { + "nether_bricks": 1 + }, + "1": { + "nether_bricks": 1 + }, + "2": { + "nether_bricks": 1 + }, + "3": { + "nether_bricks": 2 + }, + "4": { + "nether_bricks": 1 + } + }, + "agent_count": 5, + "target": "nether_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_banner_0_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_dye": 1, + "oak_planks": 2 + }, + "1": { + "light_gray_dye": 1, + "shears": 1 + }, + "2": { + "light_gray_dye": 1 + }, + "3": { + "light_gray_dye": 2 + }, + "4": { + "light_gray_dye": 1 + } + }, + "agent_count": 5, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_red_sandstone_wall_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_sandstone_wall", + "conversation": "Let's work together to craft an red_sandstone_wall.", + "initial_inventory": { + "0": { + "red_sandstone": 1 + }, + "1": { + "red_sandstone": 1 + }, + "2": { + "red_sandstone": 2 + }, + "3": { + "red_sandstone": 1 + }, + "4": { + "red_sandstone": 1 + } + }, + "agent_count": 5, + "target": "red_sandstone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "deepslate_bricks": 1 + }, + "1": { + "deepslate_bricks": 1 + }, + "2": { + "deepslate_bricks": 4 + }, + "3": { + "deepslate_bricks": 1 + }, + "4": { + "deepslate_bricks": 1 + } + }, + "agent_count": 5, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_granite_wall_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an granite_wall", + "conversation": "Let's work together to craft an granite_wall.", + "initial_inventory": { + "0": { + "granite": 1 + }, + "1": { + "granite": 2 + }, + "2": { + "granite": 1 + }, + "3": { + "granite": 1 + }, + "4": { + "granite": 1 + } + }, + "agent_count": 5, + "target": "granite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mossy_stone_brick_wall_4_with_plan_missing_stone_bricks_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an mossy_stone_brick_wall", + "conversation": "Let's work together to craft an mossy_stone_brick_wall.", + "initial_inventory": { + "0": { + "moss_block": 2 + }, + "1": { + "moss_block": 1 + }, + "2": { + "moss_block": 1 + }, + "3": { + "moss_block": 1 + }, + "4": { + "moss_block": 1 + } + }, + "agent_count": 5, + "target": "mossy_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "stone_bricks" + ] + }, + "multiagent_crafting_nether_brick_wall_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an nether_brick_wall", + "conversation": "Let's work together to craft an nether_brick_wall.", + "initial_inventory": { + "0": { + "nether_bricks": 1 + }, + "1": { + "nether_bricks": 1 + }, + "2": { + "nether_bricks": 1 + }, + "3": { + "nether_bricks": 2 + }, + "4": { + "nether_bricks": 1 + } + }, + "agent_count": 5, + "target": "nether_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_banner_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "orange_dye": 1, + "black_wool": 1 + }, + "2": { + "orange_dye": 1, + "black_wool": 1 + }, + "3": { + "orange_dye": 2, + "black_wool": 2 + }, + "4": { + "orange_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_stone_brick_wall_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an stone_brick_wall", + "conversation": "Let's work together to craft an stone_brick_wall.", + "initial_inventory": { + "0": { + "stone_bricks": 1 + }, + "1": { + "stone_bricks": 2 + }, + "2": { + "stone_bricks": 1 + }, + "3": { + "stone_bricks": 1 + }, + "4": { + "stone_bricks": 1 + } + }, + "agent_count": 5, + "target": "stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_banner_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "magenta_dye": 1, + "black_wool": 1 + }, + "2": { + "magenta_dye": 1, + "black_wool": 1 + }, + "3": { + "magenta_dye": 1, + "black_wool": 1 + }, + "4": { + "magenta_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_chestplate_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an leather_chestplate", + "conversation": "Let's work together to craft an leather_chestplate.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + }, + "4": { + "leather": 4 + } + }, + "agent_count": 5, + "target": "leather_chestplate", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_banner_1_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_dye": 1, + "oak_planks": 2 + }, + "1": { + "magenta_dye": 1, + "shears": 1 + }, + "2": { + "magenta_dye": 1 + }, + "3": { + "magenta_dye": 1 + }, + "4": { + "magenta_dye": 2 + } + }, + "agent_count": 5, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_polished_blackstone_wall_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an polished_blackstone_wall", + "conversation": "Let's work together to craft an polished_blackstone_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 1 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + }, + "3": { + "polished_blackstone": 2 + }, + "4": { + "polished_blackstone": 1 + } + }, + "agent_count": 5, + "target": "polished_blackstone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_blue_banner_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_dye": 1, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "light_blue_dye": 2, + "black_wool": 1 + }, + "2": { + "light_blue_dye": 1, + "black_wool": 1 + }, + "3": { + "light_blue_dye": 1, + "black_wool": 1 + }, + "4": { + "light_blue_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_recovery_compass_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an recovery_compass", + "conversation": "Let's work together to craft an recovery_compass.", + "initial_inventory": { + "0": { + "echo_shard": 1, + "compass": 1 + }, + "1": { + "echo_shard": 1 + }, + "2": { + "echo_shard": 1 + }, + "3": { + "echo_shard": 1 + }, + "4": { + "echo_shard": 4 + } + }, + "agent_count": 5, + "target": "recovery_compass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_brick_wall_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an deepslate_brick_wall", + "conversation": "Let's work together to craft an deepslate_brick_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 4 + }, + "1": { + "polished_deepslate": 1 + }, + "2": { + "polished_deepslate": 1 + }, + "3": { + "polished_deepslate": 1 + }, + "4": { + "polished_deepslate": 1 + } + }, + "agent_count": 5, + "target": "deepslate_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_stone_brick_wall_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an stone_brick_wall", + "conversation": "Let's work together to craft an stone_brick_wall.", + "initial_inventory": { + "0": { + "stone_bricks": 1 + }, + "1": { + "stone_bricks": 2 + }, + "2": { + "stone_bricks": 1 + }, + "3": { + "stone_bricks": 1 + }, + "4": { + "stone_bricks": 1 + } + }, + "agent_count": 5, + "target": "stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_granite_wall_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an granite_wall", + "conversation": "Let's work together to craft an granite_wall.", + "initial_inventory": { + "0": { + "diorite": 1, + "quartz": 1 + }, + "1": { + "diorite": 2, + "quartz": 1 + }, + "2": { + "diorite": 1, + "quartz": 2 + }, + "3": { + "diorite": 1, + "quartz": 1 + }, + "4": { + "diorite": 1, + "quartz": 1 + } + }, + "agent_count": 5, + "target": "granite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_prismarine_wall_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an prismarine_wall", + "conversation": "Let's work together to craft an prismarine_wall.", + "initial_inventory": { + "0": { + "prismarine": 1 + }, + "1": { + "prismarine": 1 + }, + "2": { + "prismarine": 2 + }, + "3": { + "prismarine": 1 + }, + "4": { + "prismarine": 1 + } + }, + "agent_count": 5, + "target": "prismarine_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_banner_3_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_dye": 1, + "oak_planks": 2 + }, + "1": { + "light_gray_dye": 1, + "shears": 1 + }, + "2": { + "light_gray_dye": 1 + }, + "3": { + "light_gray_dye": 2 + }, + "4": { + "light_gray_dye": 1 + } + }, + "agent_count": 5, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_blast_furnace_3_with_plan_missing_furnace_smooth_stone_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "furnace", + "smooth_stone" + ] + }, + "multiagent_crafting_yellow_banner_3_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 1, + "oak_planks": 2 + }, + "1": { + "yellow_dye": 1, + "shears": 1 + }, + "2": { + "yellow_dye": 2 + }, + "3": { + "yellow_dye": 1 + }, + "4": { + "yellow_dye": 1 + } + }, + "agent_count": 5, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_red_nether_brick_wall_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_nether_brick_wall", + "conversation": "Let's work together to craft an red_nether_brick_wall.", + "initial_inventory": { + "0": { + "red_nether_bricks": 1 + }, + "1": { + "red_nether_bricks": 1 + }, + "2": { + "red_nether_bricks": 1 + }, + "3": { + "red_nether_bricks": 2 + }, + "4": { + "red_nether_bricks": 1 + } + }, + "agent_count": 5, + "target": "red_nether_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_brick_wall_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an polished_blackstone_brick_wall", + "conversation": "Let's work together to craft an polished_blackstone_brick_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 4 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + }, + "3": { + "polished_blackstone": 1 + }, + "4": { + "polished_blackstone": 1 + } + }, + "agent_count": 5, + "target": "polished_blackstone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lantern_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "iron_nugget": 4, + "torch": 1 + }, + "1": { + "iron_nugget": 1 + }, + "2": { + "iron_nugget": 1 + }, + "3": { + "iron_nugget": 1 + }, + "4": { + "iron_nugget": 1 + } + }, + "agent_count": 5, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mossy_stone_brick_wall_3_with_plan_missing_stone_bricks_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an mossy_stone_brick_wall", + "conversation": "Let's work together to craft an mossy_stone_brick_wall.", + "initial_inventory": { + "0": { + "moss_block": 2 + }, + "1": { + "moss_block": 1 + }, + "2": { + "moss_block": 1 + }, + "3": { + "moss_block": 1 + }, + "4": { + "moss_block": 1 + } + }, + "agent_count": 5, + "target": "mossy_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "stone_bricks" + ] + }, + "multiagent_crafting_blast_furnace_1_with_plan_missing_furnace_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "smooth_stone": 3 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "furnace" + ] + }, + "multiagent_crafting_polished_blackstone_brick_wall_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an polished_blackstone_brick_wall", + "conversation": "Let's work together to craft an polished_blackstone_brick_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 4 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + }, + "3": { + "polished_blackstone": 1 + }, + "4": { + "polished_blackstone": 1 + } + }, + "agent_count": 5, + "target": "polished_blackstone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_end_stone_brick_wall_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an end_stone_brick_wall", + "conversation": "Let's work together to craft an end_stone_brick_wall.", + "initial_inventory": { + "0": { + "end_stone_bricks": 1 + }, + "1": { + "end_stone_bricks": 1 + }, + "2": { + "end_stone_bricks": 1 + }, + "3": { + "end_stone_bricks": 2 + }, + "4": { + "end_stone_bricks": 1 + } + }, + "agent_count": 5, + "target": "end_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_banner_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "yellow_dye": 2, + "black_wool": 1 + }, + "2": { + "yellow_dye": 1, + "black_wool": 2 + }, + "3": { + "yellow_dye": 1, + "black_wool": 1 + }, + "4": { + "yellow_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_nether_brick_wall_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_nether_brick_wall", + "conversation": "Let's work together to craft an red_nether_brick_wall.", + "initial_inventory": { + "0": { + "red_nether_bricks": 1 + }, + "1": { + "red_nether_bricks": 1 + }, + "2": { + "red_nether_bricks": 1 + }, + "3": { + "red_nether_bricks": 2 + }, + "4": { + "red_nether_bricks": 1 + } + }, + "agent_count": 5, + "target": "red_nether_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_terracotta_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_terracotta", + "conversation": "Let's work together to craft an cyan_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 1, + "blue_dye": 1 + }, + "1": { + "terracotta": 4, + "green_dye": 1 + }, + "2": { + "terracotta": 1 + }, + "3": { + "terracotta": 1 + }, + "4": { + "terracotta": 1 + } + }, + "agent_count": 5, + "target": "cyan_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_recovery_compass_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an recovery_compass", + "conversation": "Let's work together to craft an recovery_compass.", + "initial_inventory": { + "0": { + "echo_shard": 1, + "compass": 1 + }, + "1": { + "echo_shard": 1 + }, + "2": { + "echo_shard": 1 + }, + "3": { + "echo_shard": 1 + }, + "4": { + "echo_shard": 4 + } + }, + "agent_count": 5, + "target": "recovery_compass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mossy_stone_brick_wall_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an mossy_stone_brick_wall", + "conversation": "Let's work together to craft an mossy_stone_brick_wall.", + "initial_inventory": { + "0": { + "stone_bricks": 1, + "moss_block": 1 + }, + "1": { + "stone_bricks": 1, + "moss_block": 2 + }, + "2": { + "stone_bricks": 1, + "moss_block": 1 + }, + "3": { + "stone_bricks": 2, + "moss_block": 1 + }, + "4": { + "stone_bricks": 1, + "moss_block": 1 + } + }, + "agent_count": 5, + "target": "mossy_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bamboo_raft_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an bamboo_raft", + "conversation": "Let's work together to craft an bamboo_raft.", + "initial_inventory": { + "0": { + "bamboo_planks": 1 + }, + "1": { + "bamboo_planks": 1 + }, + "2": { + "bamboo_planks": 1 + }, + "3": { + "bamboo_planks": 1 + }, + "4": { + "bamboo_planks": 1 + } + }, + "agent_count": 5, + "target": "bamboo_raft", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_banner_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "magenta_dye": 1, + "black_wool": 1 + }, + "2": { + "magenta_dye": 1, + "black_wool": 1 + }, + "3": { + "magenta_dye": 1, + "black_wool": 1 + }, + "4": { + "magenta_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mossy_cobblestone_wall_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an mossy_cobblestone_wall", + "conversation": "Let's work together to craft an mossy_cobblestone_wall.", + "initial_inventory": { + "0": { + "mossy_cobblestone": 1 + }, + "1": { + "mossy_cobblestone": 1 + }, + "2": { + "mossy_cobblestone": 2 + }, + "3": { + "mossy_cobblestone": 1 + }, + "4": { + "mossy_cobblestone": 1 + } + }, + "agent_count": 5, + "target": "mossy_cobblestone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mossy_stone_brick_wall_2_with_plan_missing_stone_bricks_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an mossy_stone_brick_wall", + "conversation": "Let's work together to craft an mossy_stone_brick_wall.", + "initial_inventory": { + "0": { + "moss_block": 2 + }, + "1": { + "moss_block": 1 + }, + "2": { + "moss_block": 1 + }, + "3": { + "moss_block": 1 + }, + "4": { + "moss_block": 1 + } + }, + "agent_count": 5, + "target": "mossy_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "stone_bricks" + ] + }, + "multiagent_crafting_leather_helmet_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an leather_helmet", + "conversation": "Let's work together to craft an leather_helmet.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + }, + "4": { + "leather": 1 + } + }, + "agent_count": 5, + "target": "leather_helmet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_banner_0_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 1, + "oak_planks": 2 + }, + "1": { + "yellow_dye": 1, + "shears": 1 + }, + "2": { + "yellow_dye": 2 + }, + "3": { + "yellow_dye": 1 + }, + "4": { + "yellow_dye": 1 + } + }, + "agent_count": 5, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_nether_brick_wall_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an nether_brick_wall", + "conversation": "Let's work together to craft an nether_brick_wall.", + "initial_inventory": { + "0": { + "nether_bricks": 1 + }, + "1": { + "nether_bricks": 1 + }, + "2": { + "nether_bricks": 1 + }, + "3": { + "nether_bricks": 2 + }, + "4": { + "nether_bricks": 1 + } + }, + "agent_count": 5, + "target": "nether_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_rail_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an rail", + "conversation": "Let's work together to craft an rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_wool": 1, + "stick": 1 + }, + "1": { + "purple_wool": 1 + }, + "2": { + "purple_wool": 1 + }, + "3": { + "purple_wool": 1 + }, + "4": { + "purple_wool": 2 + } + }, + "agent_count": 5, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_banner_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "light_gray_dye": 1, + "black_wool": 2 + }, + "2": { + "light_gray_dye": 1, + "black_wool": 1 + }, + "3": { + "light_gray_dye": 1, + "black_wool": 1 + }, + "4": { + "light_gray_dye": 2, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blast_furnace_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "furnace": 1 + }, + "1": { + "iron_ingot": 1, + "smooth_stone": 3 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_terracotta_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an purple_terracotta", + "conversation": "Let's work together to craft an purple_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 1, + "blue_dye": 1 + }, + "1": { + "terracotta": 1, + "red_dye": 1 + }, + "2": { + "terracotta": 1 + }, + "3": { + "terracotta": 4 + }, + "4": { + "terracotta": 1 + } + }, + "agent_count": 5, + "target": "purple_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_sandstone_wall_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_sandstone_wall", + "conversation": "Let's work together to craft an red_sandstone_wall.", + "initial_inventory": { + "0": { + "red_sandstone": 1 + }, + "1": { + "red_sandstone": 1 + }, + "2": { + "red_sandstone": 2 + }, + "3": { + "red_sandstone": 1 + }, + "4": { + "red_sandstone": 1 + } + }, + "agent_count": 5, + "target": "red_sandstone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_granite_wall_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an granite_wall", + "conversation": "Let's work together to craft an granite_wall.", + "initial_inventory": { + "0": { + "diorite": 1, + "quartz": 1 + }, + "1": { + "diorite": 2, + "quartz": 1 + }, + "2": { + "diorite": 1, + "quartz": 2 + }, + "3": { + "diorite": 1, + "quartz": 1 + }, + "4": { + "diorite": 1, + "quartz": 1 + } + }, + "agent_count": 5, + "target": "granite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_diorite_wall_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an diorite_wall", + "conversation": "Let's work together to craft an diorite_wall.", + "initial_inventory": { + "0": { + "diorite": 2 + }, + "1": { + "diorite": 1 + }, + "2": { + "diorite": 1 + }, + "3": { + "diorite": 1 + }, + "4": { + "diorite": 1 + } + }, + "agent_count": 5, + "target": "diorite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mossy_stone_brick_wall_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an mossy_stone_brick_wall", + "conversation": "Let's work together to craft an mossy_stone_brick_wall.", + "initial_inventory": { + "0": { + "stone_bricks": 1, + "moss_block": 1 + }, + "1": { + "stone_bricks": 1, + "moss_block": 2 + }, + "2": { + "stone_bricks": 1, + "moss_block": 1 + }, + "3": { + "stone_bricks": 2, + "moss_block": 1 + }, + "4": { + "stone_bricks": 1, + "moss_block": 1 + } + }, + "agent_count": 5, + "target": "mossy_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lantern_4_with_plan_missing_torch_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "iron_nugget": 1 + }, + "1": { + "iron_nugget": 1 + }, + "2": { + "iron_nugget": 4 + }, + "3": { + "iron_nugget": 1 + }, + "4": { + "iron_nugget": 1 + } + }, + "agent_count": 5, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "torch" + ] + }, + "multiagent_crafting_orange_banner_3_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_dye": 1, + "oak_planks": 2 + }, + "1": { + "orange_dye": 1, + "shears": 1 + }, + "2": { + "orange_dye": 1 + }, + "3": { + "orange_dye": 1 + }, + "4": { + "orange_dye": 2 + } + }, + "agent_count": 5, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_mossy_cobblestone_wall_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an mossy_cobblestone_wall", + "conversation": "Let's work together to craft an mossy_cobblestone_wall.", + "initial_inventory": { + "0": { + "mossy_cobblestone": 1 + }, + "1": { + "mossy_cobblestone": 1 + }, + "2": { + "mossy_cobblestone": 2 + }, + "3": { + "mossy_cobblestone": 1 + }, + "4": { + "mossy_cobblestone": 1 + } + }, + "agent_count": 5, + "target": "mossy_cobblestone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mossy_stone_brick_wall_1_with_plan_missing_stone_bricks_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an mossy_stone_brick_wall", + "conversation": "Let's work together to craft an mossy_stone_brick_wall.", + "initial_inventory": { + "0": { + "moss_block": 2 + }, + "1": { + "moss_block": 1 + }, + "2": { + "moss_block": 1 + }, + "3": { + "moss_block": 1 + }, + "4": { + "moss_block": 1 + } + }, + "agent_count": 5, + "target": "mossy_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "stone_bricks" + ] + }, + "multiagent_crafting_nether_brick_wall_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an nether_brick_wall", + "conversation": "Let's work together to craft an nether_brick_wall.", + "initial_inventory": { + "0": { + "nether_bricks": 1 + }, + "1": { + "nether_bricks": 1 + }, + "2": { + "nether_bricks": 1 + }, + "3": { + "nether_bricks": 2 + }, + "4": { + "nether_bricks": 1 + } + }, + "agent_count": 5, + "target": "nether_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_banner_2_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_dye": 1, + "oak_planks": 2 + }, + "1": { + "orange_dye": 1, + "shears": 1 + }, + "2": { + "orange_dye": 1 + }, + "3": { + "orange_dye": 1 + }, + "4": { + "orange_dye": 2 + } + }, + "agent_count": 5, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_sandstone_wall_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an sandstone_wall", + "conversation": "Let's work together to craft an sandstone_wall.", + "initial_inventory": { + "0": { + "sandstone": 1 + }, + "1": { + "sandstone": 1 + }, + "2": { + "sandstone": 1 + }, + "3": { + "sandstone": 1 + }, + "4": { + "sandstone": 2 + } + }, + "agent_count": 5, + "target": "sandstone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_terracotta_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_terracotta", + "conversation": "Let's work together to craft an cyan_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 1, + "blue_dye": 1 + }, + "1": { + "terracotta": 4, + "green_dye": 1 + }, + "2": { + "terracotta": 1 + }, + "3": { + "terracotta": 1 + }, + "4": { + "terracotta": 1 + } + }, + "agent_count": 5, + "target": "cyan_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_golden_carrot_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an golden_carrot", + "conversation": "Let's work together to craft an golden_carrot.", + "initial_inventory": { + "0": { + "gold_nugget": 4, + "carrot": 1 + }, + "1": { + "gold_nugget": 1 + }, + "2": { + "gold_nugget": 1 + }, + "3": { + "gold_nugget": 1 + }, + "4": { + "gold_nugget": 1 + } + }, + "agent_count": 5, + "target": "golden_carrot", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_0_with_plan_missing_redstone_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "stick": 3 + }, + "1": { + "cobblestone": 3, + "string": 3 + }, + "2": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_light_gray_banner_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_wool": 1, + "stick": 1 + }, + "1": { + "light_gray_wool": 1 + }, + "2": { + "light_gray_wool": 1 + }, + "3": { + "light_gray_wool": 1 + }, + "4": { + "light_gray_wool": 2 + } + }, + "agent_count": 5, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_banner_2_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_dye": 1, + "oak_planks": 2 + }, + "1": { + "light_gray_dye": 1, + "shears": 1 + }, + "2": { + "light_gray_dye": 1 + }, + "3": { + "light_gray_dye": 2 + }, + "4": { + "light_gray_dye": 1 + } + }, + "agent_count": 5, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_bamboo_raft_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an bamboo_raft", + "conversation": "Let's work together to craft an bamboo_raft.", + "initial_inventory": { + "0": { + "bamboo_planks": 1 + }, + "1": { + "bamboo_planks": 1 + }, + "2": { + "bamboo_planks": 1 + }, + "3": { + "bamboo_planks": 1 + }, + "4": { + "bamboo_planks": 1 + } + }, + "agent_count": 5, + "target": "bamboo_raft", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_blue_banner_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_dye": 1, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "light_blue_dye": 2, + "black_wool": 1 + }, + "2": { + "light_blue_dye": 1, + "black_wool": 1 + }, + "3": { + "light_blue_dye": 1, + "black_wool": 1 + }, + "4": { + "light_blue_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_brick_wall_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an deepslate_brick_wall", + "conversation": "Let's work together to craft an deepslate_brick_wall.", + "initial_inventory": { + "0": { + "deepslate_bricks": 1 + }, + "1": { + "deepslate_bricks": 1 + }, + "2": { + "deepslate_bricks": 1 + }, + "3": { + "deepslate_bricks": 2 + }, + "4": { + "deepslate_bricks": 1 + } + }, + "agent_count": 5, + "target": "deepslate_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_stained_glass_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an purple_stained_glass", + "conversation": "Let's work together to craft an purple_stained_glass.", + "initial_inventory": { + "0": { + "glass": 4, + "blue_dye": 1 + }, + "1": { + "glass": 1, + "red_dye": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 1 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "purple_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_deepslate_wall_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an polished_deepslate_wall", + "conversation": "Let's work together to craft an polished_deepslate_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 2 + }, + "1": { + "polished_deepslate": 1 + }, + "2": { + "polished_deepslate": 1 + }, + "3": { + "polished_deepslate": 1 + }, + "4": { + "polished_deepslate": 1 + } + }, + "agent_count": 5, + "target": "polished_deepslate_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_banner_1_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_dye": 1, + "oak_planks": 2 + }, + "1": { + "light_gray_dye": 1, + "shears": 1 + }, + "2": { + "light_gray_dye": 1 + }, + "3": { + "light_gray_dye": 2 + }, + "4": { + "light_gray_dye": 1 + } + }, + "agent_count": 5, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_recovery_compass_4_with_plan_missing_compass_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an recovery_compass", + "conversation": "Let's work together to craft an recovery_compass.", + "initial_inventory": { + "0": { + "echo_shard": 1 + }, + "1": { + "echo_shard": 1 + }, + "2": { + "echo_shard": 4 + }, + "3": { + "echo_shard": 1 + }, + "4": { + "echo_shard": 1 + } + }, + "agent_count": 5, + "target": "recovery_compass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "compass" + ] + }, + "multiagent_crafting_magenta_banner_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "magenta_dye": 1, + "black_wool": 1 + }, + "2": { + "magenta_dye": 1, + "black_wool": 1 + }, + "3": { + "magenta_dye": 1, + "black_wool": 1 + }, + "4": { + "magenta_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_detector_rail_3_with_plan_missing_stone_pressure_plate_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "redstone": 1 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "stone_pressure_plate" + ] + }, + "multiagent_crafting_orange_banner_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "orange_dye": 1, + "black_wool": 1 + }, + "2": { + "orange_dye": 1, + "black_wool": 1 + }, + "3": { + "orange_dye": 2, + "black_wool": 2 + }, + "4": { + "orange_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_respawn_anchor_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an respawn_anchor", + "conversation": "Let's work together to craft an respawn_anchor.", + "initial_inventory": { + "0": { + "crying_obsidian": 1, + "glowstone": 3 + }, + "1": { + "crying_obsidian": 1 + }, + "2": { + "crying_obsidian": 1 + }, + "3": { + "crying_obsidian": 2 + }, + "4": { + "crying_obsidian": 1 + } + }, + "agent_count": 5, + "target": "respawn_anchor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_terracotta_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an purple_terracotta", + "conversation": "Let's work together to craft an purple_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 1, + "blue_dye": 1 + }, + "1": { + "terracotta": 1, + "red_dye": 1 + }, + "2": { + "terracotta": 1 + }, + "3": { + "terracotta": 4 + }, + "4": { + "terracotta": 1 + } + }, + "agent_count": 5, + "target": "purple_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_blue_banner_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_wool": 1, + "stick": 1 + }, + "1": { + "light_blue_wool": 2 + }, + "2": { + "light_blue_wool": 1 + }, + "3": { + "light_blue_wool": 1 + }, + "4": { + "light_blue_wool": 1 + } + }, + "agent_count": 5, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_blue_banner_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_dye": 1, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "light_blue_dye": 2, + "black_wool": 1 + }, + "2": { + "light_blue_dye": 1, + "black_wool": 1 + }, + "3": { + "light_blue_dye": 1, + "black_wool": 1 + }, + "4": { + "light_blue_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lantern_3_with_plan_missing_torch_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "iron_nugget": 1 + }, + "1": { + "iron_nugget": 1 + }, + "2": { + "iron_nugget": 4 + }, + "3": { + "iron_nugget": 1 + }, + "4": { + "iron_nugget": 1 + } + }, + "agent_count": 5, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "torch" + ] + }, + "multiagent_crafting_rail_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an rail", + "conversation": "Let's work together to craft an rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_helmet_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an leather_helmet", + "conversation": "Let's work together to craft an leather_helmet.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + }, + "4": { + "leather": 1 + } + }, + "agent_count": 5, + "target": "leather_helmet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_3_with_plan_missing_redstone_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "stick": 3 + }, + "1": { + "cobblestone": 3, + "string": 3 + }, + "2": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "stick": 2 + }, + "1": { + "iron_ingot": 1, + "redstone_torch": 1 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_banner_0_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_dye": 1, + "oak_planks": 2 + }, + "1": { + "magenta_dye": 1, + "shears": 1 + }, + "2": { + "magenta_dye": 1 + }, + "3": { + "magenta_dye": 1 + }, + "4": { + "magenta_dye": 2 + } + }, + "agent_count": 5, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_magenta_stained_glass_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an magenta_stained_glass", + "conversation": "Let's work together to craft an magenta_stained_glass.", + "initial_inventory": { + "0": { + "glass": 4, + "magenta_dye": 1 + }, + "1": { + "glass": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 1 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "magenta_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_terracotta_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_terracotta", + "conversation": "Let's work together to craft an cyan_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 1, + "blue_dye": 1 + }, + "1": { + "terracotta": 4, + "green_dye": 1 + }, + "2": { + "terracotta": 1 + }, + "3": { + "terracotta": 1 + }, + "4": { + "terracotta": 1 + } + }, + "agent_count": 5, + "target": "cyan_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bone_block_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an bone_block", + "conversation": "Let's work together to craft an bone_block.", + "initial_inventory": { + "0": { + "bone_meal": 1 + }, + "1": { + "bone_meal": 1 + }, + "2": { + "bone_meal": 1 + }, + "3": { + "bone_meal": 1 + }, + "4": { + "bone_meal": 5 + } + }, + "agent_count": 5, + "target": "bone_block", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_terracotta_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an purple_terracotta", + "conversation": "Let's work together to craft an purple_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 1, + "blue_dye": 1 + }, + "1": { + "terracotta": 1, + "red_dye": 1 + }, + "2": { + "terracotta": 1 + }, + "3": { + "terracotta": 4 + }, + "4": { + "terracotta": 1 + } + }, + "agent_count": 5, + "target": "purple_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_map_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an map", + "conversation": "Let's work together to craft an map.", + "initial_inventory": { + "0": { + "paper": 1, + "compass": 1 + }, + "1": { + "paper": 1 + }, + "2": { + "paper": 4 + }, + "3": { + "paper": 1 + }, + "4": { + "paper": 1 + } + }, + "agent_count": 5, + "target": "map", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_banner_4_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_dye": 1, + "oak_planks": 2 + }, + "1": { + "light_gray_dye": 1, + "shears": 1 + }, + "2": { + "light_gray_dye": 1 + }, + "3": { + "light_gray_dye": 2 + }, + "4": { + "light_gray_dye": 1 + } + }, + "agent_count": 5, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_bamboo_raft_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an bamboo_raft", + "conversation": "Let's work together to craft an bamboo_raft.", + "initial_inventory": { + "0": { + "bamboo_planks": 1 + }, + "1": { + "bamboo_planks": 1 + }, + "2": { + "bamboo_planks": 1 + }, + "3": { + "bamboo_planks": 1 + }, + "4": { + "bamboo_planks": 1 + } + }, + "agent_count": 5, + "target": "bamboo_raft", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_4_with_plan_missing_redstone_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "stick": 3 + }, + "1": { + "cobblestone": 3, + "string": 3 + }, + "2": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_magenta_terracotta_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an magenta_terracotta", + "conversation": "Let's work together to craft an magenta_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 1, + "magenta_dye": 1 + }, + "1": { + "terracotta": 1 + }, + "2": { + "terracotta": 1 + }, + "3": { + "terracotta": 1 + }, + "4": { + "terracotta": 4 + } + }, + "agent_count": 5, + "target": "magenta_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_banner_4_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 1, + "oak_planks": 2 + }, + "1": { + "yellow_dye": 1, + "shears": 1 + }, + "2": { + "yellow_dye": 2 + }, + "3": { + "yellow_dye": 1 + }, + "4": { + "yellow_dye": 1 + } + }, + "agent_count": 5, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_sandstone_wall_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an sandstone_wall", + "conversation": "Let's work together to craft an sandstone_wall.", + "initial_inventory": { + "0": { + "sandstone": 1 + }, + "1": { + "sandstone": 1 + }, + "2": { + "sandstone": 1 + }, + "3": { + "sandstone": 1 + }, + "4": { + "sandstone": 2 + } + }, + "agent_count": 5, + "target": "sandstone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_rail_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an rail", + "conversation": "Let's work together to craft an rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_andesite_wall_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an andesite_wall", + "conversation": "Let's work together to craft an andesite_wall.", + "initial_inventory": { + "0": { + "andesite": 1 + }, + "1": { + "andesite": 1 + }, + "2": { + "andesite": 1 + }, + "3": { + "andesite": 1 + }, + "4": { + "andesite": 2 + } + }, + "agent_count": 5, + "target": "andesite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_blue_banner_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_dye": 1, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "light_blue_dye": 2, + "black_wool": 1 + }, + "2": { + "light_blue_dye": 1, + "black_wool": 1 + }, + "3": { + "light_blue_dye": 1, + "black_wool": 1 + }, + "4": { + "light_blue_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blast_furnace_2_with_plan_missing_furnace_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "smooth_stone": 3 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "furnace" + ] + }, + "multiagent_crafting_cyan_terracotta_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_terracotta", + "conversation": "Let's work together to craft an cyan_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 1, + "blue_dye": 1 + }, + "1": { + "terracotta": 4, + "green_dye": 1 + }, + "2": { + "terracotta": 1 + }, + "3": { + "terracotta": 1 + }, + "4": { + "terracotta": 1 + } + }, + "agent_count": 5, + "target": "cyan_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_end_crystal_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an end_crystal", + "conversation": "Let's work together to craft an end_crystal.", + "initial_inventory": { + "0": { + "glass": 3, + "ender_eye": 1 + }, + "1": { + "glass": 1, + "ghast_tear": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 1 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "end_crystal", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "stick": 3 + }, + "1": { + "cobblestone": 3, + "string": 3 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_green_banner_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an green_banner", + "conversation": "Let's work together to craft an green_banner.", + "initial_inventory": { + "0": { + "green_wool": 1, + "stick": 1 + }, + "1": { + "green_wool": 1 + }, + "2": { + "green_wool": 1 + }, + "3": { + "green_wool": 1 + }, + "4": { + "green_wool": 2 + } + }, + "agent_count": 5, + "target": "green_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_granite_wall_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an granite_wall", + "conversation": "Let's work together to craft an granite_wall.", + "initial_inventory": { + "0": { + "diorite": 1, + "quartz": 1 + }, + "1": { + "diorite": 2, + "quartz": 1 + }, + "2": { + "diorite": 1, + "quartz": 2 + }, + "3": { + "diorite": 1, + "quartz": 1 + }, + "4": { + "diorite": 1, + "quartz": 1 + } + }, + "agent_count": 5, + "target": "granite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blast_furnace_0_with_plan_missing_smooth_stone_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "furnace": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "smooth_stone" + ] + }, + "multiagent_crafting_magenta_banner_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "magenta_dye": 1, + "black_wool": 1 + }, + "2": { + "magenta_dye": 1, + "black_wool": 1 + }, + "3": { + "magenta_dye": 1, + "black_wool": 1 + }, + "4": { + "magenta_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_banner_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_wool": 1, + "stick": 1 + }, + "1": { + "orange_wool": 1 + }, + "2": { + "orange_wool": 2 + }, + "3": { + "orange_wool": 1 + }, + "4": { + "orange_wool": 1 + } + }, + "agent_count": 5, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_blue_banner_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_dye": 1, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "light_blue_dye": 2, + "black_wool": 1 + }, + "2": { + "light_blue_dye": 1, + "black_wool": 1 + }, + "3": { + "light_blue_dye": 1, + "black_wool": 1 + }, + "4": { + "light_blue_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_stained_glass_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an purple_stained_glass", + "conversation": "Let's work together to craft an purple_stained_glass.", + "initial_inventory": { + "0": { + "glass": 1, + "purple_dye": 1 + }, + "1": { + "glass": 1 + }, + "2": { + "glass": 4 + }, + "3": { + "glass": 1 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "purple_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_rail_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an rail", + "conversation": "Let's work together to craft an rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "stick": 2 + }, + "1": { + "iron_ingot": 1, + "redstone_torch": 1 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_banner_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "orange_dye": 1, + "black_wool": 1 + }, + "2": { + "orange_dye": 1, + "black_wool": 1 + }, + "3": { + "orange_dye": 2, + "black_wool": 2 + }, + "4": { + "orange_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_detector_rail_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "stone_pressure_plate": 1 + }, + "1": { + "iron_ingot": 1, + "redstone": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_banner_3_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_dye": 1, + "oak_planks": 2 + }, + "1": { + "magenta_dye": 1, + "shears": 1 + }, + "2": { + "magenta_dye": 1 + }, + "3": { + "magenta_dye": 1 + }, + "4": { + "magenta_dye": 2 + } + }, + "agent_count": 5, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_recovery_compass_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an recovery_compass", + "conversation": "Let's work together to craft an recovery_compass.", + "initial_inventory": { + "0": { + "echo_shard": 1, + "compass": 1 + }, + "1": { + "echo_shard": 1 + }, + "2": { + "echo_shard": 1 + }, + "3": { + "echo_shard": 1 + }, + "4": { + "echo_shard": 4 + } + }, + "agent_count": 5, + "target": "recovery_compass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_blue_banner_4_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_dye": 1, + "oak_planks": 2 + }, + "1": { + "light_blue_dye": 1, + "shears": 1 + }, + "2": { + "light_blue_dye": 1 + }, + "3": { + "light_blue_dye": 2 + }, + "4": { + "light_blue_dye": 1 + } + }, + "agent_count": 5, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_golden_carrot_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an golden_carrot", + "conversation": "Let's work together to craft an golden_carrot.", + "initial_inventory": { + "0": { + "gold_nugget": 4, + "carrot": 1 + }, + "1": { + "gold_nugget": 1 + }, + "2": { + "gold_nugget": 1 + }, + "3": { + "gold_nugget": 1 + }, + "4": { + "gold_nugget": 1 + } + }, + "agent_count": 5, + "target": "golden_carrot", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_brick_wall_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an polished_blackstone_brick_wall", + "conversation": "Let's work together to craft an polished_blackstone_brick_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 4 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + }, + "3": { + "polished_blackstone": 1 + }, + "4": { + "polished_blackstone": 1 + } + }, + "agent_count": 5, + "target": "polished_blackstone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mossy_cobblestone_wall_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an mossy_cobblestone_wall", + "conversation": "Let's work together to craft an mossy_cobblestone_wall.", + "initial_inventory": { + "0": { + "mossy_cobblestone": 1 + }, + "1": { + "mossy_cobblestone": 1 + }, + "2": { + "mossy_cobblestone": 2 + }, + "3": { + "mossy_cobblestone": 1 + }, + "4": { + "mossy_cobblestone": 1 + } + }, + "agent_count": 5, + "target": "mossy_cobblestone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_2_with_plan_missing_redstone_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "stick": 1 + }, + "2": { + "iron_ingot": 2, + "diamond_pickaxe": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_stone_brick_wall_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an stone_brick_wall", + "conversation": "Let's work together to craft an stone_brick_wall.", + "initial_inventory": { + "0": { + "stone_bricks": 1 + }, + "1": { + "stone_bricks": 2 + }, + "2": { + "stone_bricks": 1 + }, + "3": { + "stone_bricks": 1 + }, + "4": { + "stone_bricks": 1 + } + }, + "agent_count": 5, + "target": "stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_banner_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "orange_dye": 1, + "black_wool": 1 + }, + "2": { + "orange_dye": 1, + "black_wool": 1 + }, + "3": { + "orange_dye": 2, + "black_wool": 2 + }, + "4": { + "orange_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_1_with_plan_missing_redstone_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "bow": 1 + }, + "1": { + "cobblestone": 3, + "diamond_pickaxe": 1 + }, + "2": { + "cobblestone": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_light_blue_banner_3_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_dye": 1, + "oak_planks": 2 + }, + "1": { + "light_blue_dye": 1, + "shears": 1 + }, + "2": { + "light_blue_dye": 1 + }, + "3": { + "light_blue_dye": 2 + }, + "4": { + "light_blue_dye": 1 + } + }, + "agent_count": 5, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_red_nether_brick_wall_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_nether_brick_wall", + "conversation": "Let's work together to craft an red_nether_brick_wall.", + "initial_inventory": { + "0": { + "red_nether_bricks": 1 + }, + "1": { + "red_nether_bricks": 1 + }, + "2": { + "red_nether_bricks": 1 + }, + "3": { + "red_nether_bricks": 2 + }, + "4": { + "red_nether_bricks": 1 + } + }, + "agent_count": 5, + "target": "red_nether_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_banner_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "magenta_dye": 1, + "black_wool": 1 + }, + "2": { + "magenta_dye": 1, + "black_wool": 1 + }, + "3": { + "magenta_dye": 1, + "black_wool": 1 + }, + "4": { + "magenta_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_detector_rail_1_with_plan_missing_redstone_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "stone_pressure_plate": 1 + }, + "1": { + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 2 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_yellow_banner_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "yellow_dye": 2, + "black_wool": 1 + }, + "2": { + "yellow_dye": 1, + "black_wool": 2 + }, + "3": { + "yellow_dye": 1, + "black_wool": 1 + }, + "4": { + "yellow_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_banner_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_wool": 1, + "stick": 1 + }, + "1": { + "magenta_wool": 1 + }, + "2": { + "magenta_wool": 1 + }, + "3": { + "magenta_wool": 2 + }, + "4": { + "magenta_wool": 1 + } + }, + "agent_count": 5, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_banner_1_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 1, + "oak_planks": 2 + }, + "1": { + "yellow_dye": 1, + "shears": 1 + }, + "2": { + "yellow_dye": 2 + }, + "3": { + "yellow_dye": 1 + }, + "4": { + "yellow_dye": 1 + } + }, + "agent_count": 5, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_detector_rail_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "stone_pressure_plate": 1 + }, + "1": { + "iron_ingot": 1, + "redstone": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_1_with_plan_missing_redstone_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "stick": 3 + }, + "1": { + "cobblestone": 3, + "string": 3 + }, + "2": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_blast_furnace_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "furnace": 1 + }, + "1": { + "iron_ingot": 1, + "smooth_stone": 3 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "redstone": 1 + }, + "2": { + "iron_ingot": 2, + "stick": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_netherite_block_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an netherite_block", + "conversation": "Let's work together to craft an netherite_block.", + "initial_inventory": { + "0": { + "netherite_ingot": 1 + }, + "1": { + "netherite_ingot": 5 + }, + "2": { + "netherite_ingot": 1 + }, + "3": { + "netherite_ingot": 1 + }, + "4": { + "netherite_ingot": 1 + } + }, + "agent_count": 5, + "target": "netherite_block", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_banner_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "yellow_dye": 2, + "black_wool": 1 + }, + "2": { + "yellow_dye": 1, + "black_wool": 2 + }, + "3": { + "yellow_dye": 1, + "black_wool": 1 + }, + "4": { + "yellow_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_0_with_plan_missing_redstone_torch_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "stick": 2 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone_torch" + ] + }, + "multiagent_crafting_activator_rail_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "redstone": 1 + }, + "2": { + "iron_ingot": 2, + "stick": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mud_brick_wall_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an mud_brick_wall", + "conversation": "Let's work together to craft an mud_brick_wall.", + "initial_inventory": { + "0": { + "mud_bricks": 2 + }, + "1": { + "mud_bricks": 1 + }, + "2": { + "mud_bricks": 1 + }, + "3": { + "mud_bricks": 1 + }, + "4": { + "mud_bricks": 1 + } + }, + "agent_count": 5, + "target": "mud_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_banner_2_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 1, + "oak_planks": 2 + }, + "1": { + "yellow_dye": 1, + "shears": 1 + }, + "2": { + "yellow_dye": 2 + }, + "3": { + "yellow_dye": 1 + }, + "4": { + "yellow_dye": 1 + } + }, + "agent_count": 5, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_end_stone_brick_wall_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an end_stone_brick_wall", + "conversation": "Let's work together to craft an end_stone_brick_wall.", + "initial_inventory": { + "0": { + "end_stone_bricks": 1 + }, + "1": { + "end_stone_bricks": 1 + }, + "2": { + "end_stone_bricks": 1 + }, + "3": { + "end_stone_bricks": 2 + }, + "4": { + "end_stone_bricks": 1 + } + }, + "agent_count": 5, + "target": "end_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_brick_wall_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an deepslate_brick_wall", + "conversation": "Let's work together to craft an deepslate_brick_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 4 + }, + "1": { + "polished_deepslate": 1 + }, + "2": { + "polished_deepslate": 1 + }, + "3": { + "polished_deepslate": 1 + }, + "4": { + "polished_deepslate": 1 + } + }, + "agent_count": 5, + "target": "deepslate_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sandstone_wall_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an sandstone_wall", + "conversation": "Let's work together to craft an sandstone_wall.", + "initial_inventory": { + "0": { + "sandstone": 1 + }, + "1": { + "sandstone": 1 + }, + "2": { + "sandstone": 1 + }, + "3": { + "sandstone": 1 + }, + "4": { + "sandstone": 2 + } + }, + "agent_count": 5, + "target": "sandstone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_blue_banner_1_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_dye": 1, + "oak_planks": 2 + }, + "1": { + "light_blue_dye": 1, + "shears": 1 + }, + "2": { + "light_blue_dye": 1 + }, + "3": { + "light_blue_dye": 2 + }, + "4": { + "light_blue_dye": 1 + } + }, + "agent_count": 5, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_deepslate_tile_wall_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "deepslate_tiles": 1 + }, + "1": { + "deepslate_tiles": 1 + }, + "2": { + "deepslate_tiles": 1 + }, + "3": { + "deepslate_tiles": 1 + }, + "4": { + "deepslate_tiles": 2 + } + }, + "agent_count": 5, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_blue_banner_0_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_dye": 1, + "oak_planks": 2 + }, + "1": { + "light_blue_dye": 1, + "shears": 1 + }, + "2": { + "light_blue_dye": 1 + }, + "3": { + "light_blue_dye": 2 + }, + "4": { + "light_blue_dye": 1 + } + }, + "agent_count": 5, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_andesite_wall_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an andesite_wall", + "conversation": "Let's work together to craft an andesite_wall.", + "initial_inventory": { + "0": { + "andesite": 1 + }, + "1": { + "andesite": 1 + }, + "2": { + "andesite": 1 + }, + "3": { + "andesite": 1 + }, + "4": { + "andesite": 2 + } + }, + "agent_count": 5, + "target": "andesite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_blue_banner_2_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_dye": 1, + "oak_planks": 2 + }, + "1": { + "light_blue_dye": 1, + "shears": 1 + }, + "2": { + "light_blue_dye": 1 + }, + "3": { + "light_blue_dye": 2 + }, + "4": { + "light_blue_dye": 1 + } + }, + "agent_count": 5, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_activator_rail_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "stick": 2 + }, + "1": { + "iron_ingot": 1, + "redstone_torch": 1 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_banner_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "light_gray_dye": 1, + "black_wool": 2 + }, + "2": { + "light_gray_dye": 1, + "black_wool": 1 + }, + "3": { + "light_gray_dye": 1, + "black_wool": 1 + }, + "4": { + "light_gray_dye": 2, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_banner_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_wool": 1, + "stick": 1 + }, + "1": { + "light_gray_wool": 1 + }, + "2": { + "light_gray_wool": 1 + }, + "3": { + "light_gray_wool": 1 + }, + "4": { + "light_gray_wool": 2 + } + }, + "agent_count": 5, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "deepslate_bricks": 1 + }, + "1": { + "deepslate_bricks": 1 + }, + "2": { + "deepslate_bricks": 4 + }, + "3": { + "deepslate_bricks": 1 + }, + "4": { + "deepslate_bricks": 1 + } + }, + "agent_count": 5, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blast_furnace_2_with_plan_missing_furnace_smooth_stone_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "furnace", + "smooth_stone" + ] + }, + "multiagent_crafting_orange_banner_0_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_dye": 1, + "oak_planks": 2 + }, + "1": { + "orange_dye": 1, + "shears": 1 + }, + "2": { + "orange_dye": 1 + }, + "3": { + "orange_dye": 1 + }, + "4": { + "orange_dye": 2 + } + }, + "agent_count": 5, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_green_banner_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an green_banner", + "conversation": "Let's work together to craft an green_banner.", + "initial_inventory": { + "0": { + "green_wool": 1, + "stick": 1 + }, + "1": { + "green_wool": 1 + }, + "2": { + "green_wool": 1 + }, + "3": { + "green_wool": 1 + }, + "4": { + "green_wool": 2 + } + }, + "agent_count": 5, + "target": "green_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_green_banner_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an green_banner", + "conversation": "Let's work together to craft an green_banner.", + "initial_inventory": { + "0": { + "green_dye": 2, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "green_dye": 1, + "black_wool": 1 + }, + "2": { + "green_dye": 1, + "black_wool": 2 + }, + "3": { + "green_dye": 1, + "black_wool": 1 + }, + "4": { + "green_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "green_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blast_furnace_4_with_plan_missing_furnace_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "smooth_stone": 3 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "furnace" + ] + }, + "multiagent_crafting_green_banner_0_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an green_banner", + "conversation": "Let's work together to craft an green_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "oak_planks": 2 + }, + "1": { + "green_dye": 1, + "shears": 1 + }, + "2": { + "green_dye": 1 + }, + "3": { + "green_dye": 2 + }, + "4": { + "green_dye": 1 + } + }, + "agent_count": 5, + "target": "green_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_terracotta_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_terracotta", + "conversation": "Let's work together to craft an cyan_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 1, + "cyan_dye": 1 + }, + "1": { + "terracotta": 1 + }, + "2": { + "terracotta": 4 + }, + "3": { + "terracotta": 1 + }, + "4": { + "terracotta": 1 + } + }, + "agent_count": 5, + "target": "cyan_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "stick": 3 + }, + "1": { + "cobblestone": 3, + "string": 3 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_wool": 1, + "stick": 1 + }, + "1": { + "purple_wool": 1 + }, + "2": { + "purple_wool": 1 + }, + "3": { + "purple_wool": 1 + }, + "4": { + "purple_wool": 2 + } + }, + "agent_count": 5, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_banner_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "light_gray_dye": 1, + "black_wool": 2 + }, + "2": { + "light_gray_dye": 1, + "black_wool": 1 + }, + "3": { + "light_gray_dye": 1, + "black_wool": 1 + }, + "4": { + "light_gray_dye": 2, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_composter_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an composter", + "conversation": "Let's work together to craft an composter.", + "initial_inventory": { + "0": { + "oak_slab": 1 + }, + "1": { + "oak_slab": 1 + }, + "2": { + "oak_slab": 1 + }, + "3": { + "oak_slab": 1 + }, + "4": { + "oak_slab": 3 + } + }, + "agent_count": 5, + "target": "composter", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_dye": 2, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "purple_dye": 1, + "black_wool": 1 + }, + "2": { + "purple_dye": 1, + "black_wool": 1 + }, + "3": { + "purple_dye": 1, + "black_wool": 1 + }, + "4": { + "purple_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_chestplate_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an leather_chestplate", + "conversation": "Let's work together to craft an leather_chestplate.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + }, + "4": { + "leather": 4 + } + }, + "agent_count": 5, + "target": "leather_chestplate", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "redstone": 1 + }, + "2": { + "iron_ingot": 2, + "stick": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mud_brick_wall_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an mud_brick_wall", + "conversation": "Let's work together to craft an mud_brick_wall.", + "initial_inventory": { + "0": { + "mud_bricks": 2 + }, + "1": { + "mud_bricks": 1 + }, + "2": { + "mud_bricks": 1 + }, + "3": { + "mud_bricks": 1 + }, + "4": { + "mud_bricks": 1 + } + }, + "agent_count": 5, + "target": "mud_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_end_crystal_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an end_crystal", + "conversation": "Let's work together to craft an end_crystal.", + "initial_inventory": { + "0": { + "glass": 1, + "ender_pearl": 1 + }, + "1": { + "glass": 1, + "blaze_powder": 1 + }, + "2": { + "glass": 1, + "ghast_tear": 1 + }, + "3": { + "glass": 3 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "end_crystal", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_detector_rail_0_with_plan_missing_stone_pressure_plate_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "redstone": 1 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "stone_pressure_plate" + ] + }, + "multiagent_crafting_purple_banner_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_dye": 2, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "purple_dye": 1, + "black_wool": 1 + }, + "2": { + "purple_dye": 1, + "black_wool": 1 + }, + "3": { + "purple_dye": 1, + "black_wool": 1 + }, + "4": { + "purple_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lantern_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "iron_nugget": 4, + "torch": 1 + }, + "1": { + "iron_nugget": 1 + }, + "2": { + "iron_nugget": 1 + }, + "3": { + "iron_nugget": 1 + }, + "4": { + "iron_nugget": 1 + } + }, + "agent_count": 5, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_stained_glass_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an purple_stained_glass", + "conversation": "Let's work together to craft an purple_stained_glass.", + "initial_inventory": { + "0": { + "glass": 4, + "blue_dye": 1 + }, + "1": { + "glass": 1, + "red_dye": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 1 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "purple_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_banner_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_wool": 1, + "stick": 1 + }, + "1": { + "light_gray_wool": 1 + }, + "2": { + "light_gray_wool": 1 + }, + "3": { + "light_gray_wool": 1 + }, + "4": { + "light_gray_wool": 2 + } + }, + "agent_count": 5, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_dye": 2, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "purple_dye": 1, + "black_wool": 1 + }, + "2": { + "purple_dye": 1, + "black_wool": 1 + }, + "3": { + "purple_dye": 1, + "black_wool": 1 + }, + "4": { + "purple_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blast_furnace_4_with_plan_missing_furnace_smooth_stone_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "furnace", + "smooth_stone" + ] + }, + "multiagent_crafting_polished_blackstone_brick_wall_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an polished_blackstone_brick_wall", + "conversation": "Let's work together to craft an polished_blackstone_brick_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 4 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + }, + "3": { + "polished_blackstone": 1 + }, + "4": { + "polished_blackstone": 1 + } + }, + "agent_count": 5, + "target": "polished_blackstone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_brick_wall_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an polished_blackstone_brick_wall", + "conversation": "Let's work together to craft an polished_blackstone_brick_wall.", + "initial_inventory": { + "0": { + "polished_blackstone_bricks": 1 + }, + "1": { + "polished_blackstone_bricks": 1 + }, + "2": { + "polished_blackstone_bricks": 1 + }, + "3": { + "polished_blackstone_bricks": 1 + }, + "4": { + "polished_blackstone_bricks": 2 + } + }, + "agent_count": 5, + "target": "polished_blackstone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_2_with_plan_missing_redstone_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "stick": 3 + }, + "1": { + "cobblestone": 3, + "string": 3 + }, + "2": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_brick_wall_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an brick_wall", + "conversation": "Let's work together to craft an brick_wall.", + "initial_inventory": { + "0": { + "bricks": 1 + }, + "1": { + "bricks": 1 + }, + "2": { + "bricks": 1 + }, + "3": { + "bricks": 1 + }, + "4": { + "bricks": 2 + } + }, + "agent_count": 5, + "target": "brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_0_with_plan_missing_gold_ingot_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_brick_slab": 3, + "netherite_scrap": 4 + }, + "1": { + "stone_brick_slab": 3, + "iron_pickaxe": 1 + }, + "2": { + "stone_brick_slab": 4, + "furnace": 1 + }, + "3": { + "stone_brick_slab": 3 + }, + "4": { + "stone_brick_slab": 3 + } + }, + "agent_count": 5, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_deepslate_tile_wall_0_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 1 + }, + "1": { + "polished_deepslate": 1 + }, + "2": { + "polished_deepslate": 1 + }, + "3": { + "polished_deepslate": 4 + }, + "4": { + "polished_deepslate": 1 + } + }, + "agent_count": 5, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_1_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 1 + }, + "1": { + "polished_deepslate": 1 + }, + "2": { + "polished_deepslate": 1 + }, + "3": { + "polished_deepslate": 4 + }, + "4": { + "polished_deepslate": 1 + } + }, + "agent_count": 5, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_2_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 1 + }, + "1": { + "polished_deepslate": 1 + }, + "2": { + "polished_deepslate": 1 + }, + "3": { + "polished_deepslate": 4 + }, + "4": { + "polished_deepslate": 1 + } + }, + "agent_count": 5, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_3_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 1 + }, + "1": { + "polished_deepslate": 1 + }, + "2": { + "polished_deepslate": 1 + }, + "3": { + "polished_deepslate": 4 + }, + "4": { + "polished_deepslate": 1 + } + }, + "agent_count": 5, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_4_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 1 + }, + "1": { + "polished_deepslate": 1 + }, + "2": { + "polished_deepslate": 1 + }, + "3": { + "polished_deepslate": 4 + }, + "4": { + "polished_deepslate": 1 + } + }, + "agent_count": 5, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_0_with_plan_missing_redstone_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 3, + "oak_planks": 2 + }, + "1": { + "cobblestone": 1, + "string": 3 + }, + "2": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_dispenser_1_with_plan_missing_redstone_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 3, + "oak_planks": 2 + }, + "1": { + "cobblestone": 1, + "string": 3 + }, + "2": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_dispenser_2_with_plan_missing_redstone_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 3, + "oak_planks": 2 + }, + "1": { + "cobblestone": 1, + "string": 3 + }, + "2": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_dispenser_3_with_plan_missing_redstone_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 3, + "oak_planks": 2 + }, + "1": { + "cobblestone": 1, + "string": 3 + }, + "2": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_dispenser_4_with_plan_missing_redstone_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 3, + "oak_planks": 2 + }, + "1": { + "cobblestone": 1, + "string": 3 + }, + "2": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_dispenser_0_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 3, + "string": 3 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_1_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 3, + "string": 3 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_2_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 3, + "string": 3 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_3_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 3, + "string": 3 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_4_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 3, + "string": 3 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_0_with_plan_missing_redstone_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_1_with_plan_missing_redstone_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_2_with_plan_missing_redstone_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_3_with_plan_missing_redstone_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_4_with_plan_missing_redstone_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_0_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "redstone": 1 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 2 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_1_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "redstone": 1 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 2 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_2_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "redstone": 1 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 2 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_3_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "redstone": 1 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 2 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_4_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "redstone": 1 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 2 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_0_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 3, + "black_wool": 1 + }, + "1": { + "red_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_1_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 3, + "black_wool": 1 + }, + "1": { + "red_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_2_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 3, + "black_wool": 1 + }, + "1": { + "red_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_3_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 3, + "black_wool": 1 + }, + "1": { + "red_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_4_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 3, + "black_wool": 1 + }, + "1": { + "red_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_0_with_plan_missing_gold_ingot_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 1, + "netherite_scrap": 4 + }, + "1": { + "stone_bricks": 5, + "iron_pickaxe": 1 + }, + "2": { + "stone_bricks": 1, + "furnace": 1 + }, + "3": { + "stone_bricks": 1 + }, + "4": { + "stone_bricks": 1 + } + }, + "agent_count": 5, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_1_with_plan_missing_gold_ingot_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 1, + "netherite_scrap": 4 + }, + "1": { + "stone_bricks": 5, + "iron_pickaxe": 1 + }, + "2": { + "stone_bricks": 1, + "furnace": 1 + }, + "3": { + "stone_bricks": 1 + }, + "4": { + "stone_bricks": 1 + } + }, + "agent_count": 5, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_2_with_plan_missing_gold_ingot_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 1, + "netherite_scrap": 4 + }, + "1": { + "stone_bricks": 5, + "iron_pickaxe": 1 + }, + "2": { + "stone_bricks": 1, + "furnace": 1 + }, + "3": { + "stone_bricks": 1 + }, + "4": { + "stone_bricks": 1 + } + }, + "agent_count": 5, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_3_with_plan_missing_gold_ingot_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 1, + "netherite_scrap": 4 + }, + "1": { + "stone_bricks": 5, + "iron_pickaxe": 1 + }, + "2": { + "stone_bricks": 1, + "furnace": 1 + }, + "3": { + "stone_bricks": 1 + }, + "4": { + "stone_bricks": 1 + } + }, + "agent_count": 5, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_4_with_plan_missing_gold_ingot_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 1, + "netherite_scrap": 4 + }, + "1": { + "stone_bricks": 5, + "iron_pickaxe": 1 + }, + "2": { + "stone_bricks": 1, + "furnace": 1 + }, + "3": { + "stone_bricks": 1 + }, + "4": { + "stone_bricks": 1 + } + }, + "agent_count": 5, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_0_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 5, + "netherite_scrap": 4 + }, + "1": { + "stone_bricks": 1, + "gold_ingot": 4 + }, + "2": { + "stone_bricks": 1 + }, + "3": { + "stone_bricks": 1 + }, + "4": { + "stone_bricks": 1 + } + }, + "agent_count": 5, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_1_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 5, + "netherite_scrap": 4 + }, + "1": { + "stone_bricks": 1, + "gold_ingot": 4 + }, + "2": { + "stone_bricks": 1 + }, + "3": { + "stone_bricks": 1 + }, + "4": { + "stone_bricks": 1 + } + }, + "agent_count": 5, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_2_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 5, + "netherite_scrap": 4 + }, + "1": { + "stone_bricks": 1, + "gold_ingot": 4 + }, + "2": { + "stone_bricks": 1 + }, + "3": { + "stone_bricks": 1 + }, + "4": { + "stone_bricks": 1 + } + }, + "agent_count": 5, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_3_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 5, + "netherite_scrap": 4 + }, + "1": { + "stone_bricks": 1, + "gold_ingot": 4 + }, + "2": { + "stone_bricks": 1 + }, + "3": { + "stone_bricks": 1 + }, + "4": { + "stone_bricks": 1 + } + }, + "agent_count": 5, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_4_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 5, + "netherite_scrap": 4 + }, + "1": { + "stone_bricks": 1, + "gold_ingot": 4 + }, + "2": { + "stone_bricks": 1 + }, + "3": { + "stone_bricks": 1 + }, + "4": { + "stone_bricks": 1 + } + }, + "agent_count": 5, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/train_tasks/tasks_5_agents_stats.txt b/tasks/crafting_tasks/train_tasks/tasks_5_agents_stats.txt new file mode 100644 index 0000000..97efadc --- /dev/null +++ b/tasks/crafting_tasks/train_tasks/tasks_5_agents_stats.txt @@ -0,0 +1,15 @@ +{ + "num_tasks": 240, + "avg_depth": 2.0166666666666666, + "std_depth": 0.7525881269917101, + "num_tasks_based_depth": { + "0": 100, + "1": 100, + "2": 40 + }, + "num_missing_resources": { + "0": 173, + "1": 64, + "2": 3 + } +} \ No newline at end of file