From 69172c0e913513eb6dba5ea939a9c63d614013e7 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Wed, 2 Apr 2025 14:46:22 -0700 Subject: [PATCH 1/8] evaluation script that doesn't use tmux --- evaluation_script.py | 223 +++++++++++++++++++++++++++---------------- 1 file changed, 142 insertions(+), 81 deletions(-) diff --git a/evaluation_script.py b/evaluation_script.py index 11ade9b..c461a12 100644 --- a/evaluation_script.py +++ b/evaluation_script.py @@ -53,16 +53,19 @@ def analyze_json_file(file_path): 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): - code = turn["content"].split(":")[-1].strip() - if code in ["2", "1"]: # Check for success codes - return True - elif 0 < float(code) < 1: # Check for other success indicators - return code - else: - return False + if "turns" in data: + for turn in data["turns"]: + if turn.get("role") == "system" and "content" in turn: + if isinstance(turn["content"], str) and "Task ended with score : " in turn["content"]: + score_found = True + if "Task ended with score : 1" in turn["content"]: + return 1 + elif "Task ended with score : 0" in turn["content"]: + return 0 + else: + score = float(turn["content"].split(":")[-1].strip()) + return score + return False except FileNotFoundError: print(f"Error: File not found: {file_path}") @@ -82,12 +85,12 @@ def extract_result(folder_path): if not json_files: return None else: - outcome = False + score = None for json_file in json_files: - outcome = analyze_json_file(json_file) - if outcome: - return True - return False + score = analyze_json_file(json_file) + if score is not None: + return score + return 0 def aggregate_results(local_folders): """ @@ -110,7 +113,7 @@ def aggregate_results(local_folders): result = extract_result(folder_path) if result is not None: total += 1 - successful += float(result) + successful += result except Exception as e: print(f"Error processing {folder_name}: {e}") @@ -161,28 +164,6 @@ def update_keys_json(): with open("keys.json", 'w', encoding='utf-8') as file: json.dump(data, file, indent=4) -def check_task_completion(agents): - """Check memory.json files of all agents to determine task success/failure.""" - for agent in agents: - memory_path = f"bots/{agent}/memory.json" - try: - with open(memory_path, 'r') as f: - memory = json.load(f) - - # Check the last system message in turns - for turn in reversed(memory['turns']): - if turn['role'] == 'system' and 'code' in turn['content']: - # Extract completion code - if 'code : 2' in turn['content']: - return True # Task successful - elif 'code : 4' in turn['content']: - return False # Task failed - - except (FileNotFoundError, json.JSONDecodeError) as e: - print(f"Error reading memory for agent {agent}: {e}") - continue - return False # Default to failure if no conclusive result found - def set_environment_variable_tmux_session(session_name, key, value): """Set an environment variable for the current process.""" subprocess.run(["tmux", "send-keys", "-t", session_name, f"export {key}={value}", "C-m"]) @@ -202,7 +183,8 @@ def launch_parallel_experiments(task_path, max_messages=15, num_examples=2, no_pruning=False, - block_conversation=False): + block_conversation=False, + run_in_tmux=True): with open(task_path, 'r', encoding='utf-8') as file: content = file.read() @@ -211,8 +193,6 @@ def launch_parallel_experiments(task_path, task_ids = json_data.keys() task_type = json_data[list(task_ids)[0]]["type"] - - # split the task_ids into num_parallel groups task_ids = list(task_ids) task_ids_split = [task_ids[i::num_parallel] for i in range(num_parallel)] @@ -224,7 +204,10 @@ def launch_parallel_experiments(task_path, elif task_type == "construction": world_name = "Superflat" - servers = create_server_files("./server_data/", num_parallel, world_name=world_name) + if run_in_tmux: + servers = create_server_files("./server_data/", num_parallel, world_name=world_name) + else: + servers = [(f"./server_data_{i}/", 55916 + i) for i in range(num_parallel)] date_time = datetime.now().strftime("%m-%d_%H-%M") experiments_folder = f"experiments/{exp_name}_{date_time}" exp_name = f"{exp_name}_{date_time}" @@ -259,7 +242,8 @@ def launch_parallel_experiments(task_path, max_messages=max_messages, num_examples=num_examples, no_pruning=no_pruning, - block_conversation=block_conversation) + block_conversation=block_conversation, + run_in_tmux=run_in_tmux) time.sleep(5) total_num_tasks = len(task_ids) @@ -307,7 +291,8 @@ def launch_server_experiment(task_path, max_messages=15, num_examples=2, no_pruning=False, - block_conversation=False): + block_conversation=False, + run_in_tmux=True): """ Launch a Minecraft server and run experiments on it. @@ -360,39 +345,107 @@ def launch_server_experiment(task_path, agent_profiles_str += f'\"{agent}\", ' agent_profiles_str += f"\"{agent_profiles[-1]}\"]'" print(agent_profiles_str) - launch_world(server_path, session_name="server_" + session_name, agent_names=agent_names, port=server_port) - - subprocess.run(['tmux', 'new-session', '-d', '-s', session_name], check=True) - - + if run_in_tmux: + print("run in tmux is true") + launch_world(server_path, session_name="server_" + session_name, agent_names=agent_names, port=server_port) + 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) - set_environment_variable_tmux_session(session_name, "PROFILES", agent_profiles_str) - set_environment_variable_tmux_session(session_name, "MAX_MESSAGES", str(max_messages)) - set_environment_variable_tmux_session(session_name, "NUM_EXAMPLES", str(num_examples)) - set_environment_variable_tmux_session(session_name, "LOG_ALL", "true") - if insecure_coding: - set_environment_variable_tmux_session(session_name, "INSECURE_CODING", "true") - make_ops(agent_names, session_name) + if run_in_tmux: + set_environment_variable_tmux_session(session_name, "MINECRAFT_PORT", server_port) + set_environment_variable_tmux_session(session_name, "MINDSERVER_PORT", mindserver_port) + set_environment_variable_tmux_session(session_name, "PROFILES", agent_profiles_str) + set_environment_variable_tmux_session(session_name, "MAX_MESSAGES", str(max_messages)) + set_environment_variable_tmux_session(session_name, "NUM_EXAMPLES", str(num_examples)) + set_environment_variable_tmux_session(session_name, "LOG_ALL", "true") + if insecure_coding: + set_environment_variable_tmux_session(session_name, "INSECURE_CODING", "true") + make_ops(agent_names, session_name) + else: + agent_profiles_str = "[" + for agent in agent_profiles[:-1]: + agent_profiles_str += f"\"{agent}\", " + agent_profiles_str += f"\"{agent_profiles[-1]}\"]" + # print(agent_profiles_str) + os.environ["PROFILES"] = agent_profiles_str + os.environ["MAX_MESSAGES"] = str(max_messages) + os.environ["NUM_EXAMPLES"] = str(num_examples) + os.environ["LOG_ALL"] = "true" + + run_script(task_path, + task_ids, + num_exp, + experiments_folder, + agent_names, + server_path, + s3=s3, + s3_path=s3_path, + session_name=session_name, + run_in_tmux=run_in_tmux) # add the bots as op # op_script_content = "sleep 5\n\op @p" * 20 # op_script_file = f"./tmp/op_script_{session_name}.sh" # make_script_file_and_run(op_script_content, "server_" + session_name, op_script_file) - blocked_actions = [] - if not no_pruning: - if task_type == "cooking": - blocked_actions = BLOCKED_ACTIONS_COOKING - elif task_type == "techtree": - blocked_actions = BLOCKED_ACTIONS_CRAFTING - elif task_type == "construction": - blocked_actions = BLOCKED_ACTIONS_CONSTRUCTION - if block_conversation: - blocked_actions += ["!endConversation", "!startConversation"] - set_environment_variable_tmux_session(session_name, "BLOCKED_ACTIONS", blocked_actions) + # blocked_actions = [] + # if not no_pruning: + # if task_type == "cooking": + # blocked_actions = BLOCKED_ACTIONS_COOKING + # elif task_type == "techtree": + # blocked_actions = BLOCKED_ACTIONS_CRAFTING + # elif task_type == "construction": + # blocked_actions = BLOCKED_ACTIONS_CONSTRUCTION + # if block_conversation: + # blocked_actions += ["!endConversation", "!startConversation"] + # set_environment_variable_tmux_session(session_name, "BLOCKED_ACTIONS", blocked_actions) + + + # script_content = "" + # for task_id in task_ids: + # # Create a separate folder for each task_id + # task_folder = os.path.join(experiments_folder, str(task_id)) + # os.makedirs(task_folder, exist_ok=True) + # assert os.path.exists(task_folder), f"Directory {task_folder} was not created" + # print(f"Created directory: {task_folder}") + + # cmd = f"node main.js --task_path \'{task_path}\' --task_id {task_id}" + # cp_cmd = f"cp {agent_names[0]}.json {server_path}bots/{agent_names[0]}/profile.json" + # for _ in range(num_exp): + # script_content += f"{cmd}\n" + # script_content += "sleep 2\n" + # for agent in agent_names: + # agent_file_path = os.path.join(task_folder, f"{agent}_{_}.json") + # script_content += f"echo 'Saving to {agent_file_path}'\n" + # cp_cmd = f"cp bots/{agent}/memory.json {agent_file_path}" + # script_content += f"echo '{cp_cmd}'\n" + # script_content += f"{cp_cmd}\n" + # script_content += "sleep 1\n" + # if s3: + # s3_cmd = f"aws s3 cp {agent_file_path} s3://{s3_path}/{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" + # script_content += "sleep 1\n" + # script_content += f"sleep 10\n" + # if s3: + # for agent in agent_names: + # script_content += f"aws s3 cp bots/{agent} s3://{s3_path}/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, script_file, session_name=session_name, run_in_tmux=True) + +def run_script(task_path, + task_ids, + num_exp, + experiments_folder, + agent_names, + server_path, + s3=False, + s3_path="mindcraft-experiments", + session_name="0", + run_in_tmux=True,): script_content = "" for task_id in task_ids: # Create a separate folder for each task_id @@ -426,7 +479,8 @@ def launch_server_experiment(task_path, # 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) + make_script_file_and_run(script_content, script_file, session_name=session_name, run_in_tmux=run_in_tmux) + def make_ops(agent_names, session_name): """Make the agents operators in the Minecraft world.""" @@ -458,7 +512,10 @@ def check_agent_ops(agent_names, ops_file="ops.json"): return False return True -def make_script_file_and_run(script_content, session_name, file_name): +def make_script_file_and_run(script_content, + file_name, + session_name="0", + run_in_tmux=True): script_dir = os.path.dirname(file_name) os.makedirs(script_dir, exist_ok=True) assert os.path.exists(script_dir), f"Script directory {script_dir} was not created" @@ -472,9 +529,10 @@ def make_script_file_and_run(script_content, session_name, file_name): script_file_run = "bash " + file_name # Execute the shell script using subprocess - subprocess.run(["tmux", "send-keys", "-t", session_name, script_file_run, "C-m"]) - - # subprocess.run(["tmux", "send-keys", "-t", session_name, f"/op {agent_names[0]}", "C-m"]) + if run_in_tmux: + subprocess.run(["tmux", "send-keys", "-t", session_name, script_file_run, "C-m"]) + else: + subprocess.run(script_file_run.split()) def make_profiles(agent_names, models, apis, template_profile="profiles/collab_profile.json", url="http://127.0.0.1:8000/v1"): assert len(agent_names) == len(models) @@ -645,6 +703,7 @@ def main(): # edit_server_properties_file("../server_data/", 55917) parser = argparse.ArgumentParser(description='Run Minecraft AI agent experiments') + parser.add_argument('--no_launch_world', action='store_true', help='Do not launch the Minecraft world') parser.add_argument('--task_path', default="multiagent_crafting_tasks.json", help='Path to the task file') parser.add_argument('--num_agents', default=2, type=int, help='Number of agents to run') parser.add_argument('--num_exp', default=1, type=int, help='Number of experiments to run') @@ -666,14 +725,15 @@ def main(): args = parser.parse_args() print(args) - - try: - subprocess.run(['tmux', 'kill-server'], check=True) - except: - print("No tmux session to kill") + if not args.no_launch_world: + try: + subprocess.run(['tmux', 'kill-server'], check=True) + except: + print("No tmux session to kill") # delete all server files - clean_up_server_files(args.num_parallel) + if not args.no_launch_world: + clean_up_server_files(args.num_parallel) if args.add_keys: update_keys_json() @@ -692,7 +752,8 @@ def main(): max_messages=args.max_messages, num_examples=args.num_examples, no_pruning=args.no_pruning, - block_conversation=args.block_conversation) + block_conversation=args.block_conversation, + run_in_tmux=not args.no_launch_world) if __name__ == "__main__": main() \ No newline at end of file From c01cea4062d065f437fb628ec6aa676adaaedff5 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Wed, 2 Apr 2025 15:31:06 -0700 Subject: [PATCH 2/8] update prompted to log memSaving better --- src/models/prompter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/models/prompter.js b/src/models/prompter.js index b4c9ee2..23e0ec7 100644 --- a/src/models/prompter.js +++ b/src/models/prompter.js @@ -379,7 +379,7 @@ export class Prompter { let prompt = this.profile.saving_memory; prompt = await this.replaceStrings(prompt, null, null, to_summarize); let resp = await this.chat_model.sendRequest([], prompt); - await this._saveLog(prompt, null, resp, 'memSaving'); + await this._saveLog(prompt, to_summarize, resp, 'memSaving'); if (resp?.includes('')) { const [_, afterThink] = resp.split('') resp = afterThink From 3834406f6ab9183e2c2f7f45bf70dce68b346161 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Thu, 3 Apr 2025 22:44:19 -0700 Subject: [PATCH 3/8] custom task file for small church --- src/agent/task_types/construction_tasks.js | 187 +++-- tasks/construction_tasks/custom/tasks.json | 934 +++++++++++++++++++++ 2 files changed, 1066 insertions(+), 55 deletions(-) create mode 100644 tasks/construction_tasks/custom/tasks.json diff --git a/src/agent/task_types/construction_tasks.js b/src/agent/task_types/construction_tasks.js index efa242c..b6b2203 100644 --- a/src/agent/task_types/construction_tasks.js +++ b/src/agent/task_types/construction_tasks.js @@ -12,14 +12,12 @@ export class ConstructionTaskValidator { let valid = false; let score = 0; let result = this.blueprint.check(this.agent.bot); - if (result.mismatches.length === 0) { + if (result.mismatches.y_amount === 0) { valid = true; console.log('Task is complete'); } - let total_blocks = result.mismatches.length + result.matches.length; - score = (result.matches.length / total_blocks) * 100; - console.log(`Agent name is ${this.agent.name}`); - console.log(`Task is ${score}% complete \n\n`); + let total_blocks = result.mismatches.y_amount + result.matches.y_amount; + score = (result.matches.y_amount / total_blocks) * 100; return { "valid": valid, "score": score @@ -37,10 +35,10 @@ export class ConstructionTaskValidator { export function resetConstructionWorld(bot, blueprint) { console.log('Resetting world...'); const starting_position = blueprint.levels[0].coordinates; - const length = blueprint.levels[0].placement.length + 5; - const height = blueprint.levels.length + 5; - const width = blueprint.levels[0].placement[0].length + 5; - const command = `/fill ${starting_position[0]} ${starting_position[1]} ${starting_position[2]} ${starting_position[0] + width} ${starting_position[1] + height} ${starting_position[2] + length} air`; + const y_amount = blueprint.levels[0].placement.y_amount + 5; + const height = blueprint.levels.y_amount + 5; + const width = blueprint.levels[0].placement[0].y_amount + 5; + const command = `/fill ${starting_position[0]} ${starting_position[1]} ${starting_position[2]} ${starting_position[0] + width} ${starting_position[1] + height} ${starting_position[2] + y_amount} air`; bot.chat(command); console.log('World reset'); } @@ -50,7 +48,7 @@ export function checkLevelBlueprint(agent, levelNum) { const bot = agent.bot; try { const result = blueprint.checkLevel(bot, levelNum); - if (result.mismatches.length === 0) { + if (result.mismatches.y_amount === 0) { return `Level ${levelNum} is correct`; } else { let explanation = blueprint.explainLevelDifference(bot, levelNum); @@ -69,7 +67,7 @@ export function checkBlueprint(agent) { const blueprint = agent.task.blueprint; const bot = agent.bot; const result = blueprint.check(bot); - if (result.mismatches.length === 0) { + if (result.mismatches.y_amount === 0) { return "Blueprint is correct"; } else { let explanation = blueprint.explainBlueprintDifference(bot); @@ -97,11 +95,11 @@ export class Blueprint { var placement_string = "[\n"; for (let row of placement) { placement_string += "["; - for (let i = 0; i < row.length - 1; i++) { + for (let i = 0; i < row.y_amount - 1; i++) { let item = row[i]; placement_string += `${item}, `; } - let final_item = row[row.length - 1]; + let final_item = row[row.y_amount - 1]; placement_string += `${final_item}],\n`; } placement_string += "]"; @@ -118,7 +116,7 @@ export class Blueprint { explainBlueprintDifference(bot) { var explanation = ""; const levels = this.data.levels; - for (let i = 0; i < levels.length; i++) { + for (let i = 0; i < levels.y_amount; i++) { let level_explanation = this.explainLevelDifference(bot, i); explanation += level_explanation + "\n"; } @@ -129,7 +127,7 @@ export class Blueprint { const mismatches = results.mismatches; const levelData = this.data.levels[levelNum]; - if (mismatches.length === 0) { + if (mismatches.y_amount === 0) { return `Level ${levelData.level} is complete`; } var explanation = `Level ${levelData.level} `; @@ -153,7 +151,7 @@ export class Blueprint { const levels = this.data.levels; const mismatches = []; const matches = []; - for (let i = 0; i < levels.length; i++) { + for (let i = 0; i < levels.y_amount; i++) { const result = this.checkLevel(bot, i); mismatches.push(...result.mismatches); matches.push(...result.matches); @@ -173,9 +171,9 @@ export class Blueprint { const mismatches = []; const matches = []; - for (let zOffset = 0; zOffset < placement.length; zOffset++) { + for (let zOffset = 0; zOffset < placement.y_amount; zOffset++) { const row = placement[zOffset]; - for (let xOffset = 0; xOffset < row.length; xOffset++) { + for (let xOffset = 0; xOffset < row.y_amount; xOffset++) { const blockName = row[xOffset]; const x = startCoords[0] + xOffset; @@ -240,15 +238,15 @@ export class Blueprint { // Update bounds minX = Math.min(minX, baseX); - maxX = Math.max(maxX, baseX + placement[0].length - 1); + maxX = Math.max(maxX, baseX + placement[0].y_amount - 1); minY = Math.min(minY, baseY); maxY = Math.max(maxY, baseY); minZ = Math.min(minZ, baseZ); - maxZ = Math.max(maxZ, baseZ + placement.length - 1); + maxZ = Math.max(maxZ, baseZ + placement.y_amount - 1); // Loop through the 2D placement array - for (let z = 0; z < placement.length; z++) { - for (let x = 0; x < placement[z].length; x++) { + for (let z = 0; z < placement.y_amount; z++) { + for (let x = 0; x < placement[z].y_amount; x++) { const blockType = placement[z][x]; if (blockType) { const setblockCommand = `/setblock ${baseX + x} ${baseY} ${baseZ + z} ${blockType}`; @@ -289,15 +287,15 @@ export class Blueprint { // Update bounds minX = Math.min(minX, baseX) - 30; - maxX = Math.max(maxX, baseX + placement[0].length - 1) + 30; + maxX = Math.max(maxX, baseX + placement[0].y_amount - 1) + 30; minY = Math.min(minY, baseY); maxY = Math.max(maxY, baseY); minZ = Math.min(minZ, baseZ) - 30; - maxZ = Math.max(maxZ, baseZ + placement.length - 1) + 30; + maxZ = Math.max(maxZ, baseZ + placement.y_amount - 1) + 30; // Loop through the 2D placement array - for (let z = 0; z < placement.length; z++) { - for (let x = 0; x < placement[z].length; x++) { + for (let z = 0; z < placement.y_amount; z++) { + for (let x = 0; x < placement[z].y_amount; x++) { const blockType = placement[z][x]; if (blockType) { const setblockCommand = `/setblock ${baseX + x} ${baseY} ${baseZ + z} air`; @@ -350,8 +348,8 @@ export function proceduralGeneration(m = 20, complexity = 4, startCoord = [148,-60,-170]) { // Build 3D space - const matrix = Array.from({length: p}, () => - Array.from({length: m}, () => + const matrix = Array.from({y_amount: p}, () => + Array.from({y_amount: m}, () => Array(n).fill('air') ) ); @@ -359,7 +357,7 @@ export function proceduralGeneration(m = 20, // todo: extrapolate into another param? then have set materials be dynamic? let roomMaterials = ["stone", "terracotta", "quartz_block", "copper_block", "purpur_block"] - if (complexity < roomMaterials.length) { + if (complexity < roomMaterials.y_amount) { roomMaterials = roomMaterials.slice(0, complexity + 1); } @@ -510,9 +508,9 @@ export function proceduralGeneration(m = 20, // Takes in a room and randomly converts some faces to be windows function addWindowsAsSquares(matrix, x, y, z, newLength, newWidth, newDepth, material) { // Matrix dimensions - const matrixDepth = matrix.length; - const matrixLength = matrix[0].length; - const matrixWidth = matrix[0][0].length; + const matrixDepth = matrix.y_amount; + const matrixLength = matrix[0].y_amount; + const matrixWidth = matrix[0][0].y_amount; const windowX = Math.ceil(minRoomWidth / 2) const windowY = Math.ceil(minRoomLength / 2) const windowZ = Math.ceil(minRoomDepth / 2) @@ -593,9 +591,9 @@ export function proceduralGeneration(m = 20, function addWindowsAsPlane(matrix, x, y, z, newLength, newWidth, newDepth, material) { // Ensure the new dimensions are within bounds - const maxX = matrix[0].length; - const maxY = matrix[0][0].length; - const maxZ = matrix.length; + const maxX = matrix[0].y_amount; + const maxY = matrix[0][0].y_amount; + const maxZ = matrix.y_amount; // Each face has a 30% chance of becoming a window if (Math.random() < 0.8) { @@ -643,21 +641,21 @@ export function proceduralGeneration(m = 20, //still a little buggy - function addStairs(matrix, x, y, z, length, width, material) { + function addStairs(matrix, x, y, z, y_amount, width, material) { let currentZ = z; let currentX = x + 1; let currentY = y + 1; let direction = 0; let stepCount = 0; - const maxSteps = length * width; // Safety limit + const maxSteps = y_amount * width; // Safety limit - while (currentZ >= 0 && currentX < x + length - 1 && currentY < y + width - 1 && stepCount < maxSteps) { + while (currentZ >= 0 && currentX < x + y_amount - 1 && currentY < y + width - 1 && stepCount < maxSteps) { // Place stair block matrix[currentZ][currentX][currentY] = material || 'stone'; // Clear 3 blocks above for headroom for (let i = 1; i <= 3; i++) { - if (currentZ + i < matrix.length) { + if (currentZ + i < matrix.y_amount) { matrix[currentZ + i][currentX][currentY] = 'air'; } } @@ -665,8 +663,8 @@ export function proceduralGeneration(m = 20, // Move to next position based on direction if (direction === 0) { currentX++; - if (currentX >= x + length - 1) { - currentX = x + length - 2; + if (currentX >= x + y_amount - 1) { + currentX = x + y_amount - 2; direction = 1; } else { currentZ--; @@ -700,7 +698,7 @@ export function proceduralGeneration(m = 20, // Consider a random probability of adding a carpet if (Math.random() < probability) { // Choose a random color for the carpet - let randomColor = colors[Math.floor(Math.random() * colors.length)]; + let randomColor = colors[Math.floor(Math.random() * colors.y_amount)]; // Add carpet one z position above the floor with a random color matrix[z + 1][x][y] = `${randomColor}_carpet`; } @@ -773,7 +771,7 @@ export function proceduralGeneration(m = 20, for (let attempt = 0; attempt < 150; attempt++) { - const material = roomMaterials[Math.floor(Math.random() * roomMaterials.length)]; + const material = roomMaterials[Math.floor(Math.random() * roomMaterials.y_amount)]; // dimensions of room @@ -790,7 +788,7 @@ export function proceduralGeneration(m = 20, newZ = 0; // Ground floor if (validateAndBuildBorder(matrix, newX, newY, newZ, newLength, newWidth, newDepth, m, n, p, material)) { - lastRoom = {x: newX, y: newY, z: newZ, length: newLength, width: newWidth, depth: newDepth}; + lastRoom = {x: newX, y: newY, z: newZ, y_amount: newLength, width: newWidth, depth: newDepth}; roomPlaced = true; placedRooms++; @@ -820,14 +818,14 @@ export function proceduralGeneration(m = 20, embellishments(carpetStyle, windowStyle, matrix, newX, newY, newZ, newLength, newWidth, newDepth, material) - // addLadder(matrix, lastRoom.x + Math.floor(lastRoom.length / 2), + // addLadder(matrix, lastRoom.x + Math.floor(lastRoom.y_amount / 2), // lastRoom.y + Math.floor(lastRoom.width / 2), // newZ); // Adding the ladder addStairs(matrix, newX, newY, newZ, newLength, newWidth, material) - lastRoom = {x: newX, y: newY, z: newZ, length: newLength, width: newWidth, depth: newDepth}; + lastRoom = {x: newX, y: newY, z: newZ, y_amount: newLength, width: newWidth, depth: newDepth}; roomPlaced = true; placedRooms++; break; @@ -847,7 +845,7 @@ export function proceduralGeneration(m = 20, addDoor(matrix, lastRoom.x, lastRoom.y + Math.floor(lastRoom.width / 2), lastRoom.z, material); - lastRoom = {x: newX, y: newY, z: newZ, length: newLength, width: newWidth, depth: newDepth}; + lastRoom = {x: newX, y: newY, z: newZ, y_amount: newLength, width: newWidth, depth: newDepth}; roomPlaced = true; placedRooms++; break; @@ -855,7 +853,7 @@ export function proceduralGeneration(m = 20, break; case 'right': - newX = lastRoom.x + lastRoom.length - 1; + newX = lastRoom.x + lastRoom.y_amount - 1; newY = lastRoom.y; newZ = lastRoom.z; if (validateAndBuildBorder(matrix, newX, newY, newZ, newLength, newWidth, newDepth, m, n, p, material)) { @@ -863,12 +861,12 @@ export function proceduralGeneration(m = 20, embellishments(carpetStyle, windowStyle, matrix, newX, newY, newZ, newLength, newWidth, newDepth, material) - addDoor(matrix, lastRoom.x + lastRoom.length - 1, + addDoor(matrix, lastRoom.x + lastRoom.y_amount - 1, lastRoom.y + Math.floor(lastRoom.width / 2), lastRoom.z, material); - lastRoom = {x: newX, y: newY, z: newZ, length: newLength, width: newWidth, depth: newDepth}; + lastRoom = {x: newX, y: newY, z: newZ, y_amount: newLength, width: newWidth, depth: newDepth}; roomPlaced = true; placedRooms++; break; @@ -884,12 +882,12 @@ export function proceduralGeneration(m = 20, embellishments(carpetStyle, windowStyle, matrix, newX, newY, newZ, newLength, newWidth, newDepth, material) - addDoor(matrix, lastRoom.x + Math.floor(lastRoom.length / 2), + addDoor(matrix, lastRoom.x + Math.floor(lastRoom.y_amount / 2), lastRoom.y + lastRoom.width - 1, lastRoom.z, material); - lastRoom = {x: newX, y: newY, z: newZ, length: newLength, width: newWidth, depth: newDepth}; + lastRoom = {x: newX, y: newY, z: newZ, y_amount: newLength, width: newWidth, depth: newDepth}; roomPlaced = true; placedRooms++; break; @@ -905,12 +903,12 @@ export function proceduralGeneration(m = 20, embellishments(carpetStyle, windowStyle, matrix, newX, newY, newZ, newLength, newWidth, newDepth, material) - addDoor(matrix, lastRoom.x + Math.floor(lastRoom.length / 2), + addDoor(matrix, lastRoom.x + Math.floor(lastRoom.y_amount / 2), lastRoom.y, lastRoom.z, material); - lastRoom = {x: newX, y: newY, z: newZ, length: newLength, width: newWidth, depth: newDepth}; + lastRoom = {x: newX, y: newY, z: newZ, y_amount: newLength, width: newWidth, depth: newDepth}; roomPlaced = true; placedRooms++; break; @@ -978,7 +976,7 @@ function printMatrix(matrix) { */ function matrixToBlueprint(matrix, startCoord) { // Validate inputs - if (!Array.isArray(matrix) || !Array.isArray(startCoord) || startCoord.length !== 3) { + if (!Array.isArray(matrix) || !Array.isArray(startCoord) || startCoord.y_amount !== 3) { console.log(matrix) throw new Error('Invalid input format'); } @@ -1003,6 +1001,85 @@ function matrixToBlueprint(matrix, startCoord) { }; } +async function getBlockName(bot, coordinate) { + const blockAtLocation = bot.blockAt(new Vec3(coordinate.x, coordinate.y, coordinate.z)); + const blockName = blockAtLocation ? bot.registry.blocks[blockAtLocation.type].name : "air"; + return blockName; +} + +/** + * Converts a world location to a blueprint. takes some time to ensure that the chunks are loaded before conversion. + * @param startCoord - [x,y,z] that signifies the start of the blueprint + * @param y_amount - how many spaces you want to register from the start coordinate in the y dimension + * @param x_amount - how many spaces in the x direction on minecraft + * @param z_amount - how many spaces from the start coordinate in the z direction in minecraft + * @param bot - the mineflayer agent (ex. andy) + * @returns - a Blueprint object of the converted blueprint + */ +export async function worldToBlueprint(startCoord, y_amount, x_amount, z_amount, bot) { + await bot.waitForChunksToLoad(); + + const materials = {}; + + const levels = []; + for (let y = 0; y < y_amount; y++) { + const placement = []; + const coordinates = [startCoord.x, startCoord.y + y, startCoord.z]; + for (let z = 0; z < z_amount; z++) { + const row = []; + for (let x = 0; x < x_amount; x++) { + const worldCoord = { + x: startCoord.x + x, + y: startCoord.y + y, + z: startCoord.z + z + }; + await bot.waitForChunksToLoad(worldCoord); + const blockName = await getBlockName(bot, worldCoord); + row.push(blockName); + if (blockName !== 'air') { + materials[blockName] = (materials[blockName] || 0) + 1; + } + } + placement.push(row); + } + levels.push({ + level: y, + coordinates: coordinates, + placement: placement + }) + } + console.log(levels); + const blueprint_data = { + materials: materials, + levels: levels + } + return blueprint_data +} + +export function blueprintToTask(blueprint_data, num_agents) { + let initialInventory = {} + for (let j = 0; j < num_agents; j++) { + initialInventory[JSON.stringify(j)] = {}; + } + + let give_agent = 0; + for (const key of Object.keys(blueprint_data.materials)) { + initialInventory[JSON.stringify(give_agent)][key] = blueprint_data.materials[key]; + give_agent = (give_agent + 1) % num_agents; + } + + const task = { + type: "construction", + goal: "Make a house with the blueprint below", + conversation: "Let's share materials and make a house with the blueprint", + agent_count: 2, + blueprint: blueprint_data, + initial_inventory: initialInventory, + }; + return task; +} + + // testing code diff --git a/tasks/construction_tasks/custom/tasks.json b/tasks/construction_tasks/custom/tasks.json new file mode 100644 index 0000000..b165f59 --- /dev/null +++ b/tasks/construction_tasks/custom/tasks.json @@ -0,0 +1,934 @@ +{ + "small_church": { + "type": "construction", + "goal": "Make a house with the blueprint below", + "conversation": "Let's share materials and make a house with the blueprint", + "agent_count": 2, + "blueprint": { + "materials": { + "oak_planks": 120, + "stone_bricks": 64, + "oak_door": 2, + "oak_stairs": 16, + "quartz_block": 1, + "glass_pane": 7, + "torch": 4 + }, + "levels": [ + { + "level": 0, + "coordinates": [ + -18, + 1, + 30 + ], + "placement": [ + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks" + ] + ] + }, + { + "level": 1, + "coordinates": [ + -18, + 2, + 30 + ], + "placement": [ + [ + "air", + "stone_bricks", + "stone_bricks", + "oak_door", + "stone_bricks", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs" + ], + [ + "stone_bricks", + "air", + "air", + "quartz_block", + "air", + "air" + ] + ] + }, + { + "level": 2, + "coordinates": [ + -18, + 3, + 30 + ], + "placement": [ + [ + "stone_bricks", + "glass_pane", + "stone_bricks", + "oak_door", + "stone_bricks", + "glass_pane" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 3, + "coordinates": [ + -18, + 4, + 30 + ], + "placement": [ + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks" + ], + [ + "stone_bricks", + "torch", + "air", + "air", + "air", + "torch" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "torch", + "air", + "air", + "air", + "torch" + ] + ] + }, + { + "level": 4, + "coordinates": [ + -18, + 5, + 30 + ], + "placement": [ + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 5, + "coordinates": [ + -18, + 6, + 30 + ], + "placement": [ + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 6, + "coordinates": [ + -18, + 7, + 30 + ], + "placement": [ + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks" + ] + ] + }, + { + "level": 7, + "coordinates": [ + -18, + 8, + 30 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 8, + "coordinates": [ + -18, + 9, + 30 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 9, + "coordinates": [ + -18, + 10, + 30 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + } + ] + }, + "initial_inventory": { + "0": { + "oak_planks": 120, + "oak_door": 2, + "quartz_block": 1, + "torch": 4 + }, + "1": { + "stone_bricks": 64, + "oak_stairs": 16, + "glass_pane": 7 + } + } + } +} \ No newline at end of file From 3b80afe813a08b25de531c15ab541b0b1c28876c Mon Sep 17 00:00:00 2001 From: Isadora White Date: Thu, 3 Apr 2025 22:55:30 -0700 Subject: [PATCH 4/8] update to include the better coordinates --- tasks/construction_tasks/custom/tasks.json | 20 ++++++++++---------- tasks/construction_tasks/test.zip | Bin 0 -> 5092473 bytes 2 files changed, 10 insertions(+), 10 deletions(-) create mode 100644 tasks/construction_tasks/test.zip diff --git a/tasks/construction_tasks/custom/tasks.json b/tasks/construction_tasks/custom/tasks.json index b165f59..7037d45 100644 --- a/tasks/construction_tasks/custom/tasks.json +++ b/tasks/construction_tasks/custom/tasks.json @@ -19,7 +19,7 @@ "level": 0, "coordinates": [ -18, - 1, + -60, 30 ], "placement": [ @@ -109,7 +109,7 @@ "level": 1, "coordinates": [ -18, - 2, + -60, 30 ], "placement": [ @@ -199,7 +199,7 @@ "level": 2, "coordinates": [ -18, - 3, + -60, 30 ], "placement": [ @@ -289,7 +289,7 @@ "level": 3, "coordinates": [ -18, - 4, + -60, 30 ], "placement": [ @@ -379,7 +379,7 @@ "level": 4, "coordinates": [ -18, - 5, + -60, 30 ], "placement": [ @@ -469,7 +469,7 @@ "level": 5, "coordinates": [ -18, - 6, + -60, 30 ], "placement": [ @@ -559,7 +559,7 @@ "level": 6, "coordinates": [ -18, - 7, + -60, 30 ], "placement": [ @@ -649,7 +649,7 @@ "level": 7, "coordinates": [ -18, - 8, + -60, 30 ], "placement": [ @@ -739,7 +739,7 @@ "level": 8, "coordinates": [ -18, - 9, + -60, 30 ], "placement": [ @@ -829,7 +829,7 @@ "level": 9, "coordinates": [ -18, - 10, + -60, 30 ], "placement": [ diff --git a/tasks/construction_tasks/test.zip b/tasks/construction_tasks/test.zip new file mode 100644 index 0000000000000000000000000000000000000000..83fc186e0cbfbad4234c43ad1767d5f3f9db64ec GIT binary patch literal 5092473 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
  • 0CQFs`ubwtMa> zI?u+jY^+}b!9RIL;wgw%Jo(_nZTG((_Fq`)9KHdE4diVCvLT2blnV#+;BNsK|D^|i zkBBU=d3~^#7v{U@D$%xg&)Hz7 zXma5OYf=}h(K(^kwT1VvR%7bOWyidRnZW6$*{;=3dr`2p>o)dZ@dwt@L_#spxf^^t zGX{$HN3GV=#@dGDdEZ4Zq~%-LBy-wvog#Tr-97+G_Xi;9{>%aYyRswF{U2;0(0QS> zS^Km2reR*PDYpTp&U@cyMfs<}Y!bfPR{-$SAy30|nz9di!pR zdux$oblC0G-_bg}zq{eyB|9RG9pbU@i6FXBo3QC0&(Yxwh6t%%jWS5t&Mm_<}grrS_3a1P@64*uB$ZYEpE#< z?cbS}TNpP_+^Rhm;JS*m0!M}aYt_`e@v0`EG9CSIk7&tI)3f+|pm9J6b#$mH(%kM@ zi#5f;c{}gB0&gilpqCP1?)BA~@gPID0gnn6KS=7}*~^Z-3`gVVe*=b4wTHtJy_(zB z%g~N7dBH#pvc&;%6YI+=4)moa#ullo?We_WyjSrs#Tzg4dh%`!BLj0q_QMO5pcfVF z;9YcP`doDox8+0E_M-X5{)o=;>`z~8YwS~1N?mV7OnJaK6B@+ z;(=+o!DYz21v5kPgY?l8Z9K@IlLz7Od}KKMPnCbc@|r{Z%1g~6y5#MUNrtA^9SiK< z4;aiQ!@eaI_LId;WZF%mrmh5TGIJy%E>p^E#^3hYixaF2WIiZY#at;Wjdgf&rwsu! znw(>k+zz{_W&(mK98Oo0*`+92dbNZqc;1u4-E^3Yaof;EV3I@${KJ-DVnxlNpO+zo zCGQ9j7Gu+2VzR&vc97?bcfU{1sU&!#x7j>1ahuU@U<)My!Tz`7R?Jzw)^TFyX(OE6 zYSeGD7JY_N5$$Qf)r+sX>4uLv9lX6^m3xuT0A0pU@zQ2O%1oNCH_P{|RSz-dq9RGD zmu4hO*HnbQ=QmtiZ&QpJY3k<-$G{>f^dLI0$Wi8%h-RIlNz2aMRSBJ2Ef{}fIbBd1 zmU{3;nGYwMW$6C%h?6g~L~tEhgPz{!&wRr>V;e@EXYYtwrcqGlmEPyfhbHN>>Bl8P z{t}dhP|Yl9O?uR@Pq}z?X1h^SIC)WpnFw}>X>XyJ_~ThZN|CDuFC zKaA4mJtFa7f)Ejyir~zxYCfW*-(z}wtKM*Xl4an#o13EgAf|1FnK@F0zf8w5u)XMBWCYjE85jEo)W&zScxzu+T;+ehfe z&Di;3WwS!G$`Ri8@-zY-5L_dJpe|!BQliiL%4}!n8Bv_Lz9m!7GQ~Rz8v+Fn! zO)G)kgg`r93OsgWq~O#Ss2&KTFIZ>+ykvhLrLe&4*b{5AnPg1mz*ilDeN7pUDk+Lj~4Bh$yxa1VI!${Z~#Y{;;goIDT{Iz_H}Vv}DsHHl2DCo|9JwG?@4enQU1hCx zHOdl_gAT0c4P+DVDyB+R-gp-km7OWO zhJorJ#sUK*u(Ag$$l|~5V59|x`7B#)#_jKhvncIJ+2v?gVJ#hRW}}5qzN8gXQ(ESd z*T4y_Qr|x%T>~!u5XU+@NBm;;HQmGPi1xRzblJ~*J{6B6!SXWuT8T8P7N%@xCS_rz)_x^Gqrf zhDjdQSprGEk7J%CQHUr*H;<}ys&3l$$0ns`gsv(PVy4+@4Fc``#wKjIDTz$rBO~J} zBTCziTQScJ53eIw+pqCir($<9b(x zOKgG6Jz)3%au3RDz^RmeJykuMrQW%j_2=ER-?mA$d^=UP^j^JYVIvUo!=$TPA=P@b z_8LEX-YCz(OJ9?0)R8h3uPMtv$7=h=?q+-`C%@ebZyLI@q1$PJ3)%eG*HCIL5d6m!ol#i{k!+?Pp{*@`t@hPhy|IQr|{2{^YYjeA;}z| z@sfTIjR&QB#y0{I;UCj@kkZ`~2~&TA(jCCmI2)Z0pld)4`&+sOl3D;v{Y_mXE`c%^ zep6BfBw2d^mGb__nF|N3I5qn{P7eCp?&tkk?K7(yePE zOSAEqZB=?LJ)+r8P3SKD%li4sDa)TeZzXp3@-}e_3EIcTe>frgGL9f=^@fU2{g9&X zyU>)+HhZ1f&f+yoI=?Iv%+dKy&Q46b zEn)Qg;x8bqx8)itw7NS8j}(wSOt+4WFTk5FcI_Ay&&M|sWE5OcYdb{`zm`N1aWJFn z!1CVv5)P&zGErcD?=8@*xyrc7HfSanRgKl2&h6dozslcD-)0SQssfXMQ=Q*id3xd} zryBUp62ZUFP4ZR-jd}J&CCYe%TaX%yri9KGb2Dw-@N zfMdt*=TPmh;T?rpIi9X@-xi5>zNBsG4?m0^(y>;?ccs~Q?~tT*kFvm{X%|j2=QJ~L z+W7W?m1%MK`o7qJ*Mdh1`F9l;jY!9b17Ixa((A#*RNMkD6yRz62*+f4yPUy zD@L0;OV0HqH(TowcN}7*AvY6`{}hTjL~(|@-FkpCbp3L&IuN>?6I<-k{ReMIUA676 zaqvp1PaNfs7;r5V2@n>rzr zO^X0|n;8m##eJKg_3ckJimAa(t!ky+NeTumW!8<|O$l@JuPzXcb~A6R1P41>sD3Ty zkN2`v+Y**krDxwW5YKHer*hgC%&5D<$jgcwak}EmbM#?$@{7+pYsu->JDQ$8I#;1g zL^B(P<w_m-V`*5CcKyh8DlkVdhCBdIU|k}SHVPY~j-oK#CD=9FE-_O`{{ z5o(*Cn5+uo@u@d6Z(}79o;rT!;3W0n)iVd%&JOGXt8d8lcTfF1*1y-B{5VroYeSSa zT%-$xda9wk5<=?jQUjrxi&Wi$)+9^)+>7YDjD2A{@Q%5FEZeONvtI1XS%8X zeXmjfit787$op28ILECY9gA`Px7x!)uJ3OfKZ1+A8$jrAC*1cWZ2}NK0XyLTSnzc8 zFMnKZdmfbSDP{{0*FQE60N6x6pIt`x!Q^)FZ&=K@K+fEMVG{~x|0h3D0{j2MrhkRS z|Mq(%K>uIECZ+$=u!(WAClvvSez0IH9v9@(%z@~*VYg2*+ks_zKG`E*y9p^y&Wz7H znSQ@5XCQWSV=FOf7^^ZCuv_EaVJ-^yj-+5o%h{_uftaqL!1jeM%njim+O|lQLfoB4 zt_s|QzBCBl_^tR&KQC!kWy+2M^ynvRt^5R%qMCZS!LV=5{f?JA8gSe*mzT0 zHgmptq;Nmv;mq+)ZV6ZJT2$w1*DGrqd`1w5dp9d$QkbNVk3SP0a6EZg?lt|t-r=pPc+1o*~2=Fg@bPT8pWni!T3_*#Eyg=1+~Pz29{goH^g!3C>m zNMIv-x7#K|T6di%H716b_R1Bc1P0#tF)hjHd!%2Z7fZId6lPkHh>~`V(Ay}cyzBtw zE#;;*_g(oDiFMR}(7C8(Yb!1ZEbhB)YA1r+kkTKz{Q%GJk-In3uWc{-y3bwb^QaHd zjO#QS>1J77$5ipTm1Vb~Bem}6V{yIL0~BiHp2fAZl$&ek7at4Zp1=xZLL21aPbEM(AP&9k%{6Hb|3cW^)4kt!ViB^4Tj;&lVtnY*7 z8rN>Qk^Mp`Ws#ZYf&CQRAg6f(!Tz_|Qb#9z)SY;mVDmbm8x5)uu89(2NxEUYgR+dBX5NJ&^^11>EvnP#zp3 z^v5lyDf>JI63s+71J*{q=GZb9z8%__963~l zInA+3f19QCR}tangDYpwQbd9*(a}RL9C+76u!^j?dEijyunrE-Yi2g>Fl!Nl9OJ*8 z!~gUp>Zx6HM&=F(f~ZwFa702rwVvIBdh}gc!--o=(d!_s>H}+QLmvlMpLl&htU3L4 zUK31-Hz_xV?5MrQWNd_2<+fj4S*eIAd*l6nWhb=UaKz8Qk=QB zwFXkCk29(*M17BcG~b8qzn!ECu~Vw2e}fSIZ%uiv|Zr&wwe)>PJf68hYO2 z9`fDu4>{1pjB*G+uYZVl6pJVFkr=-9x5)8NU!s&`@SV#CC4O*0L>CeV^Fp0k3OCMu#I|%AT3~m_rGZYnMajO|E7&p5&WlV0giH;|L3y;N-_=# z@TSf?IjNZaaFlfvI5oZhBbe2Ewz$Fo)c>%m%k71YIEqM0b*;Hw2{doe*R=Cpf<%6%{U#>h^e5-L4 zU4n~lufCG!ld+RE_l5R~sq2N;sE3-t(RJ|NK*?dO_LACUICKxxkNRDYVrP*J+!Zpc)_VmABu zE@sv8_+w<8)jQ=HH$U|`B4RFK;^=Ngd#o;>(LuVG6jAx3gTsplOasYqcu%yo5doDP z`-a~3sJRNxwSYR?Q*fte?L_L&`V2_9UR|mP;W0Sv+uf;2qM!KH+o92ra7&R+QJT7_ zh`Ptw`K9OG$_6okFl^50=UmS%Jn0Jy@<;sXC`YgtlFb}+u*EkK&CnFl?6P_+|KmkvA#`ImrN2zxD0w<1g8n0+Qk@WuU-%NOl+8mUcGe+Mnj1GN7wo9_03sZLAbUwu6VUePOThvs%S3r zg^XsK{LiFMD5cWV9(LsPT2L};Y$~8jh&z4aOe2#BUShdl7EAj&kDq+Hq6kiujL3P0 zhc7zB%Pf}1o#-#^agAbOnQ)?-^ZGRD+T%&XnLkQPNX-VOS!=^%f0-4IV)cL1Mok{~Cm~N(D>{U7sMAQT8;yl7s4@qR~`(wYcKp(gwu3Kdix z(2nNq`b}LUL3Rz;^!$z_&HK9yz_0ev?@{_~AQMkO-1#4mwB3>m7k2a)M#2%s?^(H$ zR`vKw-kYb-+VYiraMSoolfJOxi`qm#`@vIY0OO21k^jm#W3%aZ8D~to3z}_R`wxvX z3}b#6XPj<@QV$3?2QY=OIQRar-B~Gq+xKxEau?l8E-1!l{MB{Vq1^`3kyl?aGJE!Z z@7``Q4%a$z*%;rRxxY6MH>GGmmPG1*LrQ7}WJ%{Sut{6urJS{PY=607(8L|600 zGBlZ$(GH+-tM#qxnML1^Xf3033G8?qZJm`?@F-W}cI>KN)AYEo3c3L9%?wz9I2-H(Rl9J)P zijNc(whf24yD>s+`4j0a`x61ebAwVsF>e3FcA*eq`6q0bO7Er-a~a=lIqQ+r=J_n` zul<>1>ud;THXvG$+s|(aZi6#106r1t>VY_Oey!CA#NBM;gH=6&!EE;*}yCKy+g zF=!G@d>D#;*?~6FHQ9Fl3>)TngiIagU1IEp6PmJrtRYA<@y~@wp_;nF&018P2k6GA zw&=(8auv;bah=`~Qj{eaaq(IiZ8@2==PMYGecpHZJn`nD;6g zOgJ`L+V*l=?G;3`$Sj<}`|%KLwEaqK$ae+SaI^^A!!-i6A}mic0x;uft90x_N@4lZ z7h(|?LTuLz+eO~kV{MvG4TmpdJ+=_LcFLswxRWtfTZNcu{eH!WNV)cTdrOr$C&uo~ zT0aAW@+rTmWqnQW^uYls(-J4lIM0UO?DZnw*D|qQUkzJ;rB@G?dTe8GR@DL@k@pMh zR-hkei1jaW8T-Y~`8@38fI1Dg;jC=1 z$%SHV!iZt6eQ^PN#{l!W;nPhc&V+W>Ld9ka9;Ib{Dbf^QwbNcJ5~OTU4HgYs%ry-L z3_5z-JufDj>Bh}je;td(dDZ_#OL`X}>p`21kJm4KZsrhc-rny}2_GQ<` zz-_8`65QrgIYs$2t6huC6jg<9S@kfCT2i3w%A+6D-RGQzpdq{2iu$ zdZS5U_|1Dx($QIOEBV^*ekp~?;kSDPVJH>2tQfS3B|V&tQ8=T@K#P<7!W#Z~nJ+w& zYLqyxQ)*;2a)7j`E$Y6)yBm1Yx)F^Dq9uR!GC_rn91~jSQngp^gLOl_mWi_I?k)9~ zhMG3yAMzwgg|KDwUv>?q6ovOVB`;fFpfS_quPoTDxyix1C#;&?lhcwnJ0iVDE5>5w zR{ZT_`q&8JBma@vfK~Doff`W38%^rzP$0X^Q|eKb<5^>2m=VQZw}dQoX);_6^K(Gl z;|B$}h9o?n0K)STD~j+8s1vxI=H#QjL0B|8?a3*Lvd*>kY?S`zQx9-~YQnY+-hv_akKaNn?_KY6M9V2^_4yVvg|5-|72k z7F<-s%oS;?1ky;mkZGj(DLAg0CPzYS4aGGd&4kX-bgr|W%2}gVJ4nWHoio{n3^@dy zEJ?CAQ0PoCMJQ1S4$xRz2V^Mn zGTq8LH(`NE5CCP9=3>&g&SbVVz0MD`MB4vDWui9xBsIFC$@>|PcIXh;t6>I-wf6+l2*hsIdF4ysF}idM(z!0i&3)Q ztfUpApcQMFqZ3PFCF`HMHxvPYTJ71b=UmgdmEVWn`+q>AnHO{5dZ(UmO+CK zPqA1O#X@R_K(6E&?Gh~SgqyCZA0{ld; z2zRPT+36)BbDu$fL;AH?*CLve^*Dj+u`thv*r0n9h)U8|^hJ2FZx=EvX|v#|q2pIL zF|%G~(aSu6y=gu)K_f3R#K?lyNeN;Pm7DxDE}|;%ROBEanfg z6*si3@!3SQ^(CZYmwZcXiG$9*qq96yTq^aP-Y5)L>Upc#HL`cOkp%+JYY24)Vy`@| zMvHqt+0K#kPN1IpabQ?aG}23q1_;qOZD&jy0$H-B=<_v2r=z|+BC+*U{PJ$Wl=owQ z=Cb1CvE(&X8iF(!Q0t%Z<^tgG1sryg)^ZAfL#m}8K9E=&`txU8?Ug)F?-ba9O-~aE zV!|{mG9%dRIZXm}C57)^fK*ON&r@k4aRT%A;da`(Oi_~FrV%ZiUlKG5jjndN`zHkm zRS9gq^mxmfR25e^Rc*F49ywfe!@=P)fikx%z4+ydoD)Og)LC&d{s;OCvmq1}d7Mug z6>^<9;u;ThleH$uRWrx#s^0O_fJw=^DOfMi+=(OlMyO+QbEoIa1Da~d7lc>obXKod zy6UISWbC0i%?ToIx>Ue)ECtotG;jx;Lv8bE4}W z@D4ttT(1u5T-JS^8R8VW6qqCF9g}r$pzjyIuGG1m;^FxSScpcaof%piA!v9xYUNcmz&u{uesEXOoT-1NswMNmr@oc$p@LK+k zo~edFJWR*&2b6eH+Jawjdni*Z zP;`~652`0H1L_H|<`k@ceKFd!uR2jO$57yHQ}Drg6_k2fc&UVSy7aq5iO>8&mrhFm041uco-5H&Y z9n*od02oWo0)zL8qY=#NBx}Vuq9u>#@4xxVQRL+f}sE>z9#PQj)E*iHt*$F!I?Aklt8>3vb>E223Bp)$Cfs( zP43YY9=LX2$fIAC1f?_~=aG;9+gcupPA2)?wLJk{S+yum(wF=j!-cQ(cD9s+OD zjAogj`+Ly(M%~mH+U(HiK4Rya^hR%PX@VeQPhrP`M>P3Kc;p5{@|3p9N(aZRFdoOI1)GQx7Ovg|5sBECi!wH@t>e>hN;#O4O9lM!5dy#*o~dEEzVY{)VC#_Pb;xTFhgk`pjeJzhvED zG3i_njS>9ZIgzH#f1`^d0zX9${I{1<)=X%zn-T*z7?b-uVOn0{x4Yl5blKQQ1!+Cp z%NCE3;o?3gsMgeEbH0g*?lFSSK}w2C6I6CHd8sRKro%20fCRQxP_qnX<*x)*@(J=3 z#;2;$O4U+Pzr^MK{n~x>Uw^FQMEtkEnBJcRZX1ATswe(m_&FU7JfXVwikAy?jRC6G z5(BEW{Nt|0nD;W+HZuK|gITMX<$~)3wnM+;I`uQG>P(|~f!g+Wt-NF%d4*qp4=Qj( zF1?JurE98hkaz_}_Wff}poi?)%*|v}+Im1rVd|_jIivb=Ts5%kz{W zECINTC*`*stkD$t2!6-F-RHXUx=RTZKSx-T1Lx1OH?P+j|~}J;=b{ z$*~T-Na)vm$!sA(JCHB=R-Kr2K@nk{T?{i<^sQQr?4n}+92{G~uTqk};``{uJ`(S6 z9jw1$ruMD%ZB=>+)l-Uv>M3;zF^Pu13?DKH=?g63Ex4)|8*7hPw~Y84xKePn?_Ab6 z!vchg0;aS3Ga!{`@?2J$)kcKk2Eo?u+C!K9@`YP_DFv(|02@7VxDtMtslQs&Z6~aNr)wRUk$&h`CYW zg2~5#=i(xxnb<}S>kI7!mSRTR zwu!YW`|tOc_T=;X);wE!^e?Rs>6Xs~v*jzvw6W0fM$ZoC+8ihF64}nMS>s)2(r#2S zJ*1dG!=R0ZhyK!eckgo4U8PZb3+}2QC^T6PDkP&YAM&;irRChy`3kpC$q@j2CFB7J zgkoHEyQL)#$^$~*E2 zU8SC(vC2`*cqPGOZeeiaX?HkWuMSaYIp{wi>c>0xM$Oxf^~UVFR2u`0t_wG&-7f;d z=pFi(-)~=7yg<4Q)!*KV8Qu~zUAYr__NHLXPmGQng=5)flm-=+{q$Nn`tLdYojXO1 zoeZojdvuXSkSM3^L0O#e^qJ=Q8=eCZhP~f)VhO5_i~ubgH?jHZ8u-+C_e)T@Nfa6; zKt_qEL6oRflqiN+#!7`voeTWXPoc)qp3;3z>1+4_?&6d; zV9#3IaA&9EwbW{OQ=L$kZka(V+{tNXr+(~P!!Kh|2v!$*)vuQvE6dHQRB5%{+-Rul zde#B8kTVT>;PSwFAEDD;uRtLUdI7Hy7Iv?B;L7f#?1Q1I9lr5)Gd_RKeNu;KTjwZx z?8#{?4WAM-XNor_+gM@7HR zXlt5w5X7XmY{w^TU&Py}!WrBl=@!C_c%{m_|0I78%SdLkF`KLU+aNHNmIB@3HmY(O z`;dHdEY|dSeKSGkF%%qqW(UDE4B!sw^U?7SIBFr`#_6GbyV=Aa^_GE1n>jS8083&D zv7)txWVzRl6tBa}qg>-=c`sD!k@k{dTLyZK7blS4uj%X{Y#^3=2j_ zSExCsv$-*WMuYMW30@PO>7`sfbl6QVi`K zLq8ApZ4<+db<8;pWeUf5xKk{u^RWIhor9O==m*T&?3cCg4cIvlN?62B;#cu!7P%%6 z@j7{gW5{Cmw+EdY@ASiA;|XEv(gM#rl{s1`$$w%0>9Jr?z**!j$#_WL^EYOUPlH}5 zaewbepZ&Y+kcE=w#!#WmA}>E_BG=R&ip*#{Shw>5U4OguTn&0$Ll0t&lc57#REz#wAxZcdL0k`e$ke0NLN_)4`rxMe({y1@UU=Khf(}lEK zp|qMm_UnZ8W3RQLVW96mu>30N4r3pxLfy|;j>s%zJV1q2i&RJsur zMH&fdQ9z{xq(nNULAntMrA0vnL_oT`+0q~q(%qfXu!;T6y*KirKJR;;^F5A#obMlJ z4AA8U*PLt3wdTC$b>H`O1(U!`b`ZXQKD7I(3Au_?tQLX7JCkKK+)HbM}H<9){oy3$<2P zt!;}Ni~P}8Txm}K!dM^~0kRWbu>bqP71Xg(v${?L2!kHaBn6MxKF+3Z6DoyzLMSO!($d%IzE+3|CdbJ)kuL(O+@k9|# zMo>X$e|ap>XuTwCe$pauI)^&2X1|8xdF>kCd`QUH7;u`VD@!- zlQ!(gRo2qh4bu8D)-7({qr>e5daS??i|Wcw74XBF)h+5x2Yy)Uzz@r@XfV!965n-m znhj>c)yw}07(T?hhFCc(mhvQ4th*>%*#wuBPPz|K{hZdGR!t*{ie!r z6IV)&Hne3vAhhl7@^H)Edoy}|shRzxr>+vFjSy14#ihW8<*>M7SlOrkJ($3p=@(bU zg$cYdt|0z|27mp1GGDU>{52Z^#mmHr7T; zA5#&jMIJb1sc|W}CJYw{*`2yT@B=kJgma1r)U3g+(X}+eLZmVp{(7s5*(Qy=&(Ah_ zNztgtqR|wyU9tHBEP>4re|`ZvlNP!*gl28(#0jy>Fyej!bqcRB7B7UQdj{8L^_{0z z;Ww3?oj^MgT4LtZvj5`ta6<}A(C8y}xcR^`x`BS0t3~FPnkNPIW(Q=872|cwTA9P9 z%eo;<6T9Do!^LlLyv3^7g3O<0Y}ENo)K#mhZH#jcFkg(DQrqD5Ec0W2rQD<|OW(6xT5TTe=C!4=rW8H( z{Q(lIR1~aPR+)I1$qRj7JR$Kt4YMpu`$m=eJ3KpI)YHZ9`Z=CPl17Q3ny%_yChW?D zU(@B0sV|mvDKcoL^u_XvcgfUls$?0aTBPPbS6bARt4*83XkcMFY0-n8TXabRZ(&1B zCy09qLkrXWWCaFi|L$0VdoZVI)yuq-6>b(tFpXXTXA-fW0VeTQCK}7FOv?4m9g+KJ zGyE3IVq{o3<6%C+TqR!Lv}r^G2QG<1o}F*hP%=6FCQbBn&tkcS3huKy(*l3(t-C&| z3!9Z#hFrE=Hn#n8ZkL23Z$0lTomie%8tac=)(m}| z8R(qe;YCTJ`oTIc95!a_4N>9yx_IIwRqo(+AD*8E?lWFjN8de{7aLJ|N>s5Mqh_%m z^VJR3Jg~dcKKl$e)}Du+VClLkkzcv}nb{dZLh_}k1NiRNUS=m7RDyyS2W(3b zzB34WlNUbFPfp_QGTKlcrO=|T*k!uvCYm+Gys)voL~-uzBGD$V>#}?!iAmS)L7!Jf zHSJhJa@nSIpZdq0V4vO)u9%a9Z#mlRoDvOQpV$v>jW-^NM)ovYu0p%EPcH#1I19kY z;&*z{1WL=>$?$Ph+r%YMY#k9m)q9Zz|O@(Rn)WaNJ(@F>+B- zY2D}&(0UlVvi;!O)!sPTXvyBsw~_R-ZkQ=}XquRS8gTC~J22$((6`<_t!RRCP!mxI zj|tbVU?-L2+Rt~l_-l&HJAcRm*V)IX4K5pQg}9G!MP%k1+m2~}quo46OOuV8;cs@P z*Q2wxU{aRz$Lk`KLM_nAX=ts6awqK=wEtw~ z3_%34X6PSX=PKmhyV7!pGs_ZD?M_9iandEgT`OF-rDSJkZ`aT{%$XU>*Q!K$YOQzg z|ABxnq?GB~Zi3Yosc|vW<#+KS%LQ=T#oWXlXNBb6Qe$6NL?n16FKtzQ@aH&hq%jl{ zW)%(_t{YZW3!NkE)yvs4UK>-?n4?YP;O8|J%$VC;n@ZU)EgH;;;&NWnm+k8Zo?B{q z%o(>w06ue>Nr>`@(}6K&5_+{6qM78Z&UOPMd48mk{46k%Zz&BPi@M;a>8DLTUU;rQ z_=Pq(3|he&U}5~3G@yb8WbN^p*2VSf5EgqFe7|;BC#zgnJ0$Iq$8?5bb&3pB(qh(T zVGr!~w-$#?;0s86xx;X5kcid;gX5}>4VZN*B>wAf@U2@CGS z{+0Z%qi{g{zI9P8Jn8az=_;FN>nF9wZK_`MpeU+6=;yz*a%b$xiF&9p5#F1`h4Yjv zZ)yA}wL5ymG^8})LM8@`eO5s&@LWJUKxGbct^g_%ZfUQF^Aja_w9;Ii$O!B&bMEN% zV>o9^nty>)k_~HU?&}=`d?N~fG(9xY3b)A2{IBciqDH*+mF7gP+4pZdR~hiuH}sm{42v27QY z7Y(c8617_%_as8qN!jf$?hT6pIU;z|8r)DLO@_KI zF*osEw7?S{yz{rx8s+l4ub(VJ=NE5WNDH9|<>`r_(s+25o&M|cxhfi{IZIZ!AKDND zxgS=DEq{_C;5tmob$B#%6Wv%K=$m;3>4QC0_3 ze6~JmD_^0vkvXfr;Wu_+iKFwxo3NE@;@w(Ar-Wmx?+WN_n|`$UXnJSci({a8v9_m^ zzU#v(rDNOWx`V#>H|Ei-7l_{5W#e)3!p+nWzELWX=hNPJnjM9EM*+7>gKLr^SVpBsL1kGbc;q%d6GU$DfnViuXyv*0f-#%) zxv7qdDS2!i`Fcn!FSq{*d(zPIs%AN*gpTu-4!f+JcP_P&&n%w-d1y0Ykhrg*kTd9A zpLn0O4Uc=y21ulIz{`-u?An7*)IR^Q#mB#TMp(-PO?R3==;QG~0vw#|G8=DMkF3}V z4QkR2e+jskf)^;j=MubTcmX!|@iZT**m%a^PTOftJA4*<{G&hl-je@IhUbW5Lf+5U zEha^y`PZUAsALjkm>qxLX= zQ#I2flj;O4pKUu&34(u3L}2oX)8^A_bi;p>OI-@i%a$W6P5^VdWe$d%aPOdj*3!z)UnOBoHpYtGY7x z5u<$)anQJ(eFmP5dgZI&WT1gNBaM7Kf zj%#hpotZ&!T;&H)V})cWVkHBPT-Q|i2;Xo`7B@BKZ*R%i%0St&W$4G&uvON5 za>mR1W-szs-YA3{guiKlgu3Sg)(g)7&U)S6x1Vx1Ic7pyh!Ms#3K!WW7Fl=W-u`F` z1mP$df!^-OLD<3-794?7h*0qNOMZstKJZeC9>IT=ORR`HBlem8()X`(4X`QN0GY9g zFQvj^>^0?Y#FwpSmcM`Zu_g*%q2b)Bj4E={j-1O#V4|Sh?ZQ9U@|{_JU0Owny_IoS z*)&3Y$^{pCK>W6XqAszhmh}-X*^r=QL4aIy8%)UWy&+=R+0VnynY$)gCn(Eg5_rhy z9w%xMgsj}x+0p^?{CI=MvyZ_ZRlxE$DJ@n1YbMn?z8 zT{dfiFW6;kOK}kheQmgIbyH615x(v@8*>9L_HR#Z#q`_LpL|;Kw@ObMYTI?1s^c!{`<@PJev(J(+w_X zW)5Oi*Sy@-Q$uo`hOizznj2E|UL2x+FBV-i813(t_2k?ul{vyC+yX0y+%$CMI$Gte zJJnMxL_Ajm(3LgCY$p1)F|pu0gy4gE%2dt+cgt&zcaEoa9i#lipUJ|xB8)fylRmyy zoUx40#E;jwsd>U+?1fOz!YQq_jXK|^9$aTqyIm%VC0-IQ*9T`4^u&T*Y;ItNk3|wk zO1|NFjw@%Rs92ZGwbXDPl0g8LdE)Ns-d z{``8zsVoe3TFhF$gr+gw{*EUx_tY4nHQ{zi6RDIsSD0_ebXVCrE^JQ3ipK z*ku4hx-d!bK|sFeF&ga!YrC}1EH52nl$OFvA3bANzinR>QINQZ{^|vEdo+2`?GeTu zh~riJ4u-9!I2qn+bZjz0d;Whh1spv{$l%Nsdb(9|wnMpNyb!gK*(>g> zNaUuM4ri#E9?PS=yPolVJ*jd%@=o}RtJBIUE=w>rLgF)#d4}!8+M}oHl{6Tvx{@We z$H~vAk9g4qSzPXwOq&d@V5m@^i2=F$I3^)ZMW*?R^2Rpu*qt~Japv3N4y3pBV z*2OyugX$LKmI4X%?TRIvN-iB7>q>1S69@|WhXFc#g$>act5V}TnOq@so7mpK`T_+0 zz!y36%N5y$CwGE!WDjj-5KRUt1vAsrWmI&wZc3vW=F9MLml64W@&NHQ8 z?4Iz3gVZ`f0}L8{geWw)OW>voNjSJ4-9Em-O9dMy;67&$=wTu+0$D^u&BDeU?QESJYW`Rnj_MGv}$t~Kg$>b8}qU}89drt!6cjoNhm6ay* z@kTWbjV7$Wswo&zCT2>(j&J&sAk+A`4_@OC2d{BpKHw|)j5J4$^7HUT0s0~v23e`v zZ$c6&a0Je1kUNnh0NLnPP;9>6VRfs?2ui%`!`-@Zo5zo$vs)?dct}?uMdy(CO(H^; z3h^|JhqQdbE;##E6{zB)uxGSRNo2tULLhznzCBrns@U%f6Z*b8-(D1A@q06#&$vfY zR*<~sJEWP1LK)pMrSjC(YykU0ozGAacI9Y76m5Zzj9&o0XyGc4O$hfS1I0DqX45k~ zX;roEaKGKa7E2Y{A9jwtNA*U)uNfMM&d5#7!J%8dJON(ODwatzK4-V0N&3L~A_s3# zVNy{j=fynH>X0%XY@D~IY`xbM*^P}OA#XICOnAxc5Z7aUohJl)yzQL))x#(8uzQ~~PV z9-BGqVrNcDbY5!dgeW%!50AZ9+4);W1;lA}p9TCEqPjBs1#@@2Z0;|*Re1z!6o&?z zljlBJd;KVU%Zm6$yb-p`-owse?esHMSxA?!-JCW8THY)oA(y6Iiz)c(g) zw(p5C^#b2dmiKayI?g^wkh7t9M7a~X>-BAES1*TfA8n&aj}eMF7vA)Ub>F$Rk(4sJ zEuA$yU)3L-HYHEz-jEA1X5FVo;u91?FHkhv*L`X$TBUv2*y#D4CYCoIoIlO5pLte~ z>X*3(ITjiV$zUu#_kchH@fu<X3|?b5&wNIXp9JfzwO8_Azb5hE2xMQFZo{3d{7Bs_V^gC1C5NM;R6KVzg2 z_d$>PMPhp^e~uG;?FUI-Nf$%lse7yS1p_~Fzu?(idfkbU%c+;fI%sZWkAZd%{LlN` zJVF1G0$Gzu%khPa|BDJHCDw6F_Ji`cHg6>da?ZMDV^HgP>^(X4vBF0oV{)w$L~dE*AfDYrFh++M&PJ2SVy9w4Wy+WqJ z%@a%%^y!rWq?iiW$RjpRdP{%SCLpI@$e|LmpWs5I4=$h%KbW%H=v>;|9Ivu7OT->_ z(4XD6xwAZ)5a_L@DC5uY?IK~8!bgiN>~=oAjr0sHbq;^o$$BbEj{DQMsqVfh-Zu4o zj)v=b93&%Au}3i@K*bo=3MkbdkHsSGiUq|Bo<vrEC zHs&G{?YfR-{~hPx{?73sPxrs^$b-MDRtxUxkDK2f-o@P5TM{H{NLw1d}jJ>sLaz8v2NoCy~mnoOE3unX9_e`|fk6|v~FRPm` z(Q=T0tj46M1`*WE;t7u|t3r@wyA)-8Ik8-hHtVHT6#E3&yEmJMZEfFYd#o4-wI_fi+n&e8G zRyYErDl37g^gf=`udM1J5VqyE&QF45}cT zwB=Fk88R{x-c{-`y^M>~Bi0qF9yZy>(e6<3HX-52-t+C#ejmy!Wcj1RuF%VYlNNWB z)ZXR%v|xJy$RNjY|7;`W!V~JZkKMU?ua)3P(nU(xHmA#lB)Bz5HQc=9b$N+^8}BF} zM%)F5Y^s%UfXnwJ%oY0yN>a~lK1*Ex$`4Mc zn9q)4RrSRTU^NV~Rz*1pbc^*~!YZAL1`(A(nsa=Gc}2AXER;WO0K0SAqk%G}<7L*#bajK@@9Pj_XWA^+-jZl*6~l%WHdVD6&+?Rg_g2N*!utxhq87s5MhEO^eZ&Rv!d$4C_Jtlp-T8}h*Ux=kf(=#N zh_{wN``4JiF2h=VXp*A{;**GMJ3jXc;0{U86S*m zVfCc2)@0rZKR;C3p4^8->TbnPMuY%)hUCm-)e7K|+0tfux7T5cJ?#>j>~)v77)~j6 z?e>rWeIEEW3naDyk5~<9(W3d(<)9ok(uIb^2gLN{Xf4^hJp{&D?Gzy7i)>UwnsbLb zc{zxk4a-lXT~^fzWiH+w?WoY@rC?+epevdLo9Ny4LO^p5HQ7h29fT$3<1y|#VV3Lm zr}{Ia%`4SG@$y!5H7MpCy7mRtYpLO$zaiq{Ta`u9l#NzYCC?;{i#?8bsD*|r_ZXeM zBZ6f#PKJlhjh%VGg^hT=k>E@Ax?Ru1#!m?F)$#Aam!|ZAkB^93;X2xp&oFWzHKdss zJ@1`*uhIAHgmwF|X-o7aoOScZmq!T(Ze;(IdimeHu>XKYe*Y12Y#&blZ(i8%d0_&O zi2uPjtc0;WCbr)yc+wua`8uX8?3pANbN|@zArr=YUz+9@-4DwL?QqET{tZt_A;UMg zh=`y{Nx4%7)JI#g1!FKg$7S=%wZ--u>io<(VTzIZ(>cAod-&>XJA?vf(Dd>~bCq`< z8orY(`5=Fy_XePfw`!xNiF&TUsjYF+#||C^a1sl*5|CJBHv>4jF`_yc$bmCezK4HV zBW+(f?coo9jZnhXJpkky)VY=GD&h5m^crslq?g2NIO+9*?MH28@@~KFWk+LG;(pVO zgk5%w)w~a4;#B?pt_I_jXR0rDJ%ku(Ry`)y47rWV0SmZk519$q&pOA{>~avst6evv zpU@#$cT*5vbV^Kd?Z%2s9^_H2`@a&L;PLq3YpvCbf;Z-l=#DRU5fU50$*63yKWYje zZs{A7G*?Rw92oKkh6?1@L0hiYyx%5Y{E|_Yh)-vx-`dsS+XFnQeA(G#p+Qf($-wk) zFcxd*n&*dhERzc&_wj|Jhe5|-r71FnHyBaGN^1?&T0i~R(I+lt1nL%Q&!45FROGUi zB;Tba)ZDE;MR`(-Feg&;t5#Q6bX#feOKLl21tNjscI&hHtg^0JpG4gp%MHg)`h3yW z_>_TvlU(b32rWDUqV23n#1pGtIP#5&Z^uCUoR47C;W8!_24BV^(yzO{4*5Z8bnYuZ zdYSW7+_i-r7f(PU@&(#6U|T>w%Ie_%J(i}@q~jeoHRbd0n?YBAw7qcvo=rAs&v)w2 z%m;=}R3X|bd9Cyad$BuTG2U>}B*enw7MJEQ7S4gm2#J>N&cS)Cpbo%ey@JO{k(*MS z=Qc4?1AY7y*?VJ$`A|nIGF%<(&PzVwE~yO~3w*AicA3NQ$Ep&qM#j;qEG$w{71HPR z5~QL(2u56v=bkcDa8T_4_a-zg>0-e;3Zt@#$-vk+*M>f>2OL)S`F;xyyJ{6HjkBM)>YAR z4r;S2wD*v&I*U&`_h(hv6pk)#`a*bgIbupud5rKNAA>!GX$K7)LT;rRaBWI>a1$(I z&>3}Sjxti@EJmNp5iNFCN*E;eSE_j=Zp*dr{0z10GqRM{0=)s`wWY6NQP&{z+Gt!w zhp%HM-G=mOUEtgjHs%B|thw|c$;eI(*~hBt48dc4XCnPhlt`|PVup(e(}aI29N@WB z(9)raAmq4o;B*r6d4vwt1OJ2yWvLTCYYz(`YnwMqBQ3y=S_0?s}g;e>;_wNJ&M*TrQc9bsu&$&tk1X zHGS8k;<(vmH2h2qth_B zesnDb(KW?C)3wu-e(guD0{^&c;fSt*xBO4swbNruIW)Y39_SQ%*yt#fSCe-GIqX#m-565;tT|^XAUxdiH>^;{0BB z29e}m*}zg;!IhVSyHDT2^1~M>+kk`nH^{x>^6P389U2Z02A-07wV_p^<-omn>0K$M z22aZA^Yfc?76St#uhHwr5!E!7$U`I2mZ!oy$5{8Lt;NKF;Q>=im)XLW?B}E&|0cbn zNLR-%gn=THi}FdPYuStk&RtFSk+DNOYa4keW!CJ!D(&+{OlHq~iO=BOV@gOYV%Qpm z%c)%}0Fnz#`;xP)ciYEKn6-<9PS4Kkxd4&1dK<}>0NxuAGVU8h`{eIGS-HjAuXF>l zOZ`J+%Mh>NKKZLS)=fg+GqGlQSw+e_m(1S1hoi5gn*e>;E=JK^N1`w7BfZ?+I$8^I zC(43WnuqMD53mI&0l}5O%w71-WHji-R(mr1-nbs@%wo9tqV-f8}P*V*e1I(-Y_sU$y&>g8h{nFO)daS|MUe46fuT}qhDybP~9sXCDHn!d97`bLyzkoP|(tv!dXh2f1 zsZY{n*hG8EBswdSVe92ENZ`T`&5_r8?FJaA-ya-JB;WwKEbkza#nz<3 zG^+Bard_R#BO%ycIM?@BN;}$g=0k684L5PIKBoyQj@QyVNfkejXh*$v!f_4c zk67AOHPDam0Ff)*$9XvV66%&mPed<nnsWDx(ZR#8F9bjVv(NtZy$zW7{6JlM%P5tJ7|y((FdRmIz6!_2#5FKljb{ZepFc*huv8bg2JujC?wU z`ENZ)0Ou}6?GWbosMxP~p00J~E5#tyKJ5TCuZ^vR)5&U!VeDFO?xm87?FWNdc{Jy# z`fl_M%gd+sZO4BLJfJs@gZWmc+LsPX(1rV$S(ZBNR<97;cNm1T>17`*W(FZf0-n)C z#=hdJ=(lS%Om)LQj-nvd-9 zQ<4h0%AdDc5rO8A!M>9`C*HtNAu!WFWB>1QJiCX?539y%uKo z559dEng;#C0J08fu|vf_w1U?SI-1|3xF?}$UWdf0POiDmoqtQ3(y!L^^neoAKMHa( zUg}w!%{Y~S2b^%b9{bfUUh^;S*jWj5+%Q9ux5Yrz4OK47XdL%`^gF$g<*-VJ*}7!w zn!`c517pcsk&LC0=yUqg4K5)m zt%Y(JicMDk?6^K>{tG3 z7;^z~Yd>7;mG0|0^N{-G;BEX8@2fVrG7FUXvQBpG^)l^t_k*ThKMHk^iAt@{JK^}M zzsMp2XZAIL9a-j^du{mfG)V6Bwi*h`F*PFuE_`cQd=)f22?~rpMf?DUJzt{Y-pDIh zO3r2sRst>14~UXsu>tASQ1$$5Xs&~r%eC)7>MQt-5~uD?b@>9tB_)5|&e{pz&QYcu z(sI+UZJqeEANMSKrb)k_Leq?O%t&EL(ahghVb`O5t9x^Z#aNfk#nzqR_?(M8Mxr

    wwzhsIa3Ge$22Jk|5;5)vc^3)_ac#3c0Yj9uB}fio%vp|QmST~Yobnc#bK><*75 z6fKWDZ2MRa@9qz}yVW&1xz%woI<+-Oa?8(Rux68yOW3w+^bCEo*om>|ToSik5f-rB~- z0_fse1pNHcYX*8ir4u3rcdrN025Q^6urMC=hR+A?{t!j{R7YI@;wpZrNmu5MFx4pb z0RtRz}9a|36Cl@qGSglKw?V z(r3qoS1P5xcP%Xzl zw^TNLcibP^@+PIOUwXut0B}57SM9o6P^&MvDXr8!I&YLl6r797bxT5va^T=*in_99 zY#4J*sIZO!M)F?mIU98nUZU5=t5F6~4?8ui4_AOErW?CL7$JZ}UVW1U`zE3X_O za5u-{HQzVQ>Q)oWxcyOd>EuG<4bKA#m4Zj|B14aoiNxD=n#Zxlp2X|n;cLtOs4IgA zG)P{EsB}6;XV8q?3pD?#4TePNkC+m&opd19yIMUTw0axTY=QA@^biF%{+myB@|sTL zBmwa;ke~_?(hT6I4GfYMT6G%< zVN>QAjMgoOF2W>I7Q>fYC5KCl?{`DYo&EyDg1SHmkIWoEc=6}iV<8PTq`J|PR6WI1 zrV&MrPN99bkLxRX0Y5POkbR&zIfnfwR{Di*L*1k+2ZostfIM7SoBOdvOV(=`rgB%fW+M3QHtk#5dVUovNH&`L6&b?(UmE@WPog(Bk2KLrB}gU zmD17brP<$4t(H$LfA?>;SL?0ScNgEZysK9aw2jPr|MSs=NbhuJ$}Ni_Z)J2l%5I3v zaxjBhsV6IgEefRBWHWylhFuTCKZbGyb%Fp}^I|!y5Z9?%36-Ck2-jL%^jF zm&BgD+yDOUVDz>J_#8Oi-`uKUkFM7NiHoCfC?TGM)8zPoO=HPdYcZrJ;%WMMUb|T* zoYK^@WSV5+gZ@>gZ;=`X+p&GKBI&VJSk&n%4S}NMIKcUq8u(XV^*p!tP))*YgeL>i zg73DWG`s1Mc|xmy_x-YB9cZrp<@-e_NWE^{WkxMN$3>j5dWENfesfUSjpL~XlCxtX z$Y<#DW0}m%Q6{-e=%9J9=a-bv-#ov7e)Y#i98z>Iqh65Wb{GD|7M85_E^8NHFadEO z(KrUl(Q?l+V1+^jGeXLwgsE46Uk>*A61egbgF~m@?R)PUYFNn{Ch#P|fXQE5)DJKj zn*~b3pziHZD&si%aCR^@x3`7dPK%Rs}lCJwYHePwW<7nkyFO8>!Cfqd0W8-*9- z06Q>EGFFZYH(;m#j!g&N@WIq`U+GvBayMbutgP%O-n#sU5_MT;s{r=#b_;|IPSSNIZYywm@iOXtTY z9~QQ%rT1&o8c-`w#$N9G<9+iU@le_s*y5_F)>8dBLkEN#bM8-v1d|~clFvBcUW?Zg z*!#17K)k-Br~%?NGZ3#~sM3cjHpoFhDO77y9lUhEkHVwP$FwP?vUTZ+1j zUMB5wDf}W}HO`(G3VnMYuHpH?V#i7UPjSBJ>DaC*+X*La3W}V}RgEIMO1i^91D?o< z#&7&p-)-s9+)oc;1u;TVQ2NER`b>GITW-|fdAV~jcB=}I7C=;>YC5r_tbjq6-z;Fz zb^FTd?O>2{agftLw%6FvP$6TEkxK@6?j?OjsCZ=hbn8v|58Z+$Zz*l9lK*IZKw39j zt)5>hB8+0!P>TOyrK;Owds5D)o`IM+)Ao{$1KV4m$(=sXCae47rc-mOVuht{P7+h9 zxPGkMlcfvm=NtqPr|=UPnb}`)^#t(=fu}H3k`|CQz3T(IJ`$yixZWc}>N22N45^I; zo;ph=xK8A^mqEsPpf==gl|9*%2NRdIl<0v%sIKhVk<0Y^(W%}M6L z6UWQJd$=-{kz-6xl>4CKb4vFS^sg+i;^j3z6uC7poQy*Qohdg@IiGdAHGs+L;$W4R zlOOI;YcxI~o_%4!SN33}Vg${j5$L6MZwN^{wM6za(sS;T9Y29#1}C+BnQuCn*2K^H za;h{UBsb!;Oh(}N`&gByO?^iidEZe(ljd8ZLnq==_EVXaVwuE%+t(RcX8SNcq+*!B zv@Qt|614I*#P!{`W7er9V_c||hNm%)D+g@KJ}G-OmI*AgF!6j6_g;XE+F6&M*H}Q& zB2=HmKqycz=hBtr;4fgnc&`V0sWKJ1sflRIfw?0#=F?GTP!+>isPN@s4ZnVcUZLiI zxQ2Fvdtsuy7uqIB6X0nDIChnX#vk0J0JA}HmKmnGis;ew%Ai?$8F6BGr~9XAAvRJH zb$UDubdiGA&-F33QHtVU80pxVlT38SCt+Kqds=~OUfZCF4ucGRl`!sLnc2REkx1Lw0ze3GY4{!z&eHDI#8 z3)tUy#tO&$-5-IOM>xeJsthqx9ZKN07l#=XaJBRt6-ok)2G0snnvB>`EdQXP8z^vn z1_=cI2MS~Vh>_j?qnh~&qyoZ}X@|#q;y}B$lS==ghY@)NL_lyTX{FAUWy&-~bYV3s zb6zmYaIv-N|Ay$JIbBuytPcjkrDX!>uh`gLlg=f_mt?dig`=oF=WEs+c~fRj{HEFX z*85p2=)E`1cndfTQ^|F?Et^MOqfY5OfdLI*Us^05DmW$UL3cDquFR-sQ%YEbyu~|s z*q{Bf#FqstB;Rfo%{qe1GNAnv%G`*ZkE}9<~;uA}2Yi zIM~zKxE$t4oEI>m_O9H$i%Gk?Vm`A+Hc7XO3`{md2&uEC+jueg?fB4VTpSm>fF9P% ztj=`)*@U;dtl&)@JkdK<0#SCogqkfq_SUmK638X97Wk6$?R%6&y#kThw$aNpin_5- z`$vnD-2wXqQa8-#+wH!MmGD%wzo1YfjY$&O*^w!T zl_;GgYHGIxrnVdH#yKh0Y0wvHB%(Ov1lPq!^u7VHuepX}%WM!8Y$ zVJ^H=p1~kecJ%9w_7+Qj|7d(319iB=u-Vcw0T=3Am#iCInyqTv*#7u3VCiiOC7d47 z$SXf4FVAouH1BCF?Buih^G{KFuP1MQDe({wp<=q7w~Vpjkp}aO=g!GXVx*KX!dFIZ z^Malq;N>D@Zp_5a%z2(;M#@6JDs8PG%>6hWMGNFK8g4g7dJ*$o`HHmbTU+Qlm0+l3_dQiDoSEp7 z%N`GER!mifuI4^aE$PX!zeBAS!Z=iG8r=yagsV=>JXKyUgM07-$83FItj^u{C6Ar$ zd&|J3dl}YpI142{s<+aBiRviXuwTr>=0~hw7G%xa4x(o(F3WIv?pCwMdX-8(HM(qW z3)$9VLmTINoH5Mj)WGR~ehGGpd<>0KbXH++obO^k3_6l0{3Y4Cz zh}H0@-y65nkIQh0u?V4XV#G1Uqg2}6AEKWA@e}nl1U0NK_M@F zO3pfxbqD1iGVLA=zrZ!x8=)rc@uE`YS@PR!5P`vhFhUh-#`ua zpLd1)<85h964~l+f`3^7@_Y8^@bsz<_UT4%5|R_N!a)w<_r-s{KMfjmD=(`}42W*5 zsyP}UScjWGCc1VQKmRBA?)mk>r+C=N04h-rn@RL7x@B1|PsmO2_wxWRK%k2JV%f>H z)YRI_oGGy=>4nc@oAG)plaGr=Wk=+Woy@CeoXT}+Nkd;WLykgUU*i22A@>j^1O*^UyrW1B^B$*0XKCzGe`q`5ri&2TUFOC^f<3mehEUORJOl-8bN6$Y4@r^Nvm0*Qm%1Se?REVjJ12jHoiNvjYV)hGgJC5b^9l>GN(Tn^cHcl-k=1GZ>t1A^p78Ooa zxf4F3D+GPIL?OcppEps7ZDpgl2+n;qsaXXRD|Ei#`5h6TN{#2yhNPwqF|l|Mtt-ST zuD%x!;4oUjXo7+}x<7mp^0plM=!0_kQ=_RdUM-SVxQTEkVIF3TjhJRAxMJRt>BaBk zS~ydb?@4j%!12%Cu}s-mV$`}>S~UUpyY~6Yn7x#!@~&QZxA$ElB0RD7nQhhe4eM+} zFM>gM;bgn#Q3KSjOjaGs>Qn1m+vRXi$%+znMmV+t6*Jy{u5`F*ONrLyTDR-CTd^Gc^2qL8K(bwd67?jN=}R1Zf_1To6YF0oP80+0@J)` z^$tJ!_9IG36fy4mtxs4M4ZhK=-a2G@6GnaGRsU@DvhVND3@Au{36xrhH+&{BnazVZ zB1x&=&+VQA)s2-euUQheNW+{13ZIw5)-?H9mo|gwTioZ^F+Za8kC-4|L#buDc#MP= z2Aw|Z%5el_rdDNqp@_B{Z!th|_c#_=A}{OmIQh3lfQ=zv!uLys z7ChW^SF9i_-~1y)4`j&$uD8LxoSPiFZTrNO6K*Y|subRVsPuutmI9I=XQ|Z1?WiH= z$9Ddbwm6H;p%E!Y!rYA)lf8!cHo^2Aca$ufmlc|}oQ@}a z3^r&FAMt4{pg$z|Z87c%S+$ZZ?umO_jX#$9mq8dD8O2d|3zbb(Pg^mw0_4wPlHEI28{xwmBPyBcz!>sx1bviOarXugcbT<(90hXkeNJqj$nWuEJ_}r* z-WVnn?_*l~tWX=U;Aj6H$=Lan8XAAfu@wlclRKE-JE_yDJbaD%w0`}RLB;UJ$$Ud6 z>Sv;^Osuh99Oc}As8m>e zg;o^=HS0>GoComoefw5!@A~CjMG-hK?jt404I2uosN)0UJ`!0bHO)Ed8;AMri1`D2 zS>68XlgI*daKMaRq3)1bksBjuzz-Ru(x}>48qh({0*Ng6?xG1WZ&KD2J)p$shgy;$ z^-}Ez0)hm2IiU%oRiDn(Gi%?xY}Xsb1AJZb7|-;?_Hh3J=E1RRWaT}ui}uom+DrQg z9A*DN*92VgVjCNtjWhSd=j8{c&&R$Jv$GUGSsd}9Vwt+p$zv>F?CyOXD^8cDV~q_O zD;2^Z$()3sf=x&tDq53;$;~E`Sn*v?TEF6pdrhQXK!9LKiWJG` zbG!=E5X3T{#vH@HzM3{s0Av5=YAww>6OY7s991*kpApL!oP9qd?g?Eb2_*1@1evBL zL&|RSjx zbxsuvX<;U21VkJ58=hzn+4;1N9$^r$6`>%Y4HCLk9STccbaLWEl+=mJWad5_1vUlt z@3_F8*kN94u(A5WNe6+ocaI9dSGqu8$Aa(7c*t4x7%qbe4fsGUv?Ck`%+3oDzpUd* zufm!o7K?j_u}UbrdZ%9GU4xfV~Aa4WUu&1AV!rd6^| z%@s5vcV;KkNGg;67j<1G=c(>(jABH zkl51Q-3{N`dxPRR=NUhrG2Zcg@9&Q@#&IzAy<)F@-Se7rUUM}v^Ww?5tcDbxn&7V| zgj1mlt>Dwe+U%_-!-c06W~?$ykOzJ5%biUz4v$cHVxdTC@?yU6pga648-5Y@z=%y` zyWv3!btB}v_>}*y?)ux&Ir&as#rv?=)88v+w)yOYO_jQb{S|^&#RjfSJDr^Mb zX{{ulBpA!QO1E65C6gJB+ldhnh_YaJ8)|XOoa>kU^hkpyvyw4fBy5k3Sdv5Non1*< zmaGwfIUz6v#|~4YiMSbn=+0dagTxsqrxFpjaqEj9ql{C5n2?%Xb{ScXqk(JH%hNZn zTh`4FRx#+8%UwIy@+Y=MgUEQkF=lV$j9!-285lcri~XHrv!W`#5ht<44jVnB+OtZX zmIXm0!bz9|H6)(ev&f?d2H$hvy1Mq9K6a{_OsL*^f7UO`>27p9aP;czXmlQQKLt-f zK$Z6)fwGwJ1rDrB7_j+IoA;1{Ci845)_FR1X#nUdD$IvXh}>#(@IdG!yPy{Fe2bzx(-JxMQkbuEo5{N4^(0Ysaaj`J7>yEn-wjq<(>Lh`#l2 z-3=g61o})}{!ZI4hW;{b#Q?|x_m!>Es?nv^How1W8Q_l7e3kA5@JJK)xZ5i5B$48- z;~KnkADiAJpdh*iDWSbFZ@$R>j9NZByvW1D1mjMRjK$aU(;M`#B~V!+uFch z=GWA5Hmjnh*3+A#(HXco zQrV@28IF1`X2hBrGp4G3zpnd9NvM8)Zk1=}jT1y)V~jXGuZvZaDgPJ64zXM8a9zkp zXFfTuo{4I|ortOZ4DW8W>7j;XExHmYSEu}Y=@i?tfG`3_65=3nPw+Cjfy7<{rGfgg zsrXGe+HVptL_P4!OuT5W*lC6V2E#y247#2C@Tw-Vat|h~udq%OBarCXoIOqL3#eyI z8HX1YhF5)A1-q6$?rtl;LFgIDORvie`Ge3yNsPCNK$igRI_8>CfQR9-Y5z!^YN7S^ zNK&%)r6O=@L{$VG&wX1uB8cfzlvBmRvbOW3MrY5eWc|0@YCO4VK=zI)_>Y}^Wi@C7 z8`2UaoR9IxP&W&y)%GfN9qCH%FNj9#ERf-vJ^I2(z((11pC1e&8&I#llIjZ)fS9Si zkd~}HNYesC)lx$BZ#Jc>tOFO?bHMLFqK0^S&1Fq(}L(c-z@v78=5q5!{D`& zO?vD{uRZfW8h}kRp3F}BXtkQmPOWw(_4gg*lXCQj+wiZ2(R^X=-|+MBz51;{KS#G_ z0<;BmYoJK?Cz5}JjDa1*4zhzB{4vXN&YgbG$4)|t-BGfwu;o2S!x(@=@FR9`1-terWG!zZDXX+5kGsoGly|MldYXQZCFg!!E#e9MJPOqL#l4U zxkj@7Aj=t}eSw4DxU7;Xzq7fx)#s150ydaG1JZaMmq2wjzFOhStn)~_u?=IA{1;v0`iDE^tTMG>9#>4PN0BjOrnf_$+F0kvJf@6T!4qH>fM}3Vj{6&`|gLU0G)*NJw^LBFUV`~RV@-$ zjz)t8g;L}1@nOHEw&?XU+r;7j0oN)@ah^g-=_*0}L1zE~<0}qI%tA+($ zl-=Ka0i^;qY+7XOC2i|2p?=jjF1+${S&My3QkiGE-6^7owc}I1(jn@vMT}+2$eQNy zBWUitK+?7L^lCW%ICyqLvf$NPzmes+g6Ak9(x}AkDc8oK);UxCaz2T9HnRR0>Z7GK zW+vzleQ2y5%!{t;O4hEY0<~(t?m>hRO0!M1D3|1mX)AWPiwPI$G`=Fj zR~zgUq=s7!s8j+eFg%$DLyIV1Qy3@DMw~9%L8E^qUOa9N=^)%9(b5(q7;=->#z{LT z_0Va67wg&QpDv=76jsY5Hb{G)hOCdWwL36C1-+k7M(wl8a-TSZuvz`U5WebLTcKq% z+g%>QRvTi%-Tt>92|uMu!xQz)_`P4DGbr?|H|o{;CRg&+tTicu(G#z5AA^>VNpoE# z4}W?oGgAzDBUwuF_|3Ig4ggMN4$P42zSga_%E5^(QEfS3CR!(@8coBR5)5j=b!7ImkF#?dK#F` z+Bfcag-H=qsv;v7C2bU`d!CB^H&lBK2vq`k~?yVRoqBcs2+-FbXCwhnwPIw zyeo@QZLq7q{r=sP!?+DQ!^4D#?pH@~@7$`^`%J=2+CtoN{SPDYDrS{M_wt0kZJB%@-FBmHzfaFPr=K9-CdW(b78g>}$R;GM!3F?WQ!d)O)j6AP zP0i$-63}Q9opR9AOvW4bGs$`jm_bI=hx&KmPc6&ttGZV(0|mc?Qq~Stz)dIfu(=Z3 zk*@pmP{0bGdD^E-y2aU$eJP4dNXWo-vl5`L@f{2e?Fx6uhUCi@nmP9^yKl9x%>`>~ zB;W#BLv23!VEb4C322+N_hH(zp59{6Adj>)gcIfJQ zIgR@)lr((-wTSCQX$!QYU(Evg0@(h_z=!IGKgjZV7r%d>Pa+uEQ%?*sdA&pzrHtJ^ zkL;@}0REp(Wisg9UoEqTb=j=^)bDU{iRP$%AdC&8rZNLq$0wB2@SP|Vs>@ZOs>5-$whBw>#sO)2WbI%o zg!K5SZ2{cWYnH4I^jxfFVdE6jq#{M`9#x>WXAhtkzG&@xt4%?76U<4g#0RAnoT$dz zF~Mer16ttkyf#pV%BDD{34BfZ(F+HckyMRr;IoU$J!}~q9L>=hL|=iq@yvp}I!mog zfE#~l1FoA;UhJybulmNuU3pcmG1c%N8fyTxJIo^nB8%yIbFFq(D=tPwy5l|tgulP3 zZNK<|U+SgG$6I@zC#oO0nP5@>dB%TR0NP>XvqEG+$B%$4_=ij`fLDVg?*8|(;62s< zQWoUmy0h`WLl*qvESYgJ^kK_n*FIl3W&4CHdt5Bjx!_*FSw_cp=U3a_7YQWJy^Gzm zwCLfRyb~MWHwEq`)^GEoUpS7XjZlqzAivPW-C|<0ZO!vt)^__mXI5c;5Qk%Us8Yi^ zl$B|RkNc7Ti-NAw(Ye8g1Xo&e-Po+Gr~U=Y2C-}`)ouw=5oPIBU&nI_W|=0kW=x75 zpPci?8JJY{7%0uhrr4@kS!MS9Fzutdtid&)o#K<^naGG zR8Tr4(M37VHrL;^xJ;G$fh%PX$61gT0ostzO2S!zsD?>yncvwWdka3G6P8Y})xxfq zplu$(nMonge2YdoaJAHa3IW(T3fBO3Nc8Rr1Yo}a18lKM9Va#@(!HU$r#v@$(KU)E z;B9<5ap5}kV1KCl)^3qhw`=nG**>R4oEAZsQwW!gvuhx7q^cVSd;_&(aT7cTxgD0% z1x~H=@Iyj_Y(LkewZ)b`s$wl()ja&{AM+f+YGZLwUk2MtpVjPQ9kWYc2IPo5**meV zPOO3-{PA*SH@-@{IQJX}?%z!8zr&UiSAJhw<8F_m2j0%^LVzOw{3nE@M*g#{x}Z{3 zC`j6|Zb>zjuqqC6y(e?1(V-n=7E zS|SH03?t5y5Jyi~%lHhb;5OiLAoPQF#~TX$Uc2JWCR@QQ!45yUc#b)v#fx2cF zVvR5IiL3?xs=ne~m_yku{(v3RS(O&W`V}FER&V%Wxha5ZC{;=#q#)DkaQU5;udxN{ zW3E<(G0I^Pq&#Lcx0$OuqS4^5<1Xg8&Y^83CM)1+Bck=Zz{4<*fUKtJp?AaH`F;hV zGs3Ovx8f;Ji{>FmaJwm^48S%*u%`;ubFN!l$gNtN8YXh7E;H!NY7M;l{6BT9kR~^Q@;YeBb zJj3-U zExv}}I+!LATnA{9<}VPML_jf`9b4}a*UFkGpd-(+9zKanWy%LLJ!ZmM8XIK*L)3Ro zqlIpa%~dM>lIupZ%&KtW%uuUD{PRjn-s09H8O}bd%H8Co&%bbudnD9- zBvR8J$9)!kq{j^Z8uk}!40%|Vc)1fU)|PlD1PT%O^&zbCfOZ5gtz2=MZ=Ab^X4g=W zOlKlysb7WoHYn#uhz45S?FMu0Oz&mbfSXB8HGlddl^7^VXNJ04nAk!AUoHUFd-!|E>^bP@rE>Y7Za2r8){VA~y*#P(=n~)7Pxb^$c zn^q;Sv(HoY7%dgw@2_2|`yVxFkop1|V8EZc{N^Bp;{}q<+~)e?mblrIXgrl|;027+ zRNWJ{ThgZqCWA*#l|0#VikJMkGrm9q+En^!wREQ4z@+Z)bzXh?U+Vm=_6CyxoxPjQP|+YwFZRJCKcC@l zS4N6STjk-o1DnEp@_wpgMc4Zh=Yrspp=H{m1@q)0&af1XXtUs9m$kdg^Q`Ol)d!8& z2Se1z>m4;`9D{gA@(~yJtV{Owb;X)jOIn7>nh%wX+$5<~W@)UFLIKk&1NL zG7I>0om~kr$67qBcO)Nk<57&+irjpYo}7PdT`e>#1hD0-0ID|39wM!IX6S18`m|2B zg*o(K74Gixv2&-%hJ^m3YT;kyyQsEXt;`bUq)8+5cde35YfS2RpcAZ0Hsu1UB(Y|` zS_)K^{NOh*FIKL7HtH}=-X*X6@y77oHw?E;B$SHF8{Up(wCl=P*=kI=ZXYSgmL475 z`T4_xU@z#;hK@8pdg^`Wl^;zi>&IsyAy(SWrIEA}16n8hWrC5h2jk4Uy)F+M8TWFjF1F;2gg{! z_xROJ`^GON#Y?9V6l}7Y`WUyA=!jghLw9axb`WwA|3KpdH~{#y%VJ{6d;H&W(XuWdbO701u4@(rz`2-`_DFXJaAp1A zr;ys%)?xXh^>Gey66t_6wE?9pPM0r_w9|4pmX+Bq1HrObw6e`mu77RDud9XbPO`;Y zQpQ@c`#H3etx!rKg7-pOk9Spv1_UgW_2@o5b(twpvAE5I+bf?q;^OX2&ngRSzS8yF zd+`%GLOX_zp{Az=E}cUok?y?U6I=D(t0d-7$YIy~t{>@N$F87zJvhb z^KaSWlg2jv61DR&^(&w4{dQ()HI=l3dL@uKN!94l1*wMnMOs!`PbwzZqEe0o9sr zZLd;oR>e09#~|B32{%ZwG7D`7au$$&2vX?dT^BR}3f^_WMY49|H$Te{)Xcc(LeP$> zlaMCjb_6}W1OT@PJ7jcpKc)fg@U?yBl3)+v_)i4;5{P6g>QL?ZS$Aq6K0vWQ`wtYm zxyrv$?5EFk0JSwF(U0WMh?znS*_x$4BxbhPmgv+XPQT1kgOtwf(cE$uP9geG8t%u8 z%3%ih?D!P&`j|43Dm}AAp|1{Tq8#0{oeaACsA>CJ?sf5*sRM`AVvXd*pbP$9}e8>@~@wwzLGVe5~~$yKFa8O z>B%dPi}!0?64xRF{PWtIa7Q8y7?r}GnfNe$M4GIso_!YJ!(6yIR9@AlEE~f^B6uld zUE0C;L6pQjOhfK6^6*JoK{TE=>&hk(`G1pnwONXHIVLX0SW4*T*t51TRixw~ZRJ!()LD$M;#OJuK#m#MiO@(`QQB1IIQ4qf4>c|grHetXf5v?A7 znsrq5VSw#*!u%4Oe2mg(uh4G!@ba!g(Xpn%jKx5;<{}`cqC(N}9Yx-m2i?d%Qs!QT zuO<^T3r7F}16ZM%ZS|!w*d}smOTY%f0Y)2_2lt4vu8>h9l9F5yi*{o2Y` zS3?y03`pB^vynkxo!<41Av&-TlSqY|We%MwCa&!bhG$Yy}~lA)h#=h{a2IA_krnbHXojSDU}Gjm!j7>BB=W*aUaZ_C+?@xPWC}A zg8?U#q|X|uK$LI2pwzfTj$~LZ+L7<5)4LeS*sNzi z7BOb5aWBl)a)uJy!yQt{s}iwzj>_6h`Ip6@)^Er``btgtLr3~btDOu`2tW{&ezUQS zLUW1YoTR0o2CimOsYPFCVg$5U!(2NgyUWtmP7vR@N}5to#4G7MOG_!*)OP5xBI`UV zaz>Sa7rD}NJGQ+sIBoC5E^>t>>nw$ljRK_gl-Z!rQradgkHFt)v|ah4i=)sV-&s>< zl)&Lur!HNF37tRG$N<$ah8Kctd`^ZJOkhvqE>&H^hI^z9Y8=>`calgSjpQv-uNie1 zy7yJO`S(;m#d#9DHQS>;uQWWbxkY z`SPA(#z(}%J*K|E=e_n<4cR}E#I(;o9htp({r73@1?fP%fDR;>74j84%473Ydf-cM zj$mq@Aa#h4!!Aqb3Lok*U`MA8pNQw`DS@~uE^U$R53E$Ny|k@{&)VVn%?(cY?0rneiXNGk*|1={@G4*Iz3sK{^ZXZ zlZZxHK3noZ$*)X=n(jp9-Gp>qT*-09l#{Hry}yIBo|l)1-A&K)Z(H6u zI#*tvmIp2B^JQ~Z&P2WGWa$djDn}oBzn8$IBBt>vw`}WdQ5t(z{8r?%Pg*V27Wga> z*W?QrkY$<8Gne5LwBeI1-3fQ2GW(+@jY?>*;#^%@G`f#qA;AGPA{=Q4IsPT!GDFLk z?EePF_GI8FAhK#S*jq6zBXUq!dcpu!AmWCBa3Zc4%NvuLrtw0<03#a%lVNocLCwJ1 zg!I80X01WwJue2)0mBF#a$zWIhi_>*@m51ny{^0-4U~NV@#~!Q(2n>3N3h&r>7ZQp zuN-+VRL^?pG5$eoP&uE-LTfU-huxzZ%LNJz!JiRr^3w*XSjz;0x$QB7@yUr;Se=5tdW~tzTD_e zr(jaUDDKqor0yXqN`0VjU*TR{;A}YxGSiOhqQcK}?dI3X?E^fQ;B%Fb0()G-bQ7==vb?X`G4%KB0xGT%~jmu6q;Vtka~mi!o0+;{(3u`}xuFA3t&x_;x7j~c@ z7pLt*9iI|&Hv~pl`c}Th>DoFhMNUt19$RTHBW9l+BWX++muaPfwg?_n3i^y5`W+>& zyAANRXUsHN6c^d;v**I!_aDu3Y|g5AQ<^-kPi%aV*|B%vM_5LFhRi9_oI*V&a-;cc zrNv3(kRZ>2Fwe)fy#=9zB&mDHD1bd%WEy;u3HCD{Yt;#0YtZe3AC>W8i`bbYQBJ`L zhlM7cMuk+74>x02gOs)*fYe1iAS&?Q%iKDkiMq0l6Z8Z#Fd_r91U?OSfyt-1k*4=u zF7YEk<7Bm>Y&|5WPvf~)Gd*$g`Od{b=E`8GI#xsXQ6Sg$JGfXi=QzZm+CU0y0yrzV zbrSgcY;h@PYuA}_Z9K^8kF_%gTFpuf zx1tZ6Iweg_Hckl!L-u2;zNEn@@RkI{ft3y6qi8J_8%X0ablh=wrtdu1H0Q1L!M(=^ zxAZB-5)wPjTXQ#}GEAh6C zOZ9y5K?*yi76q`2yq&cgfp7i##jL-vogLQI6?(w&(uEFgDwr-4w{4ar!F%-HPC89v_!`Q)lM^NUapz!avuF+gzX zdhza{U;oZ$qH*{2ab%R~;I3!DMB!RG5z)hub`wEjnpc52_XYc8JgeZwdMVOqT}0^vqs-q@+w}e}a zbTv+U>48})B_u8sFe?MFUJm#Evs&Zw6%hXDexYcidE=V z)>fCIdFhMPHMliIZTZzDI zwMa%OWLAY?GKKG);EQ$!W9QBbVe;kZ6r<^2_v>$@W!#V2^zEYMPqsn{Syb1Zl4H3% z_55luX{I^>kY;;9TlZCAaL8oIbuxu!eTvU#9N?nwae7R_&wWfbP{~7Tun1iBc z8>*gMs0vl->00sJE30#!<2L*h7#5;7%4y}ovZI^2NZOv+#guDL6F@eIwULc-q46hz zm~9-|CsgiO-H`hAlP9yRhwx-copBMoGjU6dOa6U=C&YWf3KU&B*zOP0#;_u~8WC&V zmJGEjlHLt$o`h%|W1S(5)s%JP9NyUh1+VF_I<8E!7+7Z&vm56zIQwXc@U-tABfb|t zH@Y#yOpLf>73B1TO-o&&Ty*ty!_Ku9s-pB2>_Jfgz?-eUJ}DdD7k4HW*188b3``!c zE&96KT8l;}0UIRWIK?!TBqEc6o39doH0mo@Okuu3X$-zW?O(7tiu43LN=53_hy6`^ zZNYJbIG4xdwXhEb!Fx-TcS-7=ly^WQFTdSvX!tA^xs0r8+}SHilna?GAkqHqq?!*Q z%$6>|Yz;GN?@^JWULQQgeT7@@krb6BfesUD^4^Cz3e|_R9!-oN(g{Ja4u=SFNbNp{ z$Of4zoZe**bUD8ot!&a!`lYjfFDy!Jmyt50BLD6;p@tPD38Z767Q|6G+SA+DCR1cs zit@^hv{;ImCcj(_a6#_g2fv7~r72HKX<)%aAsC_*e3)g=_%giQAb-7lo|mE_Qbsgb z%1HffY85bRF|4O!Ge3bj5&^h4@CwZR!3T|2 ze)Q@-a*cYop>jkL*==aAtYZi!s0Lgy{;b#^m#2xLCjZem028&7>dlkM7ob6(Y#Hqe z>43h35+84UBWByP$P-`jVg6^e$qC;_vxc8AoRT; zYUH%bwm+Fx;J)3fgf$+Sk>_H@9T+ACe5o#aiZn5H%|#BXlg}B_D!sKVM41_%Gc)$Q zvsHS9wn{sT9zy-oSgy-(YY5T2mHDSs0U#ud=C&U%9s!H8X}{g4l+En?8d1_U$kbSZ ztHCR<=9E=;X0)iT$efE%sG(TLWrDPCy8W&h>zBPe!pAtgR3}#SifV$Ka}jrWTte5V z@5p&?bRWFT;f#yIeRHypyb{7s7oHKly$>&;UrGa-DtSDL)-a1rK2-LIw8zT9OHQ6A z74_QbTHYE0S+-V3UMVZU>Bh$%>rh)KN9hCc@YVwu0yPdF3A!nszCvK#3jw!mZ6W zTKc;=v^Q+UFUIM`j%u`|O?Bph(y03rOzIP%9l$2MT&EAupV6vnQ`HyNdn}GDLDPie zC)#|3={F?yXjS?#t)1M8JnQrA>z>7mxYZ`rdYAZBpj8MLc#~67Ws%iaz1VCYfAI(t zEp6;V;tS}4?mf&dy6{CJzv`NgrbkKC$QI7@(XEPDR2i~FqmBftn#HvVwH&S8*XtfU zPD9HzZOyoe6foMOL|KD!_slcziR_wP;FDO0|CMJc$}F@U`7UBQT9%AV=sFwJK4e-t z;1a*a!UU`D)UR&llycIC#F1p82-ia;Jo6NU>kvL==p*Hhv|D&3AOY=cta;D*90O`d z;`Nd_hXxrJLj%Ue;-=)Rs@8(oEUrUtDFf7NOI!g7IuZzwm`S@{KBIfM1AqZkjYTm@ z%+*IHcfaS=0(k_PiORZNFFwKsnP(6|a6ujQgWqAo)}@pM^@UcgG>P;GRIPx$rFMUw zi9qWLI73bTi$nyo6=1}HwWjz_r@hMi>MJt=5v0D->`x;Rc55DL@K*Ab$MmW_PZf)- zT%WEeZP_W&aK2rmA8T_?#xkw&+_;bJ9NP`*WYYNG=w#ae@-yIoa^)cAE=l&aFoTM$ zInp<7RAX%_fOT{}4z!xRAAKA~G$JMRu0)GC(b184W`1j3W+;)&&f1F9&zle1PAROk z=7Z?78LS9}Bj{{E{OjFesTQ`{2x52JGj$v@;D0 z4XSSIv3`gSyZ*2{l#AG!sO1~QUQYIcr)QY+p2qaBVjX|+<$mU5xKH?LtbiF_lwTvD zL5yRTx5N|+wx>>2avbd)8~bn5xUzOF%(jxYc~^o8V&(}7x^+C2lE7EOHGFy7r$DOv zjg}-+Ij4{`0qByG=sEmzd)dCPh( z>zu=LAr)h14zZv62Eo+rJq}s7qKO}T=EY91@gML^bbKTK9Tmf6%;*=Paj$WG@b_ zG}mHgjJun(lUz)?0b|nI6R0r>J=xc<;zqe;pj58@guPWFOC_)DjXrzCIK(K;23cq; z@JmS4Xwugn>#J^BFp&&><$MlN(YCa5kCw$GfqE=Q2j&R4{~{oazHuPVY)_m#z{Ri0 zPv6XFXjn3?Ea3n4a1ztqZ%2>N-B2vvnwC=)D_&F-;Maa$E>thUu&U<-=EcC%xgCcF zOk1ahHF|&`=X^G8&?J(eK@h^K?l^n~!Y5g2VMomAA;1eB(ll)*YX-T&Pfn)3-OEW+=k!Rhlqf4DCoYx>WlGw*`sYvx@* zzV>eNHuYPV1!e(rYHU!4r$6J36LhkPc!gWp!w$*Vc&sLs3)?=^xEt!y9Znqa4{Ozy zQ$adVvyL=?>aG4Y20-=M+f}E8(ew^z zECbl71!@43F>4*#(;N1_nbqmg#qo zv0QnSAFyO=;0?!dyRZhfzWy>7{_M`3vEDfI2-?=oeudTa-z=ZOrWhjG>aY7^ zA&U|-^0j5^^Xy9KE$1^xdA^+cDG}kqP;VRMF&C#gyLs7W8=$PnTRn&_Q=Q>(*@;6j zXzjBX^6M*v6@c$y+wgH6mkdgty;qTce-40`+`_ zibcOsCkkyJspmd=i9_jT|L|O&dDf>Tv}RGhtU&Wcp+c&N>UyZUct{4s<^f&sd=lK`J*dgkS_VD~->GLGSwHwJG18)L%S5`c@7thAL-s+`q zZM}8}-k1cA?Sfjuj7<2uhCxPEMkw~#zr6m^%DOTyKElL{s^9Bze5>f|GsmeNv#~^5 z3s*?#Xk%9~t)mmnQ0d=x{X$cXwC6z8sVgRuwboaC0wgcNDy9x$k>+*wBw9I-U?+Yd zwXbUut|bblJU0?~$}9tF_w`lQjq2srR;mG&`Mf;WZ6iGSbRw5|o9!QncRdc-lF~5z+-yGT3sat3yT#&+vsP7H0LJyeVHt^(kGcqg*dH_pM+a#ok)V zmP7gCh>AZ^MmNK!MW+h+8lZG}wbe}6Ttf8@IK9Cx^23UWU0j6&!Xh|6M*^WRg<2I( zfO`T+$y>oi>K%ond;R>;tqOjnhqb9{{q9LU0nBZfBFTGmv zkq+8otJRSXYPD=p;B`Ov#lE~zC(Vj5b;bSz4IA-JjnU3LXSm0yJk@L(Hl%P>X?3xw*YDhQ&2L=8CYe0pD8$zF!B~37 z_;+VF1B6=vFLYB9v%lb-r$kH?t^_GwgvMiSEEKROKeISoTafVSp&vQ*ZfC(jF?Z+t z0Oof*WGR5aG6Gx8<4-%NnfsZwN3_Cv*ofV;(Jrd$Qc0cB8 zYNMp|D|C8K?FL#jBS`jij!-YU@b?&sbu8vwGzJcGf2}82cBB88Ze0`I*QOEhu@|3A zS(xL43cRO`xaAnk+T%j>;hIsD`rCloska+y0uyBne!vr%HuDs)`E8BYMigO`J*s1x@oryFP)t0)~R>_~xz4w5^KUtJSXBHco zuxuv){@`WFYZGd+C^69XeEqP^sXPCBAWVxYRBhT@SbYHtfYkH1VbZRgl9~44K?a3N zV-)4a-ApY%Hffl96E_`h<1Rsj7MNitc_OfKxBggnjs z_4V|}Hb0#>4gykd0_WMXQnJ(pVYe!kN-|X#qg>eI$n?iFlJYr1ZXU#akI1$)e+@%` zYtyB3Ae4L=FnxuZslt)5L3^#gm#$y7X=s{=?yGS~W&-Fr(`ZPZzNo+ZW{O93Mfzmapz79;-*Q5Hx~N7;P8sQ`!H?f2!!D!E z-p&qxR(xcm_Xy(3;rl?0L^SFWd8DcReS;HBsuqzcm3dy{H_RH-;?o99eEityWM z4`-O{D|yi4IcVzr&m@+y>DNo{=hBk~}_v)53bVR^9A1flO_6%pU z8c0*=t#{*R+jqnOlln4ZHU{^taFN7c)*sx;ZwUx?`-qGu5NU?G_Eq$P;v|8ah5=lp z=P`y3O#lhpDN#~PB`*J&5FIb^vNGFMR-$t6FGgb5&<>|{xV zohV@TD7CxW(!dXgt)d#3z9VOmOKNOi7MA5RDp0!H(}j_(fREQ?Dwf;pA0^RD0u*^u z2=e9zkhi(EfUWj#>mWBj3bIXWbIDR*O z)^eKn16Xp?qH#_9nMkqG3Y(MU&Kc#MTLFD!hP~a319cXKgR%Q%y^iGhk|P2Yg?{Cx8diLVz2Cxq z&$_|C$DMlH97LOms2Q8~G`&kI{ZjdK&qN3|z=X8ZJ43606%u`#cEtH-;G#mvo!cvS zw0-84zV0{CC)5qvI7b`s#Uyn(wur8M!%aMRyT}M6J#((?T^K{uKE{4X}N3N34 zWx)32ibLpVK;{0C+*c1-CQmHQRBS=2q8+uw)N2`eY{9LJty}ck_6x;MOb>L}^J!zl zemkekxWr6*{-q`i8<#gT_STqWGySO+4+LmCaP1TRg%GAZiDDY6k-GHgL$>sDrMMB% zlQ`mq2WFK0!%ZG9=1QYByz795CS_8@CR z2dipqzyNfj9GIkqk`G-sGLw8FDrehqzH;1Df;iJodKFNP7atwNxS100Ot7lMF zz>7(k`Gla^2qOAJ`I_i2K?{;6F<7SOmxAn?_m@?_)A}j^FK(GcGB!Dls$+#zY}E zrY5Gw^i8~-w!OK~qykk|q0~#Ynew*F+6ho|Pc*&MKG#l}3-NxeE;(*eYkN26=$>ix zsm(#HD(OdQo2~WTIeeGsviGD+y6|s=+XaE?xNwx?j6}|sj^!{J79L2 zYX@Mb_3&Py+%qRZ=rl{c9kJ7-m(Vtx{6(@nf0Fye0yVKXz<#a^R&^hkjEj}(IqVeD zd<~bZ`HyF4!WqI*n`;&#py^}He}ij(*n^<|KrXNm{%{`IU~$G@b0^X|LeYFKDw+?N z-)M`0FI)`=98%Fq_ha2E8xTbQ=?5$*+j6&*EdY;J9ag+b`aD#_4x02g^wQ?5bt7(> zo(orA@*7x$r4bdC-8wWas6N^7_i}MS#M>vT{B!>xgsII5oq@MuE)P;uU9?IdjC2$a*OI5 zn!R2DWUmuR{CoB~PwW3k_PVNI_5|jiQPyX3SCqA(FPO64)pi{}y?}(RZm_R>(tFRH zwihy$e_m$uyt2Vz8#{NWGM&vxRy1+2FQYJ*eytA_Vw&?HiWqjm^1_1o;aXraw03_0 zYIm_;Z}&%#r~T>8lp{{>t$V?g#N6X*!=)C-nZ9@yhtjhWu@cq7k+&)>vfsNK(~Sy* z!{%U@ZjVn8NZ)N>@tM7|eYEkT-?AnnLK?(jxK9R-V86^>FpsFkLWhoL4D{#h95)aCiljnW)a5-cgLUdwpwt3thIy76@7QQxYcRj3W54N!az{ zR&BK^0@t_3F#^&F%M)+0<035_RgD9KM4vpb1)45;{*K+aCgF8K0R&@PSdpJcAlai- za|ez9`{3#bP9@{6R`aggp~&iDv)DYbvUFO!wbXY6f{nY+K9C?qmw7#QW~RhWbc%>| z6D*loIxUD=Izo%i9^cOv49^iOd`eKToCZt^bfa+KmD*jg6sXSNO#-nRU@0a6hPvVC zWrPDg+0erQs*IA1BHx=q>`a%f!RtO5n%8~9c=wB7&<%vODE&X4ck(02Tyd^kCNr;Q zs=3wxM|vulpzcD>?BLsy8mqt8l$gT*obSabSK{*~Z(e_jVrI`DRZ5myJQ87$(QZ;!xsCyUIqY7Hc@rCXiNfD6I3avPzt=O10rVpgU7rin^iud ztL5i<19|N)U;Q)K=5L>cq5!;ka4pB12WolUXK-r5RgHm4-B$(Un#Zkzu>+DEMm7&5 zhy7u59#5t>BiEKdHV~(R%TJu3 z^>h4vqlP!)uh}3Su(<=s_>~6C9pH@L5Hl%9O@EI0^J&omF}-7PZX4-`s6YU^jX^FE zS;ED$olJ}Spyi!1OKOhNC-H=jZoTR6gNgr4&cg=;yAVu=D_M#+@U4?k)QEo$s}Lmg z1^?$1o5{%Uiv;~e8qZOlG%*cv1Jk6Xsamh@-3#d04KiJh@l+%q{>zonJeRol)jipX z!=MYJG>Mn@*ttyuFntaqsEYGIW+#p+PH5Kig(M_JJ ztkdb2hi&I`U3d7;RQEo*xMSY=X|%pHR4L$*iN1w`P4VN0+S^D5LzCtpMI}XIGy1P8KJGmI&8z6GE&<0&y`|9jM4)GA4z-B1#Gfjz$gCp zviWHD)C7A!9-x=Wuntw+C9ZdWc)eHsY7%spB4hW;l5aq|G#B*5waC22@SD|l|jH74Sde9wE-~7fw2(R7^{I-i0@yw0Zd7O_TicAZTG7TT7 zHCHoWxvVe&q(5#HENiVOm_;7Ueb_Seli*hJs3^NRI%YpvZS8*Y8dd#SJ$}Uhq3$c7 zs!qSIB}I^u1_41qLP|;+q*PkzMpC-F6p@k;=>{bP>AW=3c>(F}?#|2iyIgRbdFTHw z-?hH=#hRJ5WQ{!c`NciYIeYK3k3uUcJ>b0Ml@3u?&+&rM;|5*YQpE zaRj`twn!t#-ozdihky2q3GlnD_5zcL9zq;h_{vrPmW_;4@H8+CQ~YZ27gHw6^zol% zHOorCHlomp!rpFgCu*+RPvnfqDNkd_xO7wbk86=EFbp#T(fHCX0GbPlDuclk?vIM} z#K~+HvQWz8-WQU{CH!2WGKeXhU7%te^wDm45Mc7;$2a2+AOOQKi0kf}6^vma%T|nc z*J^9lA9OanozL8U^NIdLX+dd9m{j1;SpGzr>I;xiBD!2ec z+KjKY9&*?NHXjnd@>(F=G^ND>3wC+=T%^EThV? zCAlmvK+rX~Tqhn|@%gT8x{Zh1G@@XimrC zj=P+jzR=&Q>uXNF-NfuD-K}Z>KrnK{p`gnEkxn>UeUnM}cKy+|F|yuG_MbP0s{&Ve z%qsiA1j1oif3I?3HI`G>rT8KX5MNmQzKUAoLF|cq-nmGe|5!}x`;Vn3$FF^@VcL~n z0T32%E%qt)G3f#GjOV34vWU1^jicE zbs8{n0{T2rMowO(5_=`@__89N$5fp=OKE!kEMUq?;W&JKZP#i{$l#d9?Edvc3+eqH zHaUo-v9SGXuw4iQI}zRE%Mn`Q(q%X(#IBgq`Y6s@!CqJC)nm24QS+^SSSAiV{z!1| zd_Qn~gSpqPyX%dLsJR8M-pwYYy0E)QBq<>lXzDtclFQPG<@t}Sv=Yl1re5*j>)Z1J zFE_BkG^LbUJ!|sY;g`A(sI0`tE5b>kG0}c3YAbb`?-_2_=tLiRH+udoDzC(pbd?^- zd#cm$gtDfUG9F$n*O|NpoXG)T(gu!)*{!37Akk=2nX1bNysSdQ>@s#!c>cN-s$n`w zUsIt90=f^}$M?(5J@!$ikP!Dw@@4v3=}oLV)H+g1g*Yhgc1LEuto3AoK|JITs^Wtj z0-(r6liZ#V;_63W#2-05b3RIw(Or}#We}pUEMpxOAT(j_`#ZF9NxfcM%y2qOK)@5j z44nQpW_xj2Nl&6*EjEvT2HeL@k_cm8WIUK6nC;qAVn2jTH$3;G*1mnmB_MnS;aE=X znTf^`p$-f<-q+yy^$b94@pt782=Ueu;9&9=(*6818Ymr<0C~1KMTk zs3i_X-G^|WMrV$aDpE$P4QE541vO>X^u0UzE|cGs^THva1A%o_*YP z+fx-eF0PrG39hQ~@ZA}@$Venl9o_kC6U8|pw^bxW_(dghGT;9^g6u}EfgtZ8Y00ILPv z=ra!YoZb4|quKQ48}kHo0osF#1SivzikPodZf7R!p87x8=TIO}IMqJDUk0b+>W^0^ zKISLGMpTMSK6R%kU#&=9f>hoZ4}5N`iKHzXHra*IY%!57T}64c))UTna!eVmSJ;D71>fs@xk>2aEMeurz)AZ-_W|TwPA>BJ(Mx8Spt8 z38??_MZfFrkMve;ZYrUX8DZxR2fdQNsjV&rll2Z4MknCWNP&6f;Sy_@IyGK(uLzrX zye0D?0_SOOKC?Kj5=&3V%IC6$_AYPJ70L{NF5NWoE-85^b{9S;;@SR{xUv zS`lEsEJs93j5N2GEyl_9`7}@RIN*(bx0+x~hXb_@^a?Ve< zXeGq#`b)6;@~Yhq_M*m72RR(*!`^g18Xp5CdG|M_i1*bL64oa2fwCX1^QA5ALss#~&Ij^kK){yuXrRs|w&OHeRC z=W$kGIAa^$j^m<7PI?pm)Z- zlFO7nKd9eC;t*6>?BMKEURjC`7wPaUrwC%xnupu_l%hWhz3BXaDZb3@U*EiH2x2t&@#yMm2J`@87S&VYKZ9~LHTHu=tSNg0+@s%Cw1S#);=L#I^4cwQH zmT?fDjckQ+lI^|sI`PAnO%}FV+~J*#o5J$%ee2R&0vfwCXU7-mzj{B-6cXoP`Z4$& zMXNC7v+LqtE^dffNZ&Qp%E2DlPMN~zgR38EN2`9$(~%?+uoI^Tz z;JM4AkyEfuo52#gYCv2Rl7{*XS%ah-$M4+=vXKO35`&*-$%8JQ^X@2Uxe9wYuq3J2 z6M8SXDwMK}TZOa76@)Dv2G`$hQ7}QMnEjDxWW8I>nkYFBj)nsQZ%Z7#Wni<)B+xtq%%mSg|X z#}6G$LF7RPu>eShhHxG>CV-plvT8BZU_JveAej%=!RPxhx?|k5KF~aQ?ycfTT|P5w#>Uj;UAyOuCDgfF@t>! zH}3=3sO4NjU66P%?9CF%yL@ymd@G~C{pMS-K!*!Hxw0K^xv76bp z{WGhXgjZZN?qSbQ{z~-SM=ldSO4Aad=7o`uw@WnTqmPKfFCH@dh@EO~#lrB{swg|d zH7&5!n)8wRq__OdzRnGwRAXjpbBX2P{sjfkn(hS^E!o)&#X<0@{QAxVH!a^4i}_3}}2wdvz{74s`|oF!IvpdvU3wmXW4pUp#`*v%mkiyB6@stsnB;^pN0e6KlTlBHp~)<7l<5 zw>@z3$;B3Z?wiDfpAlLaWGVKgS|!OlFCEPoa>?D<)5{T+tJ-RE-;Z>7uUTttq6vG42#PV4{C1pJd@?!owsd$3*k+DL0A)?7KG{&mN$tXJ zzca9VLr9mG*BuGg?C z1ieBudWcoAu7vW_iASyOL0P6HJ?GT`V`I3i!HA9B=gp>{%1S_@l&=F?%6i|2)21Mf zjjhE&n0MvtQYRB2ThAZjEjK2SQg`Y4G5Y1bf8iI!&3ua=Vny$e4?|*qEwsiBEVOzL zx)3})&W~JCm72`FXYL1NyrwoWOoF%R^`7wwy2?@9+XxkMm7_0LdQ#futlV1Qp=M}4 zeau8`)b~{3cvozdf|-*^u2m~319wy1MZG1uA>dYH?`0OP+zgFArXwsQo7raOl|HcB z5I%#^#WaFsYM^LlEn^1q?UYx3^{tj&na&bD!kFCr@Z14BYDh3#I?g|xSGe`nqS@|! zpRD9Z^Q|`vFV)81)Jx94FU&C~d|V_TjktLjFM&^VE1=3fCHY<;dsB9!>?7EmX1mL9 zTBZR!1mm$B68I*D**2seEX9v%9{9Be2CIanKNVn~n@Mk(?hNk6YdatvqbRN~BYor_ zXYs5sM~p*!FOxPXKTV*;NJIj> zuvrw>Z1D!WRWRVi`kf9IoGqJ$3D9$_{A4rL%!H{5BnVDFUd41f6YPGV3%=#I#oz70^3 zj3T0+e-Q$&NujTFp+T-_~TWlRSm@KwxE2e7WSzR`G3*o4TU?XHw0}iGW@Yr2GrMGSdb};HyAZ zzp&^pWbP!Nl}V*6J{tc}p|?wT?qX`BU)8OxrME11TDXI7R)ANb5tkS-37PiDU0BC( zI^JZ>eGNYtxz5ihsd_%c(MDeX$oY1uN<<_Gukfho_7SFshDsotgqW1xze87qwPCGSTwB43@)==>ePc$t-;w}UO7Nn^?5lJy5{yn7 z=Hl~q^J^Be$7EpCmc=~l3o3R=c|u(Zi8Jd>As|K<0_xjTpi`q4yVz@kYux_yvqA9s zBO7kcq}3G3?r{vJhIxB4>M7{kOo#m)KM#17`OzFYx-3oXKj8Gk5h~&MjpRS}3VUEZ zi?~$2#9{QMY38Y))=GMp<+Jq+u7Dfmj9nNf@TK@O))gE$me4Q-92%D|UZOXTfo>%` z$*kYXjgMJ=BJ0YXo%cHD8QBQm1py0v6lEbr?-mvnM1U?qtd_qcK8U>MLu2C(JVO*b z7=*!~4HQIf2kTLMaD!{NXfhF)bExl_y zAC8rAYdB7N={k*A8v&we=xjO82U;&%IJ}ge3%qwp2L}inO`_5G9LS{)V4?eMET$6&tXyE`?Thukx=!W#;a z7?3k-?&i1QUXmlv4FZ~N4Xm@C)T0t;i4<@uTRcF_BT!j+5FUy;SgZT?IT)ku6a>Pc zvO(oy9t`xnzQkW82&477)M7H@j+t<+sDV1@-bjOgfawDzX%s2~{+G6&%bs0`(X4!f z7h)h_^zm*e=nC>O5_2zxTOW7qW4CiAxkn zJPmI$=)48K><+Jr{1hOe`&}uCCV`X3V`i^~9-WB3?qRqS0J8S`9QG_K;4=`FS<^Q& zfoGAPOANnIRR6ge$&Vwy%{5uIxidWON#~>?9A9LaZTA4dLk(_A=aNQegprq3aAwI9 ztPBsc@lFYHBDs`)oPZ1Zj-6xhxvhye7L>v;c>JO?3M5F^&<+cEW#W1b*i_5z&Ny~1 zHn#$mg;VEcWzo5yAY5x&@@VAlH#FcS3x9L+nj`jmDIRvWX9?hRrJPB^YFU3yCp2QqFzL{7?GW&0_ol(m-)GD3-&J z&)X+vjylv5AsTz%PAEm{`{Q+WQ@!g!-M|pc-_6osGcjA)LX_>Jl+PINpuMJeh)*nK zKJ)cHbiG5J2C3q?WX${3oQPy%Pu60X{(IFXEJXm0pRCK{hy72FpFIyv1ul1IJ9e+d z4By=c&LcjhItlvV(=9sJ=e=eJFR3RuDsJc2!{8)!BmrrBBiXZ&#`$#Z -B0;c{C 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

    9=j?*@VOF{b6N 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

    <3=>0x?rEvd#d)f#)aA3 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

    RGIG-MM9D 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 wjyn1YVG=mGpnQA46G3 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⁡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

    LSbcVs75j|Yb5zFzbSfI;qb=$&<>wE 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 z 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�g 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 ^M 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 `XD$$Dls;uf(%v*U)tlYSvn1G`s)sEb54ZzvIM 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%0D*~Z*o9|ki%$RKp8sku3vjx` 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

    HOp=3k)Ug7s$`TE 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

    N3qRy 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

    Y4wN+e&w*p3oSx+Y>B)m)@&SxiI+W445}c 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 z z^gOl;xa`U;QJM-(g{3-eB>WpHR2Sp97FPxuy-!h!b88YLcE~b+k z|IxPeU3$O3vCrh)mYJCSPbg><2kkG!9p9*0=#gW{gTXADrB=15bL~p4n_op^t!Cuq z2JuL-ypBE8k4D%hBX(bTolM7zNwxEdnlzA=3rAONiYK@w=}yx_9=|x>S|OdB_+THC zQ8vyR_N0sRn^!~?{ezY^v8>%N_QkNimT{%!b<1Z4Ph*7L=uTWNx&x0HAbW%?Ua?1o z@oFT;OBuuJ=F@Tk%cjmJHpvNiJz810T%(%}tK0J;aZdn`S>@H6_DI|#%*(OX%>A9c z6xJHQcN|=%+Yj>{uIX}e$#Yzu`ueV$-NBaTQCCd7GjAx*VR6B^Y>0xRVg^_&rPeza zi=^oJ)?s>a=-WbyLi1q5eKK4kF*bIxsMib58*lZcbQ%Umck)#%z?-^`dgsq~z${zj&h zbdX;p2V-<6R_em!B?0OZf!9krR^YUh8ZG45hTC{w#21LUy8XQ+mPAj49lH~rjlK#~ z1#!xOPT*~>qT-drLS9K8%@yK(iIX+Ex9TMU?fTHFPmH!jEhoiIkR*^}^68Wm>bdcu zql?mw&T=ovH%@_K-`!YsIDj2eNiCR}mi1}hP{4|NfTQ_fV4FA#m!z$Sf!&W+fMfTy z9JIkrs!{QXGqRDZUIBc5Q@kqm*Vy5yH*sMX>;0{|&kJmq-1fmqg0z9)a?b z4*`_dzlVzo%UbUN^!)eu2f)SbbAX+_H=Ob-;NrbD=wfB-)4)gQ)j|7Z-PHU_M{4aiQyNXS@&!b4s&yWXxEX4=G51K_ zUO@d(yF&q7eK6Q~H5t~hdclDn_iiIZJdtg5;1s+wi4DrXTyom!zFdJ=exjyzu*t@F zC~fdkLDyshR+bvN*es0Gg|W`m9tY?Qrn zF73XRs)j}26jR`Xm8`tV6!qlUxU?z5xx9_6a3{=op>ieKvORCekO1+>b8Q{0ss~XX zXv0sVWrn08xLK`X7Yb|ffnrWTPgQbJSZ{QW5j4^ia5jDj&ODazH^ekrnr{$&>qw(?@1@^6l%hz_m=7MGP7`w|I^erQhOplB=VI+F@* z=uL$9)J$t9FJDPSrYFuYLsK?9VpVQ;@&HRiNGCgHhkwZ zcK`_|so0L|Vup72X}c?;MR@dxSX1F90R)}_22A1R&!2w6{uU4B`$Du(i+pLp+7jT9 z-NNuq>BK_N0%`M(w3skP`c*3g+};{1qtH;gV5q~!5cZVzdTP7@49#~*EWy+4VM7QV zFA*5l0abiSScDWXb0dDug0sBWL(PO9*u6dfNrGXfThlG{4P_=BCG<*1O@hmEmC0om zdaL?ebvmz{%)QB)g9&8gyEPEc0x$NknW<296yG63vYECT0AR>L?=5D#I9DaG(fEja z@wCC{*Yc&VP9I0jmx8yv9EHo3s+;P?j*a?6aul2E3i3-r;Z$f3;;^$$#(})vyEI@e zS*wj0mfz{Tz_>9x&Yu^S3m#s0O4zWZ=;tL|It#p=j@h$>HC`x|@3=k}i}TQoh2$;z zblX+3^+QfsP3s*g2rR;Rluu2OV(LgkC^k+z-&7xL*idN?Yrj%?Q*@qHVBWB>TjWl~ zb>zk!+lh3mZ*LeK1z@XrPl^O8uX4uuH#}}pLOYZ;GuSNe8SKzcj_LZXq()7BLJ~?r z(w`m0P)Hxs#d>>L)hVXZdw@%C!5S_&*eX9FXK5ecwq7(+xil|T>kMmi6umPwRMk}{ z_Es)yvi182raiA+bt5ANO)1>x$GxUKo6szDI7cv9eCdwe6c?;lU~g4rcR4roO?rFa zx4ztw2k@<>0(=f}?%Z>~k!HWV-NEtrxw}Y``GEdG)~O>Hop=f8_0l=z3Dn$c*wD$z zvrlOm=gq&_Pi-jLDw<81AVZa(Gd*e$+c14$@LG2D$Rt+iY=hQf>ASsG>xy=NSX#Kw zgKA8Ts_Uk+rN~<2aH6=)5k7hjT#NCe+UoW!!BeGgftMqKk>~_dKq!Z#5;w#V8@C{@B4s(;@zr~H$>`JV`_ zo#EKc5YGn$bOA{IUxNsW2RGm*pJ2I`;AJB!2}_0b5c*(zrUr37XOS20 zxG^Wy`y238LX3x{)JkuhTnvpnAm?E?YglEkd`)~6-8 zeyYcr^plUxpQc@%MLn!gXvySy&`7y6WxgX=+SG^aA&9;90S82Tsi;$RZB<^g@^&brC=7Ju$;GjmD?fN}#|}O(S+>csSQ5@~#~1RS)2CXDWOS z{vc{2x)$glyzVbEvf&X>gA56^GRIxC zws2s|Q)N=Kja%4~eJ0xQSCe23d6t4kMv|CRP8jdPDo+e1b%iYJuh`r`OpA_rD%iiK z--TV9Zb4bZBbm%>-7rE-IjpyF^szC>Qw25{mNmn&(ZGGUB&%WZF33HR!KBW`*$<`F zJ?~@o#E4&oNj_Z>I=F;HI)pghHL$$~T^D$M8%I8O!0bTpa3=}W{9t)D;(Ex2`2uCv zuA0^Bd2{}J=)Ef*0UAlrLA6~4S06h1v?y+)$mQ&Iz;6!^b3T5)EQBYx1NB{wP~2wF zZ7?X$D*62c6GsR`HZ8>wc-||K{O2>Qwxo4O`LR7d%&}2icdFHyVhh7-r|Brl#86?F zp7k}q2VD`*W+xAQYhZqzUlw*wmFd{2MwY>@R@E0zsb5R7e$t}xsJcg)3wG_M5l|qC z#A1O+j7)J;F?AF@aV4FuPE<%`Wg!zKaYcA-jORub$)|OAayneFhq8HhmweibgG;;W zj>bhk+41GlV_N3POyW;M$Fxn-XHW&+rw5)lbK#r z3NpMOzf>yVr`adjkgwlpR_caHSx@|02Q=dOOpl+d3YJo5`_jSuK=16>yTlBI>sx%j zlANcJL_!7-P#zY{NkcgZGM+64P4w+i_)mBIUpCw(@VSC#w0!o1fH2|;@rD?^97G20 zBy~oIgPh2s-!->RDL420otSBdo&Di!VkXot98YbrTyIVrZdjZT@ri$YZ9UT8mNB<;j)ypn;1G|yu~*0FZW?@WW6MF|S5 z1-7K~=Meno80Yx7He?rr3Nhox zi~4(ZL(}I6o7;pUUSS^w)c8(paPH z175P~%531lR+pD;0@H7N$NPDP=*sKa6h}jbnI@rd-hhIVR#(r>Jb45v(`lXH;kNH%>27KJ3KUI1{J{cf$ z5?4Zx*cQOKRf>laJqh2|%~O9eI4CwC43EutddSU5HWq_V zwjV3;PA3Y8F>KFmWmSDpTx$v!6?H623ZRM9mDnU3tkmg}2-2^PoEHkJv#7J7LB0d> zDXDawPm3&0dgM>;#a7fX2e27`F<_{#ugCcxwU5|m=x#L=B|C>IWc?1q=d(PAc;I@l zq$^g1U=;F`Jh>P{LR%b&A-%+HPtXh3_aLnNLyki}sy|GzKD)^*PotS{c zE>h`ZBJ0i?=B&IkEmS*hx|){lR1rw(L_XRTxtjerlpk$iZE35irY_ZCay3u5gRVeb zO`Vj-XIj`MU}`?#d1gzi(BgF=CDElK6z^a|#BS9&p@LVkaynS^8&GMp${GHXYttnZ zxFoJ6)#iPW`}R5=AQQ!P*r^meQN$coE>Xj0GCz*z$Lf**KQ>>vHFpv#t+va-w3WG8 zqW;Q(Uqim!aRS*sT}{tqu5MRm>@_mRsn_qdCyaO&2UqV5AY;u8#8JvAqcJIIm~BlmXw?%>ddbTW!7K^>W}SFR+JrbWrhFW+^;% zNlq$j3B*YF!I@piVYg~(?R}CSHu$$VY8OQx&c0se+M@NS%TX^*PtYMIY;1x_UQY$in`N zXl~Wa8)Lhpx!aCbz5=lfq4g?t+1Xmyhi@O`M()(+(a;^-3O@RM9j!H94esmUp}G7;Rvwr&08kT$y)EyM8Rv zPh3pJ&&QI*gW`kFt*r$`SU*;K;$|tYKc~9m2^1T9fT1C(y(Ly=IPZqmJ$u++XtGQq zU4UEhQ)nn3SvPwtls++J_P*DsQD9N&P5AB-XM|fX#pkytxWybv-Wwv^Bs`ES<=?ij zHfN=9#|6yb>q761{hirPt=Jw-m$IC-N#7=^&*To${s<*wimpKw$3wyxuIsuQ8%^Ix z7Ir!H(J#$r)=kMbpg)ydsUw8yLZxEL(~+@=;WzJbrAP#%7Ybc!ZuJuBC{f3V-*zcJwPb z_Wn7*X_B8a97Tsrm&+`-k6`lM)iu@(uKU-$A&)qAZz|lNEoaM8M_J7%evfkRB!WO9 zn5kjm_@+u8B9)W4Z^-YTSUGc1M;5!)Gs1E1nZ>)Da2_x&$(&U;kWXjnG#u!)d)Tva zn|7w(H#R`BR_48EA8Mu}#zAr|jkuOWY;)K_W^rgVj^?c`Sj&H_Cq$iEzmWg5=KMnR z61`K;7L%VC7;lM9sllzvDM1@11J5J6(}8xWInewGDL0hPISJ{kym%$LA2!zW$kKvt zCc<#gXDUMiV-3b(p+{`SZEi6e>a-@$koVF2kRTm}x)^CvvpA-kG}EC}mUPa!uC&pj zmafy$a@!qj1w&2RAHV5~z9g3hl)5(XOMfpCWT;2ipC8Vb!cy4g;e{^>C!3v4Z;PFbG#xh02 z#�wcxUxdPqSq!CgGET9JH!@Zvj3tF*ZW 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

    &E@|!mNU2**r30&Ng~= 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%0DH&zQW7pc820C5#MYdMs7kv1jZw=N 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%0Db>P^4;T54Iue$NAce< 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

    fh!=%w0UC|rk9^GmpiVLeoF-;L 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

    &G;Q|G4aM8hn?Kzkkbr9z-MD)Mk36D?TKsVr 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 Date: Thu, 3 Apr 2025 22:57:27 -0700 Subject: [PATCH 5/8] final adjustment --- tasks/construction_tasks/custom/tasks.json | 254 ++++++++++++++------- 1 file changed, 177 insertions(+), 77 deletions(-) diff --git a/tasks/construction_tasks/custom/tasks.json b/tasks/construction_tasks/custom/tasks.json index 7037d45..f8a5574 100644 --- a/tasks/construction_tasks/custom/tasks.json +++ b/tasks/construction_tasks/custom/tasks.json @@ -6,12 +6,12 @@ "agent_count": 2, "blueprint": { "materials": { - "oak_planks": 120, - "stone_bricks": 64, + "oak_planks": 140, + "stone_bricks": 108, "oak_door": 2, "oak_stairs": 16, "quartz_block": 1, - "glass_pane": 7, + "glass_pane": 12, "torch": 4 }, "levels": [ @@ -29,6 +29,7 @@ "oak_planks", "oak_planks", "oak_planks", + "oak_planks", "oak_planks" ], [ @@ -37,6 +38,7 @@ "oak_planks", "oak_planks", "oak_planks", + "oak_planks", "oak_planks" ], [ @@ -45,6 +47,7 @@ "oak_planks", "oak_planks", "oak_planks", + "oak_planks", "oak_planks" ], [ @@ -53,6 +56,7 @@ "oak_planks", "oak_planks", "oak_planks", + "oak_planks", "oak_planks" ], [ @@ -61,6 +65,7 @@ "oak_planks", "oak_planks", "oak_planks", + "oak_planks", "oak_planks" ], [ @@ -69,6 +74,7 @@ "oak_planks", "oak_planks", "oak_planks", + "oak_planks", "oak_planks" ], [ @@ -77,6 +83,7 @@ "oak_planks", "oak_planks", "oak_planks", + "oak_planks", "oak_planks" ], [ @@ -85,6 +92,7 @@ "oak_planks", "oak_planks", "oak_planks", + "oak_planks", "oak_planks" ], [ @@ -93,6 +101,7 @@ "oak_planks", "oak_planks", "oak_planks", + "oak_planks", "oak_planks" ], [ @@ -101,6 +110,7 @@ "oak_planks", "oak_planks", "oak_planks", + "oak_planks", "oak_planks" ] ] @@ -119,31 +129,17 @@ "stone_bricks", "oak_door", "stone_bricks", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", "air", "air" ], - [ - "stone_bricks", - "oak_stairs", - "oak_stairs", - "air", - "oak_stairs", - "oak_stairs" - ], [ "stone_bricks", "air", "air", "air", "air", - "air" + "air", + "stone_bricks" ], [ "stone_bricks", @@ -151,7 +147,8 @@ "oak_stairs", "air", "oak_stairs", - "oak_stairs" + "oak_stairs", + "stone_bricks" ], [ "stone_bricks", @@ -159,7 +156,8 @@ "air", "air", "air", - "air" + "air", + "stone_bricks" ], [ "stone_bricks", @@ -167,7 +165,8 @@ "oak_stairs", "air", "oak_stairs", - "oak_stairs" + "oak_stairs", + "stone_bricks" ], [ "stone_bricks", @@ -175,7 +174,8 @@ "air", "air", "air", - "air" + "air", + "stone_bricks" ], [ "stone_bricks", @@ -183,7 +183,26 @@ "oak_stairs", "air", "oak_stairs", - "oak_stairs" + "oak_stairs", + "stone_bricks" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks" ], [ "stone_bricks", @@ -191,7 +210,8 @@ "air", "quartz_block", "air", - "air" + "air", + "stone_bricks" ] ] }, @@ -209,15 +229,35 @@ "stone_bricks", "oak_door", "stone_bricks", + "glass_pane", + "stone_bricks" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", "glass_pane" ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks" + ], [ "glass_pane", "air", "air", "air", "air", - "air" + "air", + "glass_pane" ], [ "stone_bricks", @@ -225,7 +265,8 @@ "air", "air", "air", - "air" + "air", + "stone_bricks" ], [ "glass_pane", @@ -233,7 +274,8 @@ "air", "air", "air", - "air" + "air", + "glass_pane" ], [ "stone_bricks", @@ -241,7 +283,8 @@ "air", "air", "air", - "air" + "air", + "stone_bricks" ], [ "glass_pane", @@ -249,7 +292,8 @@ "air", "air", "air", - "air" + "air", + "glass_pane" ], [ "stone_bricks", @@ -257,7 +301,8 @@ "air", "air", "air", - "air" + "air", + "stone_bricks" ], [ "glass_pane", @@ -265,23 +310,8 @@ "air", "air", "air", - "air" - ], - [ - "stone_bricks", "air", - "air", - "air", - "air", - "air" - ], - [ - "glass_pane", - "air", - "air", - "air", - "air", - "air" + "glass_pane" ] ] }, @@ -299,6 +329,7 @@ "stone_bricks", "stone_bricks", "stone_bricks", + "stone_bricks", "stone_bricks" ], [ @@ -307,7 +338,8 @@ "air", "air", "air", - "torch" + "torch", + "stone_bricks" ], [ "stone_bricks", @@ -315,7 +347,8 @@ "air", "air", "air", - "air" + "air", + "stone_bricks" ], [ "stone_bricks", @@ -323,7 +356,8 @@ "air", "air", "air", - "air" + "air", + "stone_bricks" ], [ "stone_bricks", @@ -331,7 +365,8 @@ "air", "air", "air", - "air" + "air", + "stone_bricks" ], [ "stone_bricks", @@ -339,7 +374,8 @@ "air", "air", "air", - "air" + "air", + "stone_bricks" ], [ "stone_bricks", @@ -347,7 +383,8 @@ "air", "air", "air", - "air" + "air", + "stone_bricks" ], [ "stone_bricks", @@ -355,7 +392,8 @@ "air", "air", "air", - "air" + "air", + "stone_bricks" ], [ "stone_bricks", @@ -363,7 +401,8 @@ "air", "air", "air", - "air" + "air", + "stone_bricks" ], [ "stone_bricks", @@ -371,7 +410,8 @@ "air", "air", "air", - "torch" + "torch", + "stone_bricks" ] ] }, @@ -389,6 +429,7 @@ "stone_bricks", "stone_bricks", "stone_bricks", + "stone_bricks", "stone_bricks" ], [ @@ -397,7 +438,8 @@ "air", "air", "air", - "air" + "air", + "stone_bricks" ], [ "stone_bricks", @@ -405,7 +447,8 @@ "air", "air", "air", - "air" + "air", + "stone_bricks" ], [ "stone_bricks", @@ -413,7 +456,8 @@ "air", "air", "air", - "air" + "air", + "stone_bricks" ], [ "stone_bricks", @@ -421,7 +465,8 @@ "air", "air", "air", - "air" + "air", + "stone_bricks" ], [ "stone_bricks", @@ -429,7 +474,8 @@ "air", "air", "air", - "air" + "air", + "stone_bricks" ], [ "stone_bricks", @@ -437,7 +483,8 @@ "air", "air", "air", - "air" + "air", + "stone_bricks" ], [ "stone_bricks", @@ -445,7 +492,8 @@ "air", "air", "air", - "air" + "air", + "stone_bricks" ], [ "stone_bricks", @@ -453,7 +501,8 @@ "air", "air", "air", - "air" + "air", + "stone_bricks" ], [ "stone_bricks", @@ -461,7 +510,8 @@ "air", "air", "air", - "air" + "air", + "stone_bricks" ] ] }, @@ -479,6 +529,7 @@ "stone_bricks", "stone_bricks", "stone_bricks", + "stone_bricks", "stone_bricks" ], [ @@ -487,7 +538,8 @@ "air", "air", "air", - "air" + "air", + "stone_bricks" ], [ "stone_bricks", @@ -495,7 +547,8 @@ "air", "air", "air", - "air" + "air", + "stone_bricks" ], [ "stone_bricks", @@ -503,7 +556,8 @@ "air", "air", "air", - "air" + "air", + "stone_bricks" ], [ "stone_bricks", @@ -511,7 +565,8 @@ "air", "air", "air", - "air" + "air", + "stone_bricks" ], [ "stone_bricks", @@ -519,7 +574,8 @@ "air", "air", "air", - "air" + "air", + "stone_bricks" ], [ "stone_bricks", @@ -527,7 +583,8 @@ "air", "air", "air", - "air" + "air", + "stone_bricks" ], [ "stone_bricks", @@ -535,7 +592,8 @@ "air", "air", "air", - "air" + "air", + "stone_bricks" ], [ "stone_bricks", @@ -543,7 +601,8 @@ "air", "air", "air", - "air" + "air", + "stone_bricks" ], [ "stone_bricks", @@ -551,7 +610,8 @@ "air", "air", "air", - "air" + "air", + "stone_bricks" ] ] }, @@ -569,6 +629,7 @@ "oak_planks", "oak_planks", "oak_planks", + "oak_planks", "oak_planks" ], [ @@ -577,6 +638,7 @@ "oak_planks", "oak_planks", "oak_planks", + "oak_planks", "oak_planks" ], [ @@ -585,6 +647,7 @@ "oak_planks", "oak_planks", "oak_planks", + "oak_planks", "oak_planks" ], [ @@ -593,6 +656,7 @@ "oak_planks", "oak_planks", "oak_planks", + "oak_planks", "oak_planks" ], [ @@ -601,6 +665,7 @@ "oak_planks", "oak_planks", "oak_planks", + "oak_planks", "oak_planks" ], [ @@ -609,6 +674,7 @@ "oak_planks", "oak_planks", "oak_planks", + "oak_planks", "oak_planks" ], [ @@ -617,6 +683,7 @@ "oak_planks", "oak_planks", "oak_planks", + "oak_planks", "oak_planks" ], [ @@ -625,6 +692,7 @@ "oak_planks", "oak_planks", "oak_planks", + "oak_planks", "oak_planks" ], [ @@ -633,6 +701,7 @@ "oak_planks", "oak_planks", "oak_planks", + "oak_planks", "oak_planks" ], [ @@ -641,6 +710,7 @@ "oak_planks", "oak_planks", "oak_planks", + "oak_planks", "oak_planks" ] ] @@ -659,6 +729,7 @@ "air", "air", "air", + "air", "air" ], [ @@ -667,6 +738,7 @@ "air", "air", "air", + "air", "air" ], [ @@ -675,6 +747,7 @@ "air", "air", "air", + "air", "air" ], [ @@ -683,6 +756,7 @@ "air", "air", "air", + "air", "air" ], [ @@ -691,6 +765,7 @@ "air", "air", "air", + "air", "air" ], [ @@ -699,6 +774,7 @@ "air", "air", "air", + "air", "air" ], [ @@ -707,6 +783,7 @@ "air", "air", "air", + "air", "air" ], [ @@ -715,6 +792,7 @@ "air", "air", "air", + "air", "air" ], [ @@ -723,6 +801,7 @@ "air", "air", "air", + "air", "air" ], [ @@ -731,6 +810,7 @@ "air", "air", "air", + "air", "air" ] ] @@ -749,6 +829,7 @@ "air", "air", "air", + "air", "air" ], [ @@ -757,6 +838,7 @@ "air", "air", "air", + "air", "air" ], [ @@ -765,6 +847,7 @@ "air", "air", "air", + "air", "air" ], [ @@ -773,6 +856,7 @@ "air", "air", "air", + "air", "air" ], [ @@ -781,6 +865,7 @@ "air", "air", "air", + "air", "air" ], [ @@ -789,6 +874,7 @@ "air", "air", "air", + "air", "air" ], [ @@ -797,6 +883,7 @@ "air", "air", "air", + "air", "air" ], [ @@ -805,6 +892,7 @@ "air", "air", "air", + "air", "air" ], [ @@ -813,6 +901,7 @@ "air", "air", "air", + "air", "air" ], [ @@ -821,6 +910,7 @@ "air", "air", "air", + "air", "air" ] ] @@ -839,6 +929,7 @@ "air", "air", "air", + "air", "air" ], [ @@ -847,6 +938,7 @@ "air", "air", "air", + "air", "air" ], [ @@ -855,6 +947,7 @@ "air", "air", "air", + "air", "air" ], [ @@ -863,6 +956,7 @@ "air", "air", "air", + "air", "air" ], [ @@ -871,6 +965,7 @@ "air", "air", "air", + "air", "air" ], [ @@ -879,6 +974,7 @@ "air", "air", "air", + "air", "air" ], [ @@ -887,6 +983,7 @@ "air", "air", "air", + "air", "air" ], [ @@ -895,6 +992,7 @@ "air", "air", "air", + "air", "air" ], [ @@ -903,6 +1001,7 @@ "air", "air", "air", + "air", "air" ], [ @@ -911,6 +1010,7 @@ "air", "air", "air", + "air", "air" ] ] @@ -919,15 +1019,15 @@ }, "initial_inventory": { "0": { - "oak_planks": 120, + "oak_planks": 140, "oak_door": 2, "quartz_block": 1, "torch": 4 }, "1": { - "stone_bricks": 64, + "stone_bricks": 108, "oak_stairs": 16, - "glass_pane": 7 + "glass_pane": 12 } } } From 11db49ce78b8e69af366e02f1d84ac4996c0f3f4 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Fri, 4 Apr 2025 13:49:12 -0700 Subject: [PATCH 6/8] make a blueprint for the pyramid tasks --- src/agent/task_types/construction_tasks.js | 4 +- tasks/construction_tasks/custom/pyramid.json | 688 +++++++++++++++++++ tasks/construction_tasks/get_blueprint.js | 53 ++ 3 files changed, 743 insertions(+), 2 deletions(-) create mode 100644 tasks/construction_tasks/custom/pyramid.json create mode 100644 tasks/construction_tasks/get_blueprint.js diff --git a/src/agent/task_types/construction_tasks.js b/src/agent/task_types/construction_tasks.js index b6b2203..c4b627d 100644 --- a/src/agent/task_types/construction_tasks.js +++ b/src/agent/task_types/construction_tasks.js @@ -1070,8 +1070,8 @@ export function blueprintToTask(blueprint_data, num_agents) { const task = { type: "construction", - goal: "Make a house with the blueprint below", - conversation: "Let's share materials and make a house with the blueprint", + goal: "Make a structure with the blueprint below", + conversation: "Let's share materials and make a structure with the blueprint", agent_count: 2, blueprint: blueprint_data, initial_inventory: initialInventory, diff --git a/tasks/construction_tasks/custom/pyramid.json b/tasks/construction_tasks/custom/pyramid.json new file mode 100644 index 0000000..248a01b --- /dev/null +++ b/tasks/construction_tasks/custom/pyramid.json @@ -0,0 +1,688 @@ +{ + "pyramid": { + "type": "construction", + "goal": "Make a structure with the blueprint below", + "conversation": "Let's share materials and make a structure with the blueprint", + "agent_count": 2, + "blueprint": { + "materials": { + "polished_granite": 1, + "gold_block": 27, + "stone_bricks": 41, + "polished_andesite": 34, + "quartz_block": 16, + "stone": 23, + "polished_diorite": 21, + "quartz_pillar": 2, + "glowstone": 3 + }, + "levels": [ + { + "level": 0, + "coordinates": [ + -60, + -60, + 6 + ], + "placement": [ + [ + "polished_granite", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "gold_block", + "stone_bricks", + "polished_andesite", + "gold_block", + "quartz_block", + "polished_andesite", + "gold_block", + "stone_bricks", + "gold_block" + ], + [ + "air", + "stone_bricks", + "polished_andesite", + "stone", + "polished_diorite", + "polished_andesite", + "stone", + "stone_bricks", + "polished_diorite", + "gold_block" + ], + [ + "air", + "polished_andesite", + "stone", + "polished_diorite", + "polished_andesite", + "stone", + "stone_bricks", + "polished_diorite", + "stone", + "stone_bricks" + ], + [ + "air", + "gold_block", + "polished_diorite", + "polished_andesite", + "stone", + "stone_bricks", + "polished_diorite", + "stone", + "stone_bricks", + "polished_andesite" + ], + [ + "air", + "quartz_block", + "polished_andesite", + "stone", + "stone_bricks", + "polished_diorite", + "stone", + "stone_bricks", + "polished_andesite", + "quartz_block" + ], + [ + "air", + "polished_andesite", + "stone", + "stone_bricks", + "polished_diorite", + "stone", + "stone_bricks", + "polished_andesite", + "polished_diorite", + "stone_bricks" + ], + [ + "air", + "gold_block", + "stone_bricks", + "polished_diorite", + "stone", + "stone_bricks", + "polished_andesite", + "polished_diorite", + "stone_bricks", + "polished_andesite" + ], + [ + "air", + "stone_bricks", + "polished_diorite", + "stone", + "stone_bricks", + "polished_andesite", + "polished_diorite", + "stone_bricks", + "polished_andesite", + "gold_block" + ], + [ + "air", + "gold_block", + "gold_block", + "stone_bricks", + "polished_andesite", + "quartz_block", + "stone_bricks", + "polished_andesite", + "gold_block", + "gold_block" + ] + ] + }, + { + "level": 1, + "coordinates": [ + -60, + -60, + 6 + ], + "placement": [ + [ + "quartz_pillar", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "gold_block", + "stone_bricks", + "polished_andesite", + "quartz_block", + "stone_bricks", + "polished_andesite", + "gold_block", + "air" + ], + [ + "air", + "air", + "stone_bricks", + "stone", + "polished_diorite", + "polished_andesite", + "stone", + "stone_bricks", + "stone_bricks", + "air" + ], + [ + "air", + "air", + "polished_andesite", + "polished_diorite", + "polished_andesite", + "stone", + "stone_bricks", + "polished_diorite", + "polished_andesite", + "air" + ], + [ + "air", + "air", + "quartz_block", + "polished_andesite", + "stone", + "glowstone", + "polished_diorite", + "stone", + "quartz_block", + "air" + ], + [ + "air", + "air", + "stone_bricks", + "stone", + "stone_bricks", + "polished_diorite", + "stone", + "stone_bricks", + "stone_bricks", + "air" + ], + [ + "air", + "air", + "polished_andesite", + "stone_bricks", + "polished_diorite", + "stone", + "stone_bricks", + "polished_andesite", + "polished_andesite", + "air" + ], + [ + "air", + "air", + "gold_block", + "stone_bricks", + "polished_andesite", + "quartz_block", + "stone_bricks", + "polished_andesite", + "gold_block", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 2, + "coordinates": [ + -60, + -60, + 6 + ], + "placement": [ + [ + "quartz_pillar", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "gold_block", + "stone_bricks", + "quartz_block", + "gold_block", + "gold_block", + "air", + "air" + ], + [ + "air", + "air", + "air", + "stone_bricks", + "polished_diorite", + "polished_andesite", + "stone", + "polished_andesite", + "air", + "air" + ], + [ + "air", + "air", + "air", + "quartz_block", + "polished_andesite", + "glowstone", + "stone_bricks", + "quartz_block", + "air", + "air" + ], + [ + "air", + "air", + "air", + "gold_block", + "stone", + "stone_bricks", + "polished_diorite", + "stone_bricks", + "air", + "air" + ], + [ + "air", + "air", + "air", + "gold_block", + "polished_andesite", + "quartz_block", + "stone_bricks", + "gold_block", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 3, + "coordinates": [ + -60, + -60, + 6 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "gold_block", + "quartz_block", + "gold_block", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "quartz_block", + "glowstone", + "quartz_block", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "gold_block", + "quartz_block", + "gold_block", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 4, + "coordinates": [ + -60, + -60, + 6 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "gold_block", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + } + ] + }, + "initial_inventory": { + "0": { + "polished_granite": 1, + "stone_bricks": 41, + "quartz_block": 16, + "polished_diorite": 21, + "glowstone": 3 + }, + "1": { + "gold_block": 27, + "polished_andesite": 34, + "stone": 23, + "quartz_pillar": 2 + } + } + } +} \ No newline at end of file diff --git a/tasks/construction_tasks/get_blueprint.js b/tasks/construction_tasks/get_blueprint.js new file mode 100644 index 0000000..f310066 --- /dev/null +++ b/tasks/construction_tasks/get_blueprint.js @@ -0,0 +1,53 @@ +import mineflayer from 'mineflayer'; +import { worldToBlueprint, blueprintToTask } from '../../src/agent/task_types/construction_tasks.js'; +import fs from 'fs'; +import { start } from 'repl'; + +const bot = mineflayer.createBot({ + host: 'localhost', // Replace with your server IP or hostname + port: 55916, // Replace with your server port + username: 'andy', // Replace with your bot's username + // password: 'your_bot_password' // Only if the server has online-mode=true +}); + +bot.on('spawn', async () => { + console.log("Bot spawned. Starting blueprint check..."); + const startCoord = { + x: -60, + y: 1, + z: 6, + } + bot.chat(`/tp andy ${startCoord.x} ${startCoord.y} ${startCoord.z}`); + const yOffset = 5; + const xOffset = 10; + const zOffset = 10; + + const taskFilePath = '/Users/isadorawhite/izzy_mindcraft/mindcraft/tasks/construction_tasks/custom/pyramid.json'; + const task_name = "pyramid"; + + + setTimeout(async () => { + let task_blueprint = await worldToBlueprint(startCoord, yOffset, xOffset, zOffset, bot); + + for (const level of task_blueprint.levels) { + // Perform operations on each level + console.log("Level coordinates:", level.coordinates); + const new_coordinates = [level.coordinates[0], -60, level.coordinates[2]]; + level.coordinates = new_coordinates; + console.log("New coordinates:", level.coordinates); + } + console.log("Blueprint generated:", task_blueprint.levels[0].coordinates); + + const task = blueprintToTask(task_blueprint, 2); + const task_collection = {} + task_collection[task_name] = task; + + fs.writeFileSync(taskFilePath, JSON.stringify(task_collection, null, 2), (err) => { + if (err) { + console.error('Error writing task to file:', err); + } else { + console.log('Task dumped to file successfully.'); + } + }); + }, 5000); // Delay of 5 seconds (5000 milliseconds) +}); From f2355f16be77bb3dae39b9e217a6849d43df2b90 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Mon, 7 Apr 2025 15:42:26 -0700 Subject: [PATCH 7/8] adding long timeout tasks for llama evaluation --- tasks/.DS_Store | Bin 8196 -> 8196 bytes tasks/construction_tasks/get_blueprint.js | 1 + ..._NEW_cooking_train_tasks_long_timeout.json | 0 ..._NEW_cooking_train_tasks_long_timeout.json | 3732 ++++++++++++++ ..._NEW_cooking_train_tasks_long_timeout.json | 4409 +++++++++++++++++ 5 files changed, 8142 insertions(+) create mode 100644 tasks/cooking_tasks/train_tasks/3_agent_NEW_cooking_train_tasks_long_timeout.json create mode 100644 tasks/cooking_tasks/train_tasks/4_agent_NEW_cooking_train_tasks_long_timeout.json create mode 100644 tasks/cooking_tasks/train_tasks/5_agent_NEW_cooking_train_tasks_long_timeout.json diff --git a/tasks/.DS_Store b/tasks/.DS_Store index 8624063d56a29d7f66fcec955d46818c8da211a9..3a160646f8047fcb5b0f0734f0d5f30a3cc79bd6 100644 GIT binary patch delta 60 zcmV-C0K@-;K!iZBKM(=9lRyx03mAKQI50RYAT}{Mlf4id0g98^5FY`HlP(u1vmp`Y S2D1hj_XLxm5lgd46}$pN6%%3r delta 61 zcmV-D0K)%-K!iZBKM(=AlRyx03>kZSGB+|fEFd^IFq6Cx8v%=x*bpB9jFT-FD6=3D T<_5C|81@8{o)Jv5NEN#RQRNep diff --git a/tasks/construction_tasks/get_blueprint.js b/tasks/construction_tasks/get_blueprint.js index f310066..2fda3c7 100644 --- a/tasks/construction_tasks/get_blueprint.js +++ b/tasks/construction_tasks/get_blueprint.js @@ -12,6 +12,7 @@ const bot = mineflayer.createBot({ bot.on('spawn', async () => { console.log("Bot spawned. Starting blueprint check..."); + // set this to be minX, minY, minZ const startCoord = { x: -60, y: 1, diff --git a/tasks/cooking_tasks/train_tasks/3_agent_NEW_cooking_train_tasks_long_timeout.json b/tasks/cooking_tasks/train_tasks/3_agent_NEW_cooking_train_tasks_long_timeout.json new file mode 100644 index 0000000..e69de29 diff --git a/tasks/cooking_tasks/train_tasks/4_agent_NEW_cooking_train_tasks_long_timeout.json b/tasks/cooking_tasks/train_tasks/4_agent_NEW_cooking_train_tasks_long_timeout.json new file mode 100644 index 0000000..15bfafb --- /dev/null +++ b/tasks/cooking_tasks/train_tasks/4_agent_NEW_cooking_train_tasks_long_timeout.json @@ -0,0 +1,3732 @@ +{ + "multiagent_cooking_4_1_beetroot_soup_1_cooked_rabbit_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cookie, beetroot_soup, cooked_rabbit.", + "agent_count": 4, + "target": { + "golden_carrot": 1, + "cookie": 1, + "beetroot_soup": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 beetroot_soup, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 beetroot_soup, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 beetroot_soup, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 beetroot_soup, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_mutton_1_cookie_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_mutton, cookie, mushroom_stew, cooked_chicken.", + "agent_count": 4, + "target": { + "cooked_mutton": 1, + "cookie": 1, + "mushroom_stew": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 mushroom_stew, 1 cooked_chicken. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 mushroom_stew, 1 cooked_chicken. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 mushroom_stew, 1 cooked_chicken. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 mushroom_stew, 1 cooked_chicken. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_porkchop_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make beetroot_soup, golden_carrot, cookie, cooked_porkchop.", + "agent_count": 4, + "target": { + "beetroot_soup": 1, + "golden_carrot": 1, + "cookie": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot, 1 cookie, 1 cooked_porkchop. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot, 1 cookie, 1 cooked_porkchop. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot, 1 cookie, 1 cooked_porkchop. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot, 1 cookie, 1 cooked_porkchop. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." + } + }, + "multiagent_cooking_4_1_cooked_mutton_1_cooked_porkchop_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_mutton, cooked_porkchop, mushroom_stew.", + "agent_count": 4, + "target": { + "cooked_mutton": 1, + "cooked_porkchop": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 mushroom_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 mushroom_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 mushroom_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 mushroom_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_porkchop_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, cooked_porkchop, beetroot_soup.", + "agent_count": 4, + "target": { + "pumpkin_pie": 1, + "cooked_porkchop": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop, 1 beetroot_soup. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop, 1 beetroot_soup. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop, 1 beetroot_soup. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop, 1 beetroot_soup. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + } + }, + "multiagent_cooking_4_1_cooked_mutton_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cooked_mutton, cookie.", + "agent_count": 4, + "target": { + "golden_carrot": 1, + "cooked_mutton": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_cookie_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, cookie, beetroot_soup, cooked_chicken.", + "agent_count": 4, + "target": { + "pumpkin_pie": 1, + "cookie": 1, + "beetroot_soup": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_cooked_rabbit_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_chicken, cooked_rabbit, beetroot_soup, mushroom_stew.", + "agent_count": 4, + "target": { + "cooked_chicken": 1, + "cooked_rabbit": 1, + "beetroot_soup": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 beetroot_soup, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 beetroot_soup, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 beetroot_soup, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 beetroot_soup, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make golden_carrot, pumpkin_pie, cooked_porkchop, cooked_chicken.", + "agent_count": 4, + "target": { + "golden_carrot": 1, + "pumpkin_pie": 1, + "cooked_porkchop": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make cookie, cooked_chicken, golden_carrot.", + "agent_count": 4, + "target": { + "cookie": 1, + "cooked_chicken": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "3": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_golden_carrot_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cooked_chicken, mushroom_stew, golden_carrot.", + "agent_count": 4, + "target": { + "suspicious_stew": 1, + "cooked_chicken": 1, + "mushroom_stew": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make pumpkin_pie, mushroom_stew, suspicious_stew, cooked_chicken.", + "agent_count": 4, + "target": { + "pumpkin_pie": 1, + "mushroom_stew": 1, + "suspicious_stew": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_4_1_cooked_porkchop_1_cookie_1_suspicious_stew": { + "conversation": "Let's work together to make cookie, cooked_porkchop, suspicious_stew.", + "agent_count": 4, + "target": { + "cookie": 1, + "cooked_porkchop": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "3": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_porkchop_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make golden_carrot, cooked_porkchop, beetroot_soup, suspicious_stew.", + "agent_count": 4, + "target": { + "golden_carrot": 1, + "cooked_porkchop": 1, + "beetroot_soup": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 beetroot_soup, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 beetroot_soup, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 beetroot_soup, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 beetroot_soup, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_rabbit_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_chicken, cooked_rabbit, pumpkin_pie.", + "agent_count": 4, + "target": { + "cooked_chicken": 1, + "cooked_rabbit": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_cookie": { + "conversation": "Let's work together to make beetroot_soup, cooked_chicken, cookie, cooked_mutton.", + "agent_count": 4, + "target": { + "beetroot_soup": 1, + "cooked_chicken": 1, + "cookie": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_mutton. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_mutton. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_mutton. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_mutton. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_mutton_1_cooked_rabbit_1_cookie": { + "conversation": "Let's work together to make cookie, beetroot_soup, cooked_rabbit, cooked_mutton.", + "agent_count": 4, + "target": { + "cookie": 1, + "beetroot_soup": 1, + "cooked_rabbit": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "1": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "2": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "3": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." + } + }, + "multiagent_cooking_4_1_cooked_porkchop_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cookie, cooked_porkchop.", + "agent_count": 4, + "target": { + "golden_carrot": 1, + "cookie": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 cooked_porkchop. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 cooked_porkchop. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 cooked_porkchop. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 cooked_porkchop. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_chicken, beetroot_soup, pumpkin_pie.", + "agent_count": 4, + "target": { + "cooked_chicken": 1, + "beetroot_soup": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_chicken, beetroot_soup, cooked_rabbit, cooked_porkchop.", + "agent_count": 4, + "target": { + "cooked_chicken": 1, + "beetroot_soup": 1, + "cooked_rabbit": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_rabbit_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make mushroom_stew, pumpkin_pie, cooked_rabbit, beetroot_soup.", + "agent_count": 4, + "target": { + "mushroom_stew": 1, + "pumpkin_pie": 1, + "cooked_rabbit": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 pumpkin_pie, 1 cooked_rabbit, 1 beetroot_soup. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 pumpkin_pie, 1 cooked_rabbit, 1 beetroot_soup. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 pumpkin_pie, 1 cooked_rabbit, 1 beetroot_soup. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 pumpkin_pie, 1 cooked_rabbit, 1 beetroot_soup. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make mushroom_stew, suspicious_stew, cooked_chicken.", + "agent_count": 4, + "target": { + "mushroom_stew": 1, + "suspicious_stew": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_porkchop_1_cookie_1_pumpkin_pie": { + "conversation": "Let's work together to make cookie, cooked_porkchop, pumpkin_pie, beetroot_soup.", + "agent_count": 4, + "target": { + "cookie": 1, + "cooked_porkchop": 1, + "pumpkin_pie": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "3": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + } + }, + "multiagent_cooking_4_1_cooked_porkchop_1_golden_carrot_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_porkchop, pumpkin_pie, suspicious_stew, golden_carrot.", + "agent_count": 4, + "target": { + "cooked_porkchop": 1, + "pumpkin_pie": 1, + "suspicious_stew": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make golden_carrot, mushroom_stew, cooked_rabbit, beetroot_soup.", + "agent_count": 4, + "target": { + "golden_carrot": 1, + "mushroom_stew": 1, + "cooked_rabbit": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew, 1 cooked_rabbit, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew, 1 cooked_rabbit, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew, 1 cooked_rabbit, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew, 1 cooked_rabbit, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cookie_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, cookie, mushroom_stew, cooked_chicken.", + "agent_count": 4, + "target": { + "pumpkin_pie": 1, + "cookie": 1, + "mushroom_stew": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 mushroom_stew, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 mushroom_stew, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 mushroom_stew, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 mushroom_stew, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_mutton_1_cookie_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, cookie, beetroot_soup, cooked_mutton.", + "agent_count": 4, + "target": { + "mushroom_stew": 1, + "cookie": 1, + "beetroot_soup": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." + } + }, + "multiagent_cooking_4_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot": { + "conversation": "Let's work together to make cooked_mutton, golden_carrot, cooked_rabbit.", + "agent_count": 4, + "target": { + "cooked_mutton": 1, + "golden_carrot": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_mutton_1_cooked_porkchop_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_porkchop, mushroom_stew, cooked_mutton, cooked_chicken.", + "agent_count": 4, + "target": { + "cooked_porkchop": 1, + "mushroom_stew": 1, + "cooked_mutton": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_4_1_cooked_porkchop_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, golden_carrot, cooked_porkchop.", + "agent_count": 4, + "target": { + "mushroom_stew": 1, + "golden_carrot": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_porkchop. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_porkchop. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_porkchop. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_porkchop. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." + } + }, + "multiagent_cooking_4_1_cooked_porkchop_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, pumpkin_pie, cooked_porkchop, mushroom_stew.", + "agent_count": 4, + "target": { + "suspicious_stew": 1, + "pumpkin_pie": 1, + "cooked_porkchop": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_porkchop, 1 mushroom_stew. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_porkchop, 1 mushroom_stew. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_porkchop, 1 mushroom_stew. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_porkchop, 1 mushroom_stew. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cookie_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, beetroot_soup, cookie.", + "agent_count": 4, + "target": { + "suspicious_stew": 1, + "beetroot_soup": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_4_1_golden_carrot_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make mushroom_stew, suspicious_stew, golden_carrot.", + "agent_count": 4, + "target": { + "mushroom_stew": 1, + "suspicious_stew": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 golden_carrot. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 golden_carrot. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 golden_carrot. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 golden_carrot. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_mutton_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, cooked_chicken, cooked_mutton, mushroom_stew.", + "agent_count": 4, + "target": { + "pumpkin_pie": 1, + "cooked_chicken": 1, + "cooked_mutton": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_mutton, 1 mushroom_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_mutton, 1 mushroom_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_mutton, 1 mushroom_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_mutton, 1 mushroom_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_golden_carrot": { + "conversation": "Let's work together to make cooked_chicken, cooked_porkchop, golden_carrot.", + "agent_count": 4, + "target": { + "cooked_chicken": 1, + "cooked_porkchop": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + } + }, + "multiagent_cooking_4_1_cooked_porkchop_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make golden_carrot, pumpkin_pie, cooked_porkchop.", + "agent_count": 4, + "target": { + "golden_carrot": 1, + "pumpkin_pie": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." + } + }, + "multiagent_cooking_4_1_cooked_porkchop_1_cooked_rabbit_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_rabbit, pumpkin_pie, suspicious_stew, cooked_porkchop.", + "agent_count": 4, + "target": { + "cooked_rabbit": 1, + "pumpkin_pie": 1, + "suspicious_stew": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_cooked_porkchop": { + "conversation": "Let's work together to make cooked_mutton, cooked_porkchop, cooked_chicken, beetroot_soup.", + "agent_count": 4, + "target": { + "cooked_mutton": 1, + "cooked_porkchop": 1, + "cooked_chicken": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_rabbit_1_pumpkin_pie": { + "conversation": "Let's work together to make beetroot_soup, pumpkin_pie, cooked_rabbit.", + "agent_count": 4, + "target": { + "beetroot_soup": 1, + "pumpkin_pie": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 cooked_rabbit. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 cooked_rabbit. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 cooked_rabbit. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 cooked_rabbit. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, cooked_porkchop, cooked_chicken.", + "agent_count": 4, + "target": { + "pumpkin_pie": 1, + "cooked_porkchop": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_rabbit_1_cookie": { + "conversation": "Let's work together to make cooked_rabbit, cooked_chicken, cookie.", + "agent_count": 4, + "target": { + "cooked_rabbit": 1, + "cooked_chicken": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_4_1_cooked_porkchop_1_golden_carrot_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, mushroom_stew, cooked_porkchop, golden_carrot.", + "agent_count": 4, + "target": { + "pumpkin_pie": 1, + "mushroom_stew": 1, + "cooked_porkchop": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cooked_mutton, cooked_chicken, beetroot_soup.", + "agent_count": 4, + "target": { + "suspicious_stew": 1, + "cooked_mutton": 1, + "cooked_chicken": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + } + }, + "multiagent_cooking_4_1_cooked_mutton_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, golden_carrot, cooked_mutton.", + "agent_count": 4, + "target": { + "mushroom_stew": 1, + "golden_carrot": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." + } + }, + "multiagent_cooking_4_1_cooked_porkchop_1_cooked_rabbit_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, cooked_porkchop, cooked_rabbit, mushroom_stew.", + "agent_count": 4, + "target": { + "pumpkin_pie": 1, + "cooked_porkchop": 1, + "cooked_rabbit": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop, 1 cooked_rabbit, 1 mushroom_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop, 1 cooked_rabbit, 1 mushroom_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop, 1 cooked_rabbit, 1 mushroom_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop, 1 cooked_rabbit, 1 mushroom_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_mutton_1_golden_carrot": { + "conversation": "Let's work together to make cooked_chicken, cooked_mutton, golden_carrot.", + "agent_count": 4, + "target": { + "cooked_chicken": 1, + "cooked_mutton": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 golden_carrot. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 golden_carrot. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 golden_carrot. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 golden_carrot. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_cookie_1_mushroom_stew": { + "conversation": "Let's work together to make beetroot_soup, mushroom_stew, cooked_chicken, cookie.", + "agent_count": 4, + "target": { + "beetroot_soup": 1, + "mushroom_stew": 1, + "cooked_chicken": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 cooked_chicken, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 cooked_chicken, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 cooked_chicken, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 cooked_chicken, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_rabbit_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, beetroot_soup, mushroom_stew, cooked_rabbit.", + "agent_count": 4, + "target": { + "suspicious_stew": 1, + "beetroot_soup": 1, + "mushroom_stew": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 mushroom_stew, 1 cooked_rabbit. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 mushroom_stew, 1 cooked_rabbit. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 mushroom_stew, 1 cooked_rabbit. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 mushroom_stew, 1 cooked_rabbit. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_cooked_rabbit": { + "conversation": "Let's work together to make beetroot_soup, cooked_chicken, cooked_rabbit.", + "agent_count": 4, + "target": { + "beetroot_soup": 1, + "cooked_chicken": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_rabbit_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_chicken, pumpkin_pie, golden_carrot, cooked_rabbit.", + "agent_count": 4, + "target": { + "cooked_chicken": 1, + "pumpkin_pie": 1, + "golden_carrot": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 pumpkin_pie, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 pumpkin_pie, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 pumpkin_pie, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 pumpkin_pie, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_porkchop_1_cookie_1_mushroom_stew": { + "conversation": "Let's work together to make cookie, beetroot_soup, mushroom_stew, cooked_porkchop.", + "agent_count": 4, + "target": { + "cookie": 1, + "beetroot_soup": 1, + "mushroom_stew": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 mushroom_stew, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "1": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 mushroom_stew, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "2": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 mushroom_stew, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "3": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 mushroom_stew, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." + } + }, + "multiagent_cooking_4_1_cookie_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make mushroom_stew, cookie, suspicious_stew.", + "agent_count": 4, + "target": { + "mushroom_stew": 1, + "cookie": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make mushroom_stew, beetroot_soup, pumpkin_pie, suspicious_stew.", + "agent_count": 4, + "target": { + "mushroom_stew": 1, + "beetroot_soup": 1, + "pumpkin_pie": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_rabbit_1_cookie": { + "conversation": "Let's work together to make beetroot_soup, cooked_rabbit, cookie.", + "agent_count": 4, + "target": { + "beetroot_soup": 1, + "cooked_rabbit": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cookie_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_chicken, cookie, suspicious_stew.", + "agent_count": 4, + "target": { + "cooked_chicken": 1, + "cookie": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie, 1 suspicious_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie, 1 suspicious_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie, 1 suspicious_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie, 1 suspicious_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_4_1_cooked_mutton_1_cooked_rabbit_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cooked_rabbit, cookie, cooked_mutton.", + "agent_count": 4, + "target": { + "golden_carrot": 1, + "cooked_rabbit": 1, + "cookie": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit, 1 cookie, 1 cooked_mutton. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit, 1 cookie, 1 cooked_mutton. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit, 1 cookie, 1 cooked_mutton. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit, 1 cookie, 1 cooked_mutton. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." + } + }, + "multiagent_cooking_4_1_cookie_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, golden_carrot, cookie.", + "agent_count": 4, + "target": { + "suspicious_stew": 1, + "golden_carrot": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_porkchop_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, beetroot_soup, cooked_porkchop.", + "agent_count": 4, + "target": { + "suspicious_stew": 1, + "beetroot_soup": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." + } + }, + "multiagent_cooking_4_1_cooked_mutton_1_cooked_rabbit_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_rabbit, suspicious_stew, cooked_mutton.", + "agent_count": 4, + "target": { + "cooked_rabbit": 1, + "suspicious_stew": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_mutton_1_cooked_porkchop_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_chicken, pumpkin_pie, cooked_mutton, cooked_porkchop.", + "agent_count": 4, + "target": { + "cooked_chicken": 1, + "pumpkin_pie": 1, + "cooked_mutton": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 pumpkin_pie, 1 cooked_mutton, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 pumpkin_pie, 1 cooked_mutton, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 pumpkin_pie, 1 cooked_mutton, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 pumpkin_pie, 1 cooked_mutton, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." + } + }, + "multiagent_cooking_4_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_mutton, golden_carrot, cooked_rabbit, mushroom_stew.", + "agent_count": 4, + "target": { + "cooked_mutton": 1, + "golden_carrot": 1, + "cooked_rabbit": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 cooked_rabbit, 1 mushroom_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 cooked_rabbit, 1 mushroom_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 cooked_rabbit, 1 mushroom_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 cooked_rabbit, 1 mushroom_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_mutton_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_mutton, suspicious_stew, beetroot_soup.", + "agent_count": 4, + "target": { + "cooked_mutton": 1, + "suspicious_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_mutton_1_golden_carrot": { + "conversation": "Let's work together to make cooked_mutton, golden_carrot, beetroot_soup.", + "agent_count": 4, + "target": { + "cooked_mutton": 1, + "golden_carrot": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_mutton_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make beetroot_soup, cooked_mutton, golden_carrot, suspicious_stew.", + "agent_count": 4, + "target": { + "beetroot_soup": 1, + "cooked_mutton": 1, + "golden_carrot": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot, 1 suspicious_stew. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot, 1 suspicious_stew. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot, 1 suspicious_stew. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot, 1 suspicious_stew. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_rabbit_1_cookie_1_mushroom_stew": { + "conversation": "Let's work together to make cookie, mushroom_stew, cooked_rabbit, beetroot_soup.", + "agent_count": 4, + "target": { + "cookie": 1, + "mushroom_stew": 1, + "cooked_rabbit": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 cooked_rabbit, 1 beetroot_soup. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "1": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 cooked_rabbit, 1 beetroot_soup. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "2": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 cooked_rabbit, 1 beetroot_soup. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "3": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 cooked_rabbit, 1 beetroot_soup. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + } + }, + "multiagent_cooking_4_1_cooked_rabbit_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make golden_carrot, suspicious_stew, cooked_rabbit.", + "agent_count": 4, + "target": { + "golden_carrot": 1, + "suspicious_stew": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_porkchop_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cooked_porkchop, pumpkin_pie, beetroot_soup.", + "agent_count": 4, + "target": { + "suspicious_stew": 1, + "cooked_porkchop": 1, + "pumpkin_pie": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + } + }, + "multiagent_cooking_4_1_cookie_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, golden_carrot, cookie.", + "agent_count": 4, + "target": { + "mushroom_stew": 1, + "golden_carrot": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make golden_carrot, suspicious_stew, cooked_chicken.", + "agent_count": 4, + "target": { + "golden_carrot": 1, + "suspicious_stew": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_4_1_cookie_1_golden_carrot_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make mushroom_stew, cookie, golden_carrot, pumpkin_pie.", + "agent_count": 4, + "target": { + "mushroom_stew": 1, + "cookie": 1, + "golden_carrot": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_golden_carrot_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make pumpkin_pie, golden_carrot, cooked_chicken, suspicious_stew.", + "agent_count": 4, + "target": { + "pumpkin_pie": 1, + "golden_carrot": 1, + "cooked_chicken": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cookie_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, beetroot_soup, mushroom_stew, cookie.", + "agent_count": 4, + "target": { + "suspicious_stew": 1, + "beetroot_soup": 1, + "mushroom_stew": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 mushroom_stew, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 mushroom_stew, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 mushroom_stew, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 mushroom_stew, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_4_1_cooked_porkchop_1_cooked_rabbit_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_rabbit, mushroom_stew, cooked_porkchop, suspicious_stew.", + "agent_count": 4, + "target": { + "cooked_rabbit": 1, + "mushroom_stew": 1, + "cooked_porkchop": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_4_1_cooked_rabbit_1_cookie_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_rabbit, cookie, pumpkin_pie, suspicious_stew.", + "agent_count": 4, + "target": { + "cooked_rabbit": 1, + "cookie": 1, + "pumpkin_pie": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie, 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie, 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie, 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie, 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_4_1_cooked_mutton_1_cooked_porkchop_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_porkchop, cooked_mutton, pumpkin_pie.", + "agent_count": 4, + "target": { + "cooked_porkchop": 1, + "cooked_mutton": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_rabbit_1_cookie_1_mushroom_stew": { + "conversation": "Let's work together to make cookie, cooked_chicken, mushroom_stew, cooked_rabbit.", + "agent_count": 4, + "target": { + "cookie": 1, + "cooked_chicken": 1, + "mushroom_stew": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken, 1 mushroom_stew, 1 cooked_rabbit. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken, 1 mushroom_stew, 1 cooked_rabbit. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken, 1 mushroom_stew, 1 cooked_rabbit. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "3": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken, 1 mushroom_stew, 1 cooked_rabbit. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_mutton_1_cooked_porkchop": { + "conversation": "Let's work together to make cooked_mutton, beetroot_soup, cooked_porkchop.", + "agent_count": 4, + "target": { + "cooked_mutton": 1, + "beetroot_soup": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_cooked_rabbit_1_cookie": { + "conversation": "Let's work together to make cooked_rabbit, cooked_chicken, beetroot_soup, cookie.", + "agent_count": 4, + "target": { + "cooked_rabbit": 1, + "cooked_chicken": 1, + "beetroot_soup": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 beetroot_soup, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 beetroot_soup, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 beetroot_soup, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 beetroot_soup, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_rabbit_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_rabbit, beetroot_soup, mushroom_stew.", + "agent_count": 4, + "target": { + "cooked_rabbit": 1, + "beetroot_soup": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_cooked_rabbit_1_cookie": { + "conversation": "Let's work together to make cookie, cooked_chicken, cooked_porkchop, cooked_rabbit.", + "agent_count": 4, + "target": { + "cookie": 1, + "cooked_chicken": 1, + "cooked_porkchop": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_rabbit. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_rabbit. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_rabbit. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "3": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_rabbit. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_rabbit, beetroot_soup, cooked_mutton, cooked_chicken.", + "agent_count": 4, + "target": { + "cooked_rabbit": 1, + "beetroot_soup": 1, + "cooked_mutton": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot": { + "conversation": "Let's work together to make cooked_mutton, beetroot_soup, golden_carrot, cooked_rabbit.", + "agent_count": 4, + "target": { + "cooked_mutton": 1, + "beetroot_soup": 1, + "golden_carrot": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_4_1_cooked_mutton_1_cooked_rabbit_1_cookie_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_mutton, cooked_rabbit, suspicious_stew, cookie.", + "agent_count": 4, + "target": { + "cooked_mutton": 1, + "cooked_rabbit": 1, + "suspicious_stew": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cookie, beetroot_soup.", + "agent_count": 4, + "target": { + "golden_carrot": 1, + "cookie": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + } + }, + "multiagent_cooking_4_1_cooked_porkchop_1_cooked_rabbit_1_cookie": { + "conversation": "Let's work together to make cooked_porkchop, cookie, cooked_rabbit.", + "agent_count": 4, + "target": { + "cooked_porkchop": 1, + "cookie": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, cooked_chicken, mushroom_stew.", + "agent_count": 4, + "target": { + "pumpkin_pie": 1, + "cooked_chicken": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 mushroom_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 mushroom_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 mushroom_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 mushroom_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, beetroot_soup, cooked_mutton, cooked_chicken.", + "agent_count": 4, + "target": { + "mushroom_stew": 1, + "beetroot_soup": 1, + "cooked_mutton": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make beetroot_soup, pumpkin_pie, golden_carrot.", + "agent_count": 4, + "target": { + "beetroot_soup": 1, + "pumpkin_pie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make cooked_chicken, golden_carrot, cookie, cooked_porkchop.", + "agent_count": 4, + "target": { + "cooked_chicken": 1, + "golden_carrot": 1, + "cookie": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cookie, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cookie, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cookie, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cookie, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." + } + }, + "multiagent_cooking_4_1_cooked_mutton_1_cooked_porkchop_1_cookie": { + "conversation": "Let's work together to make cookie, cooked_porkchop, cooked_mutton.", + "agent_count": 4, + "target": { + "cookie": 1, + "cooked_porkchop": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "3": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_mutton_1_cooked_porkchop_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, beetroot_soup, cooked_mutton, cooked_porkchop.", + "agent_count": 4, + "target": { + "pumpkin_pie": 1, + "beetroot_soup": 1, + "cooked_mutton": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_mutton, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_mutton, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_mutton, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_mutton, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_rabbit_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make cooked_chicken, cooked_rabbit, cookie, golden_carrot.", + "agent_count": 4, + "target": { + "cooked_chicken": 1, + "cooked_rabbit": 1, + "cookie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 cookie, 1 golden_carrot. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 cookie, 1 golden_carrot. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 cookie, 1 golden_carrot. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 cookie, 1 golden_carrot. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cookie_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_chicken, mushroom_stew, cookie.", + "agent_count": 4, + "target": { + "cooked_chicken": 1, + "mushroom_stew": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_rabbit_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cooked_rabbit, pumpkin_pie, cooked_chicken.", + "agent_count": 4, + "target": { + "suspicious_stew": 1, + "cooked_rabbit": 1, + "pumpkin_pie": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_4_1_cooked_mutton_1_cooked_porkchop_1_cookie_1_suspicious_stew": { + "conversation": "Let's work together to make cookie, cooked_porkchop, cooked_mutton, suspicious_stew.", + "agent_count": 4, + "target": { + "cookie": 1, + "cooked_porkchop": 1, + "cooked_mutton": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_mutton, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_mutton, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_mutton, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "3": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_mutton, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_4_1_cookie_1_golden_carrot_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cookie, golden_carrot, pumpkin_pie.", + "agent_count": 4, + "target": { + "suspicious_stew": 1, + "cookie": 1, + "golden_carrot": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make beetroot_soup, pumpkin_pie, mushroom_stew.", + "agent_count": 4, + "target": { + "beetroot_soup": 1, + "pumpkin_pie": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 mushroom_stew. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 mushroom_stew. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 mushroom_stew. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 mushroom_stew. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_chicken, cooked_rabbit, cooked_porkchop.", + "agent_count": 4, + "target": { + "cooked_chicken": 1, + "cooked_rabbit": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." + } + }, + "multiagent_cooking_4_1_cooked_porkchop_1_cookie_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make mushroom_stew, pumpkin_pie, cooked_porkchop, cookie.", + "agent_count": 4, + "target": { + "mushroom_stew": 1, + "pumpkin_pie": 1, + "cooked_porkchop": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 pumpkin_pie, 1 cooked_porkchop, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 pumpkin_pie, 1 cooked_porkchop, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 pumpkin_pie, 1 cooked_porkchop, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 pumpkin_pie, 1 cooked_porkchop, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_4_1_cooked_mutton_1_cooked_porkchop_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_mutton, cooked_porkchop, suspicious_stew.", + "agent_count": 4, + "target": { + "cooked_mutton": 1, + "cooked_porkchop": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + } + } \ No newline at end of file diff --git a/tasks/cooking_tasks/train_tasks/5_agent_NEW_cooking_train_tasks_long_timeout.json b/tasks/cooking_tasks/train_tasks/5_agent_NEW_cooking_train_tasks_long_timeout.json new file mode 100644 index 0000000..081357d --- /dev/null +++ b/tasks/cooking_tasks/train_tasks/5_agent_NEW_cooking_train_tasks_long_timeout.json @@ -0,0 +1,4409 @@ +{ + "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make golden_carrot, mushroom_stew, beetroot_soup, cooked_rabbit, cooked_chicken.", + "agent_count": 5, + "target": { + "golden_carrot": 1, + "mushroom_stew": 1, + "beetroot_soup": 1, + "cooked_rabbit": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew, 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_chicken. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew, 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_chicken. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew, 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_chicken. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew, 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_chicken. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "4": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew, 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_chicken. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_5_1_cooked_mutton_1_cooked_porkchop_1_cookie_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make golden_carrot, cooked_porkchop, mushroom_stew, cooked_mutton, cookie.", + "agent_count": 5, + "target": { + "golden_carrot": 1, + "cooked_porkchop": 1, + "mushroom_stew": 1, + "cooked_mutton": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_mutton, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_mutton, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_mutton, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_mutton, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "4": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_mutton, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_cooked_rabbit_1_cookie_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_chicken, suspicious_stew, cooked_rabbit, cooked_mutton, cookie.", + "agent_count": 5, + "target": { + "cooked_chicken": 1, + "suspicious_stew": 1, + "cooked_rabbit": 1, + "cooked_mutton": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_rabbit, 1 cooked_mutton, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_rabbit, 1 cooked_mutton, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_rabbit, 1 cooked_mutton, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_rabbit, 1 cooked_mutton, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_rabbit, 1 cooked_mutton, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_5_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, golden_carrot, cooked_mutton, cooked_rabbit.", + "agent_count": 5, + "target": { + "suspicious_stew": 1, + "golden_carrot": 1, + "cooked_mutton": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 cooked_mutton, 1 cooked_rabbit. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 cooked_mutton, 1 cooked_rabbit. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 cooked_mutton, 1 cooked_rabbit. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 cooked_mutton, 1 cooked_rabbit. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 cooked_mutton, 1 cooked_rabbit. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_rabbit_1_cookie_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, mushroom_stew, cooked_chicken, cookie, cooked_rabbit.", + "agent_count": 5, + "target": { + "suspicious_stew": 1, + "mushroom_stew": 1, + "cooked_chicken": 1, + "cookie": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_porkchop_1_cooked_rabbit_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make cookie, golden_carrot, cooked_chicken, cooked_rabbit, cooked_porkchop.", + "agent_count": 5, + "target": { + "cookie": 1, + "golden_carrot": 1, + "cooked_chicken": 1, + "cooked_rabbit": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 cooked_chicken, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "1": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 cooked_chicken, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "2": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 cooked_chicken, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "3": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 cooked_chicken, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "4": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 cooked_chicken, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_rabbit_1_cookie_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_chicken, cookie, cooked_rabbit, beetroot_soup, mushroom_stew.", + "agent_count": 5, + "target": { + "cooked_chicken": 1, + "cookie": 1, + "cooked_rabbit": 1, + "beetroot_soup": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie, 1 cooked_rabbit, 1 beetroot_soup, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie, 1 cooked_rabbit, 1 beetroot_soup, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie, 1 cooked_rabbit, 1 beetroot_soup, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie, 1 cooked_rabbit, 1 beetroot_soup, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie, 1 cooked_rabbit, 1 beetroot_soup, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + } + }, + "multiagent_cooking_5_1_cooked_mutton_1_golden_carrot_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_mutton, mushroom_stew, golden_carrot, pumpkin_pie, suspicious_stew.", + "agent_count": 5, + "target": { + "cooked_mutton": 1, + "mushroom_stew": 1, + "golden_carrot": 1, + "pumpkin_pie": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 golden_carrot, 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 golden_carrot, 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 golden_carrot, 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 golden_carrot, 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 golden_carrot, 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_5_1_cookie_1_golden_carrot_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make cookie, golden_carrot, mushroom_stew, suspicious_stew.", + "agent_count": 5, + "target": { + "cookie": 1, + "golden_carrot": 1, + "mushroom_stew": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 mushroom_stew, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 mushroom_stew, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 mushroom_stew, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "3": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 mushroom_stew, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "4": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 mushroom_stew, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_5_1_cooked_porkchop_1_cookie_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make golden_carrot, cookie, cooked_porkchop, suspicious_stew.", + "agent_count": 5, + "target": { + "golden_carrot": 1, + "cookie": 1, + "cooked_porkchop": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "4": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_cooked_porkchop_1_golden_carrot": { + "conversation": "Let's work together to make cooked_chicken, beetroot_soup, cooked_porkchop, golden_carrot, cooked_mutton.", + "agent_count": 5, + "target": { + "cooked_chicken": 1, + "beetroot_soup": 1, + "cooked_porkchop": 1, + "golden_carrot": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 cooked_porkchop, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 cooked_porkchop, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 cooked_porkchop, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 cooked_porkchop, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 cooked_porkchop, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." + } + }, + "multiagent_cooking_5_1_golden_carrot_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, mushroom_stew, golden_carrot, pumpkin_pie.", + "agent_count": 5, + "target": { + "suspicious_stew": 1, + "mushroom_stew": 1, + "golden_carrot": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop_1_cooked_rabbit_1_pumpkin_pie": { + "conversation": "Let's work together to make beetroot_soup, cooked_rabbit, cooked_chicken, pumpkin_pie, cooked_porkchop.", + "agent_count": 5, + "target": { + "beetroot_soup": 1, + "cooked_rabbit": 1, + "cooked_chicken": 1, + "pumpkin_pie": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_chicken, 1 pumpkin_pie, 1 cooked_porkchop. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_chicken, 1 pumpkin_pie, 1 cooked_porkchop. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_chicken, 1 pumpkin_pie, 1 cooked_porkchop. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_chicken, 1 pumpkin_pie, 1 cooked_porkchop. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_chicken, 1 pumpkin_pie, 1 cooked_porkchop. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_rabbit_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, mushroom_stew, cooked_chicken, cooked_rabbit, beetroot_soup.", + "agent_count": 5, + "target": { + "pumpkin_pie": 1, + "mushroom_stew": 1, + "cooked_chicken": 1, + "cooked_rabbit": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit, 1 beetroot_soup. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit, 1 beetroot_soup. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit, 1 beetroot_soup. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit, 1 beetroot_soup. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit, 1 beetroot_soup. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_porkchop_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make beetroot_soup, golden_carrot, cooked_porkchop, suspicious_stew.", + "agent_count": 5, + "target": { + "beetroot_soup": 1, + "golden_carrot": 1, + "cooked_porkchop": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_cooked_porkchop_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_mutton, beetroot_soup, mushroom_stew, cooked_porkchop, cooked_chicken.", + "agent_count": 5, + "target": { + "cooked_mutton": 1, + "beetroot_soup": 1, + "mushroom_stew": 1, + "cooked_porkchop": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 mushroom_stew, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 mushroom_stew, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 mushroom_stew, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 mushroom_stew, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 mushroom_stew, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_rabbit_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make golden_carrot, cooked_rabbit, cooked_chicken, pumpkin_pie.", + "agent_count": 5, + "target": { + "golden_carrot": 1, + "cooked_rabbit": 1, + "cooked_chicken": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit, 1 cooked_chicken, 1 pumpkin_pie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit, 1 cooked_chicken, 1 pumpkin_pie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit, 1 cooked_chicken, 1 pumpkin_pie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit, 1 cooked_chicken, 1 pumpkin_pie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "4": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit, 1 cooked_chicken, 1 pumpkin_pie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + } + }, + "multiagent_cooking_5_1_cooked_porkchop_1_cooked_rabbit_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, cooked_rabbit, cooked_porkchop, golden_carrot.", + "agent_count": 5, + "target": { + "pumpkin_pie": 1, + "cooked_rabbit": 1, + "cooked_porkchop": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit, 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit, 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit, 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit, 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit, 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_porkchop_1_cookie_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, beetroot_soup, cooked_porkchop, cookie.", + "agent_count": 5, + "target": { + "suspicious_stew": 1, + "beetroot_soup": 1, + "cooked_porkchop": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 cooked_porkchop, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 cooked_porkchop, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 cooked_porkchop, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 cooked_porkchop, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 cooked_porkchop, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_porkchop_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make mushroom_stew, cooked_porkchop, cooked_chicken, pumpkin_pie.", + "agent_count": 5, + "target": { + "mushroom_stew": 1, + "cooked_porkchop": 1, + "cooked_chicken": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 cooked_chicken, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 cooked_chicken, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 cooked_chicken, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 cooked_chicken, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 cooked_chicken, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_rabbit_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_rabbit, golden_carrot, suspicious_stew, cooked_chicken.", + "agent_count": 5, + "target": { + "cooked_rabbit": 1, + "golden_carrot": 1, + "suspicious_stew": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cookie_1_golden_carrot_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make cookie, cooked_chicken, pumpkin_pie, golden_carrot, suspicious_stew.", + "agent_count": 5, + "target": { + "cookie": 1, + "cooked_chicken": 1, + "pumpkin_pie": 1, + "golden_carrot": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken, 1 pumpkin_pie, 1 golden_carrot, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken, 1 pumpkin_pie, 1 golden_carrot, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken, 1 pumpkin_pie, 1 golden_carrot, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "3": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken, 1 pumpkin_pie, 1 golden_carrot, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "4": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken, 1 pumpkin_pie, 1 golden_carrot, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_rabbit_1_cookie_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, cookie, cooked_chicken, cooked_rabbit.", + "agent_count": 5, + "target": { + "mushroom_stew": 1, + "cookie": 1, + "cooked_chicken": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_cooked_porkchop_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make cooked_porkchop, golden_carrot, cookie, cooked_mutton, cooked_chicken.", + "agent_count": 5, + "target": { + "cooked_porkchop": 1, + "golden_carrot": 1, + "cookie": 1, + "cooked_mutton": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 cookie, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 cookie, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 cookie, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 cookie, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 cookie, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_5_1_cooked_rabbit_1_golden_carrot_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make golden_carrot, pumpkin_pie, suspicious_stew, cooked_rabbit.", + "agent_count": 5, + "target": { + "golden_carrot": 1, + "pumpkin_pie": 1, + "suspicious_stew": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "4": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_rabbit_1_cookie": { + "conversation": "Let's work together to make beetroot_soup, cooked_chicken, cookie, cooked_rabbit.", + "agent_count": 5, + "target": { + "beetroot_soup": 1, + "cooked_chicken": 1, + "cookie": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_cooked_rabbit_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_rabbit, cooked_chicken, cooked_mutton, suspicious_stew.", + "agent_count": 5, + "target": { + "cooked_rabbit": 1, + "cooked_chicken": 1, + "cooked_mutton": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 cooked_mutton, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 cooked_mutton, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 cooked_mutton, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 cooked_mutton, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 cooked_mutton, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_porkchop_1_golden_carrot_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_chicken, pumpkin_pie, golden_carrot, suspicious_stew, cooked_porkchop.", + "agent_count": 5, + "target": { + "cooked_chicken": 1, + "pumpkin_pie": 1, + "golden_carrot": 1, + "suspicious_stew": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 pumpkin_pie, 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 pumpkin_pie, 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 pumpkin_pie, 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 pumpkin_pie, 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 pumpkin_pie, 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_golden_carrot_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_mutton, pumpkin_pie, golden_carrot, cooked_chicken, suspicious_stew.", + "agent_count": 5, + "target": { + "cooked_mutton": 1, + "pumpkin_pie": 1, + "golden_carrot": 1, + "cooked_chicken": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 golden_carrot, 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 golden_carrot, 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 golden_carrot, 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 golden_carrot, 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 golden_carrot, 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_golden_carrot_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make golden_carrot, mushroom_stew, suspicious_stew, pumpkin_pie, beetroot_soup.", + "agent_count": 5, + "target": { + "golden_carrot": 1, + "mushroom_stew": 1, + "suspicious_stew": 1, + "pumpkin_pie": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "4": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_cookie_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make pumpkin_pie, cookie, cooked_mutton, beetroot_soup, suspicious_stew.", + "agent_count": 5, + "target": { + "pumpkin_pie": 1, + "cookie": 1, + "cooked_mutton": 1, + "beetroot_soup": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 cooked_mutton, 1 beetroot_soup, 1 suspicious_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 cooked_mutton, 1 beetroot_soup, 1 suspicious_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 cooked_mutton, 1 beetroot_soup, 1 suspicious_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 cooked_mutton, 1 beetroot_soup, 1 suspicious_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 cooked_mutton, 1 beetroot_soup, 1 suspicious_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_5_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_rabbit, suspicious_stew, cooked_mutton, golden_carrot, mushroom_stew.", + "agent_count": 5, + "target": { + "cooked_rabbit": 1, + "suspicious_stew": 1, + "cooked_mutton": 1, + "golden_carrot": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 cooked_mutton, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 cooked_mutton, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 cooked_mutton, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 cooked_mutton, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 cooked_mutton, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + } + }, + "multiagent_cooking_5_1_cooked_porkchop_1_cooked_rabbit_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_rabbit, suspicious_stew, mushroom_stew, cooked_porkchop.", + "agent_count": 5, + "target": { + "cooked_rabbit": 1, + "suspicious_stew": 1, + "mushroom_stew": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew, 1 cooked_porkchop. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew, 1 cooked_porkchop. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew, 1 cooked_porkchop. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew, 1 cooked_porkchop. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew, 1 cooked_porkchop. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cooked_mutton, cooked_chicken, cooked_rabbit.", + "agent_count": 5, + "target": { + "golden_carrot": 1, + "cooked_mutton": 1, + "cooked_chicken": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "4": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_cookie_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_mutton, pumpkin_pie, cooked_chicken, mushroom_stew, cookie.", + "agent_count": 5, + "target": { + "cooked_mutton": 1, + "pumpkin_pie": 1, + "cooked_chicken": 1, + "mushroom_stew": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cooked_chicken, 1 mushroom_stew, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cooked_chicken, 1 mushroom_stew, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cooked_chicken, 1 mushroom_stew, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cooked_chicken, 1 mushroom_stew, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cooked_chicken, 1 mushroom_stew, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_rabbit_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cookie, cooked_chicken, cooked_rabbit.", + "agent_count": 5, + "target": { + "golden_carrot": 1, + "cookie": 1, + "cooked_chicken": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "4": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_porkchop_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, cooked_porkchop, golden_carrot, beetroot_soup.", + "agent_count": 5, + "target": { + "mushroom_stew": 1, + "cooked_porkchop": 1, + "golden_carrot": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 golden_carrot, 1 beetroot_soup. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 golden_carrot, 1 beetroot_soup. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 golden_carrot, 1 beetroot_soup. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 golden_carrot, 1 beetroot_soup. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 golden_carrot, 1 beetroot_soup. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + } + }, + "multiagent_cooking_5_1_cooked_rabbit_1_cookie_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, cookie, golden_carrot, cooked_rabbit.", + "agent_count": 5, + "target": { + "pumpkin_pie": 1, + "cookie": 1, + "golden_carrot": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, golden_carrot, cooked_rabbit, cooked_chicken, cooked_mutton.", + "agent_count": 5, + "target": { + "suspicious_stew": 1, + "golden_carrot": 1, + "cooked_rabbit": 1, + "cooked_chicken": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 cooked_rabbit, 1 cooked_chicken, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 cooked_rabbit, 1 cooked_chicken, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 cooked_rabbit, 1 cooked_chicken, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 cooked_rabbit, 1 cooked_chicken, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 cooked_rabbit, 1 cooked_chicken, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_cooked_porkchop_1_cookie_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, cooked_chicken, cooked_mutton, cookie, cooked_porkchop.", + "agent_count": 5, + "target": { + "pumpkin_pie": 1, + "cooked_chicken": 1, + "cooked_mutton": 1, + "cookie": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_mutton, 1 cookie, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_mutton, 1 cookie, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_mutton, 1 cookie, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_mutton, 1 cookie, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_mutton, 1 cookie, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cooked_porkchop, cookie, cooked_chicken, beetroot_soup.", + "agent_count": 5, + "target": { + "golden_carrot": 1, + "cooked_porkchop": 1, + "cookie": 1, + "cooked_chicken": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 cookie, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 cookie, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 cookie, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 cookie, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "4": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 cookie, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_rabbit_1_cookie_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, golden_carrot, cooked_rabbit, beetroot_soup, cookie.", + "agent_count": 5, + "target": { + "suspicious_stew": 1, + "golden_carrot": 1, + "cooked_rabbit": 1, + "beetroot_soup": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 cooked_rabbit, 1 beetroot_soup, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 cooked_rabbit, 1 beetroot_soup, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 cooked_rabbit, 1 beetroot_soup, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 cooked_rabbit, 1 beetroot_soup, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 cooked_rabbit, 1 beetroot_soup, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_mutton, cooked_chicken, suspicious_stew, mushroom_stew, beetroot_soup.", + "agent_count": 5, + "target": { + "cooked_mutton": 1, + "cooked_chicken": 1, + "suspicious_stew": 1, + "mushroom_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken, 1 suspicious_stew, 1 mushroom_stew, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken, 1 suspicious_stew, 1 mushroom_stew, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken, 1 suspicious_stew, 1 mushroom_stew, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken, 1 suspicious_stew, 1 mushroom_stew, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken, 1 suspicious_stew, 1 mushroom_stew, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + } + }, + "multiagent_cooking_5_1_cooked_mutton_1_cooked_porkchop_1_cookie_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make pumpkin_pie, suspicious_stew, cooked_porkchop, cookie, cooked_mutton.", + "agent_count": 5, + "target": { + "pumpkin_pie": 1, + "suspicious_stew": 1, + "cooked_porkchop": 1, + "cookie": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie, 1 cooked_mutton. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie, 1 cooked_mutton. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie, 1 cooked_mutton. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie, 1 cooked_mutton. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie, 1 cooked_mutton. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cooked_chicken, beetroot_soup, cooked_mutton, golden_carrot.", + "agent_count": 5, + "target": { + "suspicious_stew": 1, + "cooked_chicken": 1, + "beetroot_soup": 1, + "cooked_mutton": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_cooked_porkchop_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_porkchop, mushroom_stew, cooked_mutton, beetroot_soup.", + "agent_count": 5, + "target": { + "cooked_porkchop": 1, + "mushroom_stew": 1, + "cooked_mutton": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_mutton, 1 beetroot_soup. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_mutton, 1 beetroot_soup. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_mutton, 1 beetroot_soup. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_mutton, 1 beetroot_soup. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_mutton, 1 beetroot_soup. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + } + }, + "multiagent_cooking_5_1_cooked_mutton_1_golden_carrot_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, pumpkin_pie, golden_carrot, cooked_mutton.", + "agent_count": 5, + "target": { + "suspicious_stew": 1, + "pumpkin_pie": 1, + "golden_carrot": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." + } + }, + "multiagent_cooking_5_1_cooked_rabbit_1_cookie_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make pumpkin_pie, mushroom_stew, suspicious_stew, cooked_rabbit, cookie.", + "agent_count": 5, + "target": { + "pumpkin_pie": 1, + "mushroom_stew": 1, + "suspicious_stew": 1, + "cooked_rabbit": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_rabbit, 1 cookie. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_rabbit, 1 cookie. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_rabbit, 1 cookie. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_rabbit, 1 cookie. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_rabbit, 1 cookie. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_5_1_cooked_porkchop_1_cookie_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make mushroom_stew, pumpkin_pie, cookie, cooked_porkchop, suspicious_stew.", + "agent_count": 5, + "target": { + "mushroom_stew": 1, + "pumpkin_pie": 1, + "cookie": 1, + "cooked_porkchop": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 pumpkin_pie, 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 pumpkin_pie, 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 pumpkin_pie, 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 pumpkin_pie, 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 pumpkin_pie, 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cookie_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, golden_carrot, cooked_chicken, cookie.", + "agent_count": 5, + "target": { + "mushroom_stew": 1, + "golden_carrot": 1, + "cooked_chicken": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_5_1_cooked_mutton_1_cooked_rabbit_1_cookie_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_rabbit, cooked_mutton, cookie, pumpkin_pie.", + "agent_count": 5, + "target": { + "cooked_rabbit": 1, + "cooked_mutton": 1, + "cookie": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton, 1 cookie, 1 pumpkin_pie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton, 1 cookie, 1 pumpkin_pie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton, 1 cookie, 1 pumpkin_pie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton, 1 cookie, 1 pumpkin_pie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton, 1 cookie, 1 pumpkin_pie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + } + }, + "multiagent_cooking_5_1_cooked_mutton_1_cooked_rabbit_1_cookie_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make cookie, cooked_mutton, mushroom_stew, pumpkin_pie, cooked_rabbit.", + "agent_count": 5, + "target": { + "cookie": 1, + "cooked_mutton": 1, + "mushroom_stew": 1, + "pumpkin_pie": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton, 1 mushroom_stew, 1 pumpkin_pie, 1 cooked_rabbit. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton, 1 mushroom_stew, 1 pumpkin_pie, 1 cooked_rabbit. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton, 1 mushroom_stew, 1 pumpkin_pie, 1 cooked_rabbit. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "3": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton, 1 mushroom_stew, 1 pumpkin_pie, 1 cooked_rabbit. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "4": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton, 1 mushroom_stew, 1 pumpkin_pie, 1 cooked_rabbit. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_5_1_cooked_porkchop_1_cookie_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_porkchop, pumpkin_pie, suspicious_stew, cookie.", + "agent_count": 5, + "target": { + "cooked_porkchop": 1, + "pumpkin_pie": 1, + "suspicious_stew": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 cookie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 cookie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 cookie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 cookie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 cookie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_cookie_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_chicken, cookie, suspicious_stew, golden_carrot, cooked_mutton.", + "agent_count": 5, + "target": { + "cooked_chicken": 1, + "cookie": 1, + "suspicious_stew": 1, + "golden_carrot": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie, 1 suspicious_stew, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie, 1 suspicious_stew, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie, 1 suspicious_stew, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie, 1 suspicious_stew, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie, 1 suspicious_stew, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." + } + }, + "multiagent_cooking_5_1_cooked_mutton_1_cooked_porkchop_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_mutton, cooked_porkchop, golden_carrot, pumpkin_pie.", + "agent_count": 5, + "target": { + "cooked_mutton": 1, + "cooked_porkchop": 1, + "golden_carrot": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + } + }, + "multiagent_cooking_5_1_cooked_mutton_1_cooked_porkchop_1_cooked_rabbit_1_cookie_1_pumpkin_pie": { + "conversation": "Let's work together to make cookie, cooked_porkchop, cooked_rabbit, pumpkin_pie, cooked_mutton.", + "agent_count": 5, + "target": { + "cookie": 1, + "cooked_porkchop": 1, + "cooked_rabbit": 1, + "pumpkin_pie": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "3": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "4": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_cooked_porkchop_1_cooked_rabbit_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_chicken, cooked_mutton, cooked_porkchop, cooked_rabbit, suspicious_stew.", + "agent_count": 5, + "target": { + "cooked_chicken": 1, + "cooked_mutton": 1, + "cooked_porkchop": 1, + "cooked_rabbit": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cooked_porkchop, 1 cooked_rabbit, 1 suspicious_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cooked_porkchop, 1 cooked_rabbit, 1 suspicious_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cooked_porkchop, 1 cooked_rabbit, 1 suspicious_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cooked_porkchop, 1 cooked_rabbit, 1 suspicious_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cooked_porkchop, 1 cooked_rabbit, 1 suspicious_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_cooked_porkchop_1_cookie_1_pumpkin_pie": { + "conversation": "Let's work together to make cookie, pumpkin_pie, cooked_mutton, beetroot_soup, cooked_porkchop.", + "agent_count": 5, + "target": { + "cookie": 1, + "pumpkin_pie": 1, + "cooked_mutton": 1, + "beetroot_soup": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 cooked_mutton, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "1": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 cooked_mutton, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "2": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 cooked_mutton, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "3": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 cooked_mutton, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "4": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 cooked_mutton, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_chicken, mushroom_stew, golden_carrot, cooked_rabbit.", + "agent_count": 5, + "target": { + "cooked_chicken": 1, + "mushroom_stew": 1, + "golden_carrot": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_porkchop_1_cooked_rabbit_1_cookie_1_pumpkin_pie": { + "conversation": "Let's work together to make cookie, pumpkin_pie, beetroot_soup, cooked_rabbit, cooked_porkchop.", + "agent_count": 5, + "target": { + "cookie": 1, + "pumpkin_pie": 1, + "beetroot_soup": 1, + "cooked_rabbit": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "1": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "2": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "3": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "4": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." + } + }, + "multiagent_cooking_5_1_cooked_mutton_1_cooked_rabbit_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make cookie, cooked_mutton, golden_carrot, cooked_rabbit.", + "agent_count": 5, + "target": { + "cookie": 1, + "cooked_mutton": 1, + "golden_carrot": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "3": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "4": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_5_1_cooked_mutton_1_cookie_1_golden_carrot_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_mutton, cookie, pumpkin_pie, mushroom_stew, golden_carrot.", + "agent_count": 5, + "target": { + "cooked_mutton": 1, + "cookie": 1, + "pumpkin_pie": 1, + "mushroom_stew": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 pumpkin_pie, 1 mushroom_stew, 1 golden_carrot. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 pumpkin_pie, 1 mushroom_stew, 1 golden_carrot. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 pumpkin_pie, 1 mushroom_stew, 1 golden_carrot. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 pumpkin_pie, 1 mushroom_stew, 1 golden_carrot. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 pumpkin_pie, 1 mushroom_stew, 1 golden_carrot. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + } + }, + "multiagent_cooking_5_1_cooked_mutton_1_cooked_rabbit_1_cookie_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_rabbit, golden_carrot, cooked_mutton, cookie, mushroom_stew.", + "agent_count": 5, + "target": { + "cooked_rabbit": 1, + "golden_carrot": 1, + "cooked_mutton": 1, + "cookie": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 cooked_mutton, 1 cookie, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 cooked_mutton, 1 cookie, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 cooked_mutton, 1 cookie, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 cooked_mutton, 1 cookie, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 cooked_mutton, 1 cookie, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + } + }, + "multiagent_cooking_5_1_cooked_porkchop_1_cooked_rabbit_1_cookie_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_rabbit, cookie, cooked_porkchop, suspicious_stew.", + "agent_count": 5, + "target": { + "cooked_rabbit": 1, + "cookie": 1, + "cooked_porkchop": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_cooked_porkchop_1_cookie_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, cooked_mutton, cookie, beetroot_soup, cooked_porkchop.", + "agent_count": 5, + "target": { + "mushroom_stew": 1, + "cooked_mutton": 1, + "cookie": 1, + "beetroot_soup": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 cookie, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 cookie, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 cookie, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 cookie, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 cookie, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_cookie_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make golden_carrot, beetroot_soup, cookie, suspicious_stew, cooked_mutton.", + "agent_count": 5, + "target": { + "golden_carrot": 1, + "beetroot_soup": 1, + "cookie": 1, + "suspicious_stew": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 cookie, 1 suspicious_stew, 1 cooked_mutton. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 cookie, 1 suspicious_stew, 1 cooked_mutton. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 cookie, 1 suspicious_stew, 1 cooked_mutton. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 cookie, 1 suspicious_stew, 1 cooked_mutton. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "4": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 cookie, 1 suspicious_stew, 1 cooked_mutton. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_chicken, beetroot_soup, pumpkin_pie, mushroom_stew, cooked_porkchop.", + "agent_count": 5, + "target": { + "cooked_chicken": 1, + "beetroot_soup": 1, + "pumpkin_pie": 1, + "mushroom_stew": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 pumpkin_pie, 1 mushroom_stew, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 pumpkin_pie, 1 mushroom_stew, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 pumpkin_pie, 1 mushroom_stew, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 pumpkin_pie, 1 mushroom_stew, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 pumpkin_pie, 1 mushroom_stew, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_cooked_rabbit_1_cookie_1_mushroom_stew": { + "conversation": "Let's work together to make cookie, mushroom_stew, cooked_chicken, cooked_rabbit, cooked_mutton.", + "agent_count": 5, + "target": { + "cookie": 1, + "mushroom_stew": 1, + "cooked_chicken": 1, + "cooked_rabbit": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "1": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "2": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "3": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "4": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, cooked_mutton, cooked_chicken, golden_carrot.", + "agent_count": 5, + "target": { + "pumpkin_pie": 1, + "cooked_mutton": 1, + "cooked_chicken": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_mutton, 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_mutton, 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_mutton, 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_mutton, 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_mutton, 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + } + }, + "multiagent_cooking_5_1_cooked_mutton_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make mushroom_stew, cooked_mutton, pumpkin_pie, suspicious_stew.", + "agent_count": 5, + "target": { + "mushroom_stew": 1, + "cooked_mutton": 1, + "pumpkin_pie": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_cooked_porkchop_1_cooked_rabbit_1_golden_carrot": { + "conversation": "Let's work together to make cooked_porkchop, golden_carrot, cooked_rabbit, cooked_chicken, cooked_mutton.", + "agent_count": 5, + "target": { + "cooked_porkchop": 1, + "golden_carrot": 1, + "cooked_rabbit": 1, + "cooked_chicken": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 cooked_rabbit, 1 cooked_chicken, 1 cooked_mutton. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 cooked_rabbit, 1 cooked_chicken, 1 cooked_mutton. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 cooked_rabbit, 1 cooked_chicken, 1 cooked_mutton. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 cooked_rabbit, 1 cooked_chicken, 1 cooked_mutton. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 cooked_rabbit, 1 cooked_chicken, 1 cooked_mutton. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." + } + }, + "multiagent_cooking_5_1_cooked_mutton_1_cooked_porkchop_1_cooked_rabbit_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_porkchop, cooked_mutton, pumpkin_pie, cooked_rabbit.", + "agent_count": 5, + "target": { + "cooked_porkchop": 1, + "cooked_mutton": 1, + "pumpkin_pie": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 pumpkin_pie, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 pumpkin_pie, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 pumpkin_pie, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 pumpkin_pie, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 pumpkin_pie, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_cookie_1_suspicious_stew": { + "conversation": "Let's work together to make beetroot_soup, suspicious_stew, cooked_mutton, cooked_chicken, cookie.", + "agent_count": 5, + "target": { + "beetroot_soup": 1, + "suspicious_stew": 1, + "cooked_mutton": 1, + "cooked_chicken": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_5_1_cooked_mutton_1_cooked_rabbit_1_cookie_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_rabbit, cookie, cooked_mutton, pumpkin_pie, golden_carrot.", + "agent_count": 5, + "target": { + "cooked_rabbit": 1, + "cookie": 1, + "cooked_mutton": 1, + "pumpkin_pie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie, 1 cooked_mutton, 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie, 1 cooked_mutton, 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie, 1 cooked_mutton, 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie, 1 cooked_mutton, 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie, 1 cooked_mutton, 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cookie_1_golden_carrot_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_chicken, mushroom_stew, suspicious_stew, cookie, golden_carrot.", + "agent_count": 5, + "target": { + "cooked_chicken": 1, + "mushroom_stew": 1, + "suspicious_stew": 1, + "cookie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 suspicious_stew, 1 cookie, 1 golden_carrot. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 suspicious_stew, 1 cookie, 1 golden_carrot. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 suspicious_stew, 1 cookie, 1 golden_carrot. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 suspicious_stew, 1 cookie, 1 golden_carrot. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 suspicious_stew, 1 cookie, 1 golden_carrot. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cookie_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make pumpkin_pie, mushroom_stew, cookie, beetroot_soup, suspicious_stew.", + "agent_count": 5, + "target": { + "pumpkin_pie": 1, + "mushroom_stew": 1, + "cookie": 1, + "beetroot_soup": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 cookie, 1 beetroot_soup, 1 suspicious_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 cookie, 1 beetroot_soup, 1 suspicious_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 cookie, 1 beetroot_soup, 1 suspicious_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 cookie, 1 beetroot_soup, 1 suspicious_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 cookie, 1 beetroot_soup, 1 suspicious_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_porkchop_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_porkchop, mushroom_stew, beetroot_soup, suspicious_stew.", + "agent_count": 5, + "target": { + "cooked_porkchop": 1, + "mushroom_stew": 1, + "beetroot_soup": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 suspicious_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 suspicious_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 suspicious_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 suspicious_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 suspicious_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_5_1_cooked_rabbit_1_cookie_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make cookie, cooked_rabbit, golden_carrot, mushroom_stew.", + "agent_count": 5, + "target": { + "cookie": 1, + "cooked_rabbit": 1, + "golden_carrot": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "3": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "4": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop_1_cooked_rabbit_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_rabbit, beetroot_soup, mushroom_stew, cooked_porkchop, cooked_chicken.", + "agent_count": 5, + "target": { + "cooked_rabbit": 1, + "beetroot_soup": 1, + "mushroom_stew": 1, + "cooked_porkchop": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 mushroom_stew, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 mushroom_stew, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 mushroom_stew, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 mushroom_stew, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 mushroom_stew, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_5_1_cooked_mutton_1_cooked_porkchop_1_cooked_rabbit_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_rabbit, cooked_porkchop, mushroom_stew, cooked_mutton.", + "agent_count": 5, + "target": { + "cooked_rabbit": 1, + "cooked_porkchop": 1, + "mushroom_stew": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_cooked_porkchop_1_golden_carrot": { + "conversation": "Let's work together to make cooked_mutton, golden_carrot, beetroot_soup, cooked_porkchop.", + "agent_count": 5, + "target": { + "cooked_mutton": 1, + "golden_carrot": 1, + "beetroot_soup": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_cookie_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, golden_carrot, cookie, cooked_mutton, cooked_chicken.", + "agent_count": 5, + "target": { + "mushroom_stew": 1, + "golden_carrot": 1, + "cookie": 1, + "cooked_mutton": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cookie, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cookie, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cookie, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cookie, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cookie, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot": { + "conversation": "Let's work together to make beetroot_soup, cooked_mutton, golden_carrot, cooked_rabbit.", + "agent_count": 5, + "target": { + "beetroot_soup": 1, + "cooked_mutton": 1, + "golden_carrot": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_cooked_porkchop_1_cookie_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_porkchop, suspicious_stew, cookie, cooked_mutton, cooked_chicken.", + "agent_count": 5, + "target": { + "cooked_porkchop": 1, + "suspicious_stew": 1, + "cookie": 1, + "cooked_mutton": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 cookie, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 cookie, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 cookie, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 cookie, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 cookie, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_cookie_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_mutton, cookie, beetroot_soup, suspicious_stew.", + "agent_count": 5, + "target": { + "cooked_mutton": 1, + "cookie": 1, + "beetroot_soup": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 beetroot_soup, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 beetroot_soup, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 beetroot_soup, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 beetroot_soup, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 beetroot_soup, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make mushroom_stew, cooked_chicken, cooked_mutton, pumpkin_pie.", + "agent_count": 5, + "target": { + "mushroom_stew": 1, + "cooked_chicken": 1, + "cooked_mutton": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_cookie_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_chicken, suspicious_stew, mushroom_stew, cooked_mutton, cookie.", + "agent_count": 5, + "target": { + "cooked_chicken": 1, + "suspicious_stew": 1, + "mushroom_stew": 1, + "cooked_mutton": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 mushroom_stew, 1 cooked_mutton, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 mushroom_stew, 1 cooked_mutton, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 mushroom_stew, 1 cooked_mutton, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 mushroom_stew, 1 cooked_mutton, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 mushroom_stew, 1 cooked_mutton, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_porkchop_1_cookie_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_porkchop, cookie, pumpkin_pie, beetroot_soup, golden_carrot.", + "agent_count": 5, + "target": { + "cooked_porkchop": 1, + "cookie": 1, + "pumpkin_pie": 1, + "beetroot_soup": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 pumpkin_pie, 1 beetroot_soup, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 pumpkin_pie, 1 beetroot_soup, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 pumpkin_pie, 1 beetroot_soup, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 pumpkin_pie, 1 beetroot_soup, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 pumpkin_pie, 1 beetroot_soup, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_rabbit_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_rabbit, suspicious_stew, beetroot_soup, golden_carrot, cooked_chicken.", + "agent_count": 5, + "target": { + "cooked_rabbit": 1, + "suspicious_stew": 1, + "beetroot_soup": 1, + "golden_carrot": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 beetroot_soup, 1 golden_carrot, 1 cooked_chicken. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 beetroot_soup, 1 golden_carrot, 1 cooked_chicken. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 beetroot_soup, 1 golden_carrot, 1 cooked_chicken. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 beetroot_soup, 1 golden_carrot, 1 cooked_chicken. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 beetroot_soup, 1 golden_carrot, 1 cooked_chicken. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_5_1_cooked_mutton_1_cooked_porkchop_1_cooked_rabbit_1_cookie": { + "conversation": "Let's work together to make cooked_porkchop, cooked_rabbit, cooked_mutton, cookie.", + "agent_count": 5, + "target": { + "cooked_porkchop": 1, + "cooked_rabbit": 1, + "cooked_mutton": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit, 1 cooked_mutton, 1 cookie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit, 1 cooked_mutton, 1 cookie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit, 1 cooked_mutton, 1 cookie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit, 1 cooked_mutton, 1 cookie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit, 1 cooked_mutton, 1 cookie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_golden_carrot_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_chicken, beetroot_soup, suspicious_stew, golden_carrot, mushroom_stew.", + "agent_count": 5, + "target": { + "cooked_chicken": 1, + "beetroot_soup": 1, + "suspicious_stew": 1, + "golden_carrot": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + } + }, + "multiagent_cooking_5_1_cooked_mutton_1_cooked_porkchop_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make mushroom_stew, cooked_porkchop, pumpkin_pie, suspicious_stew, cooked_mutton.", + "agent_count": 5, + "target": { + "mushroom_stew": 1, + "cooked_porkchop": 1, + "pumpkin_pie": 1, + "suspicious_stew": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_mutton. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_mutton. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_mutton. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_mutton. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_mutton. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_rabbit_1_cookie_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make cookie, pumpkin_pie, mushroom_stew, cooked_rabbit, cooked_chicken.", + "agent_count": 5, + "target": { + "cookie": 1, + "pumpkin_pie": 1, + "mushroom_stew": 1, + "cooked_rabbit": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 mushroom_stew, 1 cooked_rabbit, 1 cooked_chicken. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 mushroom_stew, 1 cooked_rabbit, 1 cooked_chicken. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 mushroom_stew, 1 cooked_rabbit, 1 cooked_chicken. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "3": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 mushroom_stew, 1 cooked_rabbit, 1 cooked_chicken. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "4": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 mushroom_stew, 1 cooked_rabbit, 1 cooked_chicken. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_5_1_cooked_porkchop_1_cooked_rabbit_1_golden_carrot_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make golden_carrot, suspicious_stew, pumpkin_pie, cooked_rabbit, cooked_porkchop.", + "agent_count": 5, + "target": { + "golden_carrot": 1, + "suspicious_stew": 1, + "pumpkin_pie": 1, + "cooked_rabbit": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "4": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_rabbit_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, cooked_rabbit, golden_carrot, cooked_chicken, beetroot_soup.", + "agent_count": 5, + "target": { + "pumpkin_pie": 1, + "cooked_rabbit": 1, + "golden_carrot": 1, + "cooked_chicken": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit, 1 golden_carrot, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit, 1 golden_carrot, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit, 1 golden_carrot, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit, 1 golden_carrot, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit, 1 golden_carrot, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_mutton, beetroot_soup, pumpkin_pie, mushroom_stew, suspicious_stew.", + "agent_count": 5, + "target": { + "cooked_mutton": 1, + "beetroot_soup": 1, + "pumpkin_pie": 1, + "mushroom_stew": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_5_1_cooked_porkchop_1_cooked_rabbit_1_cookie_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_porkchop, suspicious_stew, mushroom_stew, cookie, cooked_rabbit.", + "agent_count": 5, + "target": { + "cooked_porkchop": 1, + "suspicious_stew": 1, + "mushroom_stew": 1, + "cookie": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 mushroom_stew, 1 cookie, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 mushroom_stew, 1 cookie, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 mushroom_stew, 1 cookie, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 mushroom_stew, 1 cookie, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 mushroom_stew, 1 cookie, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_5_1_cooked_mutton_1_cooked_porkchop_1_cooked_rabbit_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_porkchop, suspicious_stew, cooked_mutton, cooked_rabbit.", + "agent_count": 5, + "target": { + "cooked_porkchop": 1, + "suspicious_stew": 1, + "cooked_mutton": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_5_1_cooked_mutton_1_cooked_porkchop_1_cooked_rabbit_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cooked_mutton, cooked_porkchop, cooked_rabbit.", + "agent_count": 5, + "target": { + "golden_carrot": 1, + "cooked_mutton": 1, + "cooked_porkchop": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 cooked_porkchop, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 cooked_porkchop, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 cooked_porkchop, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 cooked_porkchop, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "4": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 cooked_porkchop, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_golden_carrot_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make beetroot_soup, golden_carrot, cooked_mutton, pumpkin_pie, mushroom_stew.", + "agent_count": 5, + "target": { + "beetroot_soup": 1, + "golden_carrot": 1, + "cooked_mutton": 1, + "pumpkin_pie": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie, 1 mushroom_stew. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie, 1 mushroom_stew. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie, 1 mushroom_stew. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie, 1 mushroom_stew. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie, 1 mushroom_stew. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + } + } + } \ No newline at end of file From 64c0f618281b6a04a1f482fc0a6d695650b16cfb Mon Sep 17 00:00:00 2001 From: Isadora White Date: Mon, 7 Apr 2025 16:25:35 -0700 Subject: [PATCH 8/8] fixing three agent tasks with long timeout --- ..._NEW_cooking_train_tasks_long_timeout.json | 3093 +++++++++++++++++ 1 file changed, 3093 insertions(+) diff --git a/tasks/cooking_tasks/train_tasks/3_agent_NEW_cooking_train_tasks_long_timeout.json b/tasks/cooking_tasks/train_tasks/3_agent_NEW_cooking_train_tasks_long_timeout.json index e69de29..3433458 100644 --- a/tasks/cooking_tasks/train_tasks/3_agent_NEW_cooking_train_tasks_long_timeout.json +++ b/tasks/cooking_tasks/train_tasks/3_agent_NEW_cooking_train_tasks_long_timeout.json @@ -0,0 +1,3093 @@ +{ + "multiagent_cooking_3_1_golden_carrot_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, pumpkin_pie, golden_carrot.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "pumpkin_pie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_cooked_rabbit_1_cookie": { + "conversation": "Let's work together to make cooked_mutton, cooked_rabbit, cookie.", + "agent_count": 3, + "target": { + "cooked_mutton": 1, + "cooked_rabbit": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_porkchop, suspicious_stew, beetroot_soup.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "suspicious_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_chicken, cooked_rabbit.", + "agent_count": 3, + "target": { + "cooked_chicken": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cooked_mutton.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_mutton_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, cooked_chicken, cooked_mutton.", + "agent_count": 3, + "target": { + "pumpkin_pie": 1, + "cooked_chicken": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_mutton. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_mutton. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_mutton. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cooked_porkchop.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_suspicious_stew": { + "conversation": "Let's work together to make beetroot_soup, suspicious_stew, cooked_chicken.", + "agent_count": 3, + "target": { + "beetroot_soup": 1, + "suspicious_stew": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_cookie_1_suspicious_stew": { + "conversation": "Let's work together to make cookie, cooked_porkchop, suspicious_stew.", + "agent_count": 3, + "target": { + "cookie": 1, + "cooked_porkchop": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, pumpkin_pie, beetroot_soup.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "pumpkin_pie": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + } + }, + "multiagent_cooking_3_1_cookie_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, cookie.", + "agent_count": 3, + "target": { + "mushroom_stew": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton_1_golden_carrot": { + "conversation": "Let's work together to make beetroot_soup, cooked_mutton, golden_carrot.", + "agent_count": 3, + "target": { + "beetroot_soup": 1, + "cooked_mutton": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_mutton_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cooked_mutton, cooked_chicken.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "cooked_mutton": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, golden_carrot, cooked_porkchop.", + "agent_count": 3, + "target": { + "pumpkin_pie": 1, + "golden_carrot": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." + } + }, + "multiagent_cooking_3_1_cooked_rabbit_1_cookie_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_rabbit, pumpkin_pie, cookie.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "pumpkin_pie": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_3_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make golden_carrot, mushroom_stew.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_cookie": { + "conversation": "Let's work together to make cookie, cooked_porkchop.", + "agent_count": 3, + "target": { + "cookie": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_porkchop, mushroom_stew, pumpkin_pie.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "mushroom_stew": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + } + }, + "multiagent_cooking_3_1_cooked_rabbit_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_rabbit, suspicious_stew.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, cooked_chicken.", + "agent_count": 3, + "target": { + "pumpkin_pie": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, beetroot_soup, cooked_porkchop.", + "agent_count": 3, + "target": { + "mushroom_stew": 1, + "beetroot_soup": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_porkchop, pumpkin_pie, beetroot_soup.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "pumpkin_pie": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, golden_carrot, cooked_mutton.", + "agent_count": 3, + "target": { + "pumpkin_pie": 1, + "golden_carrot": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_mutton_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cooked_mutton, cooked_chicken.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "cooked_mutton": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_porkchop": { + "conversation": "Let's work together to make cooked_porkchop, cooked_chicken.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_mutton, pumpkin_pie.", + "agent_count": 3, + "target": { + "cooked_mutton": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, cooked_mutton.", + "agent_count": 3, + "target": { + "mushroom_stew": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." + } + }, + "multiagent_cooking_3_1_golden_carrot_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, mushroom_stew, golden_carrot.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "mushroom_stew": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cookie": { + "conversation": "Let's work together to make cookie, beetroot_soup.", + "agent_count": 3, + "target": { + "cookie": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "1": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "2": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_cooked_rabbit_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_rabbit, cooked_porkchop, suspicious_stew.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "cooked_porkchop": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_3_1_cookie_1_pumpkin_pie": { + "conversation": "Let's work together to make cookie, pumpkin_pie.", + "agent_count": 3, + "target": { + "cookie": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "1": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "2": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cookie_1_pumpkin_pie": { + "conversation": "Let's work together to make cookie, pumpkin_pie, cooked_chicken.", + "agent_count": 3, + "target": { + "cookie": 1, + "pumpkin_pie": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_mutton, suspicious_stew, mushroom_stew.", + "agent_count": 3, + "target": { + "cooked_mutton": 1, + "suspicious_stew": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 mushroom_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 mushroom_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 mushroom_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + } + }, + "multiagent_cooking_3_1_cooked_rabbit_1_golden_carrot": { + "conversation": "Let's work together to make cooked_rabbit, golden_carrot.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make golden_carrot, suspicious_stew, beetroot_soup.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "suspicious_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + } + }, + "multiagent_cooking_3_1_cooked_rabbit_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_rabbit, mushroom_stew.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + } + }, + "multiagent_cooking_3_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make golden_carrot, pumpkin_pie.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, cooked_mutton, golden_carrot.", + "agent_count": 3, + "target": { + "mushroom_stew": 1, + "cooked_mutton": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 golden_carrot. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 golden_carrot. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 golden_carrot. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make cookie, cooked_chicken, golden_carrot.", + "agent_count": 3, + "target": { + "cookie": 1, + "cooked_chicken": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot": { + "conversation": "Let's work together to make cooked_mutton, cooked_rabbit, golden_carrot.", + "agent_count": 3, + "target": { + "cooked_mutton": 1, + "cooked_rabbit": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 golden_carrot. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 golden_carrot. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 golden_carrot. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken": { + "conversation": "Let's work together to make beetroot_soup, cooked_chicken.", + "agent_count": 3, + "target": { + "beetroot_soup": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_3_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make golden_carrot, suspicious_stew.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_3_1_cooked_rabbit_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_rabbit, pumpkin_pie, golden_carrot.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "pumpkin_pie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_cookie_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_porkchop, cookie, pumpkin_pie.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "cookie": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_rabbit, beetroot_soup.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop_1_cookie": { + "conversation": "Let's work together to make cookie, beetroot_soup, cooked_porkchop.", + "agent_count": 3, + "target": { + "cookie": 1, + "beetroot_soup": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "1": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "2": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make cooked_porkchop, cookie, golden_carrot.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "cookie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop": { + "conversation": "Let's work together to make cooked_porkchop, beetroot_soup, cooked_chicken.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "beetroot_soup": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_chicken, golden_carrot, pumpkin_pie.", + "agent_count": 3, + "target": { + "cooked_chicken": 1, + "golden_carrot": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_rabbit_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_chicken, cooked_rabbit, mushroom_stew.", + "agent_count": 3, + "target": { + "cooked_chicken": 1, + "cooked_rabbit": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_porkchop, cooked_rabbit.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_3_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make cookie, golden_carrot.", + "agent_count": 3, + "target": { + "cookie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "1": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "2": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + } + }, + "multiagent_cooking_3_1_cooked_rabbit_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make mushroom_stew, suspicious_stew, cooked_rabbit.", + "agent_count": 3, + "target": { + "mushroom_stew": 1, + "suspicious_stew": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_rabbit. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_rabbit. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_rabbit. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_porkchop, golden_carrot, mushroom_stew.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "golden_carrot": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + } + }, + "multiagent_cooking_3_1_golden_carrot_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make mushroom_stew, golden_carrot, pumpkin_pie.", + "agent_count": 3, + "target": { + "mushroom_stew": 1, + "golden_carrot": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_rabbit_1_cookie": { + "conversation": "Let's work together to make beetroot_soup, cooked_rabbit, cookie.", + "agent_count": 3, + "target": { + "beetroot_soup": 1, + "cooked_rabbit": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_porkchop, mushroom_stew.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cookie_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, cookie, cooked_chicken.", + "agent_count": 3, + "target": { + "mushroom_stew": 1, + "cookie": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cooked_porkchop, golden_carrot.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "cooked_porkchop": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_mushroom_stew": { + "conversation": "Let's work together to make beetroot_soup, mushroom_stew.", + "agent_count": 3, + "target": { + "beetroot_soup": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton_1_cookie": { + "conversation": "Let's work together to make beetroot_soup, cookie, cooked_mutton.", + "agent_count": 3, + "target": { + "beetroot_soup": 1, + "cookie": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_mutton. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_mutton. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_mutton. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, beetroot_soup, cooked_chicken.", + "agent_count": 3, + "target": { + "mushroom_stew": 1, + "beetroot_soup": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_mutton_1_cooked_porkchop": { + "conversation": "Let's work together to make cooked_chicken, cooked_porkchop, cooked_mutton.", + "agent_count": 3, + "target": { + "cooked_chicken": 1, + "cooked_porkchop": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cooked_mutton.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cookie": { + "conversation": "Let's work together to make cooked_chicken, cookie.", + "agent_count": 3, + "target": { + "cooked_chicken": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_3_1_cookie_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, pumpkin_pie, cookie.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "pumpkin_pie": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton": { + "conversation": "Let's work together to make beetroot_soup, cooked_mutton.", + "agent_count": 3, + "target": { + "beetroot_soup": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_cooked_porkchop_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_mutton, cooked_porkchop, cooked_rabbit.", + "agent_count": 3, + "target": { + "cooked_mutton": 1, + "cooked_porkchop": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 cooked_rabbit. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 cooked_rabbit. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 cooked_rabbit. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_3_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_rabbit, golden_carrot, mushroom_stew.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "golden_carrot": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_golden_carrot": { + "conversation": "Let's work together to make cooked_porkchop, golden_carrot.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, beetroot_soup.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_porkchop, pumpkin_pie.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_cooked_rabbit_1_cookie": { + "conversation": "Let's work together to make cooked_porkchop, cooked_rabbit, cookie.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "cooked_rabbit": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit, 1 cookie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit, 1 cookie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit, 1 cookie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_3_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make mushroom_stew, suspicious_stew.", + "agent_count": 3, + "target": { + "mushroom_stew": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, beetroot_soup.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton": { + "conversation": "Let's work together to make cooked_mutton, cooked_chicken, beetroot_soup.", + "agent_count": 3, + "target": { + "cooked_mutton": 1, + "cooked_chicken": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, cooked_chicken.", + "agent_count": 3, + "target": { + "mushroom_stew": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_rabbit, beetroot_soup, cooked_mutton.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "beetroot_soup": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." + } + }, + "multiagent_cooking_3_1_cooked_rabbit_1_cookie": { + "conversation": "Let's work together to make cooked_rabbit, cookie.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_rabbit, beetroot_soup, cooked_porkchop.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "beetroot_soup": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_cooked_rabbit_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_mutton, mushroom_stew, cooked_rabbit.", + "agent_count": 3, + "target": { + "cooked_mutton": 1, + "mushroom_stew": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_cookie_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_mutton, cookie, suspicious_stew.", + "agent_count": 3, + "target": { + "cooked_mutton": 1, + "cookie": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_porkchop_1_cookie": { + "conversation": "Let's work together to make cookie, cooked_porkchop, cooked_chicken.", + "agent_count": 3, + "target": { + "cookie": 1, + "cooked_porkchop": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_golden_carrot": { + "conversation": "Let's work together to make cooked_chicken, golden_carrot.", + "agent_count": 3, + "target": { + "cooked_chicken": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + } + }, + "multiagent_cooking_3_1_cooked_rabbit_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make mushroom_stew, pumpkin_pie, cooked_rabbit.", + "agent_count": 3, + "target": { + "mushroom_stew": 1, + "pumpkin_pie": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 pumpkin_pie, 1 cooked_rabbit. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 pumpkin_pie, 1 cooked_rabbit. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 pumpkin_pie, 1 cooked_rabbit. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make pumpkin_pie, suspicious_stew, cooked_porkchop.", + "agent_count": 3, + "target": { + "pumpkin_pie": 1, + "suspicious_stew": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, beetroot_soup.", + "agent_count": 3, + "target": { + "pumpkin_pie": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_cooked_porkchop_1_cookie": { + "conversation": "Let's work together to make cookie, cooked_porkchop, cooked_mutton.", + "agent_count": 3, + "target": { + "cookie": 1, + "cooked_porkchop": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, pumpkin_pie, cooked_chicken.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "pumpkin_pie": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_cookie_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_mutton, pumpkin_pie, cookie.", + "agent_count": 3, + "target": { + "cooked_mutton": 1, + "pumpkin_pie": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_mutton_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_chicken, cooked_rabbit, cooked_mutton.", + "agent_count": 3, + "target": { + "cooked_chicken": 1, + "cooked_rabbit": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_rabbit_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_chicken, cooked_rabbit, pumpkin_pie.", + "agent_count": 3, + "target": { + "cooked_chicken": 1, + "cooked_rabbit": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_rabbit_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_rabbit, cooked_chicken, suspicious_stew.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "cooked_chicken": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + }, + "multiagent_cooking_3_1_cookie_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make golden_carrot, suspicious_stew, cookie.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "suspicious_stew": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make cookie, golden_carrot, cooked_mutton.", + "agent_count": 3, + "target": { + "cookie": 1, + "golden_carrot": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "1": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "2": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_rabbit, cooked_mutton.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make mushroom_stew, beetroot_soup, pumpkin_pie.", + "agent_count": 3, + "target": { + "mushroom_stew": 1, + "beetroot_soup": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, beetroot_soup, cooked_mutton.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "beetroot_soup": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop": { + "conversation": "Let's work together to make beetroot_soup, cooked_porkchop.", + "agent_count": 3, + "target": { + "beetroot_soup": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_chicken, suspicious_stew.", + "agent_count": 3, + "target": { + "cooked_chicken": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + } + } + } \ No newline at end of file

    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

    ;;+i@J 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 z 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

    miAbFQO50VV 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 duWUSw9elQse0i17w2YMH&YWt@`yN*Jx*{=Y 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

  • ?mvGo^MMtf&@yj0&E*isPn#s^*3GWH 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%0Dekk|JC|#ne!i0I(Y@@XWm)3W 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 i4L`2zjR>HR~x|;Jbk0pQmq*PrM3b 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