mirror of
https://github.com/kolbytn/mindcraft.git
synced 2025-08-13 10:45:34 +02:00
add more single agent tasks
This commit is contained in:
parent
d0ddc8f611
commit
379047c5bb
1 changed files with 86 additions and 0 deletions
|
@ -70,6 +70,80 @@
|
||||||
"type": "techtree",
|
"type": "techtree",
|
||||||
"timeout": 500
|
"timeout": 500
|
||||||
},
|
},
|
||||||
|
"crafting_gold_ingot": {
|
||||||
|
"goal": "Get gold ingot.",
|
||||||
|
"initial_inventory": {
|
||||||
|
"iron_pickaxe": 1
|
||||||
|
},
|
||||||
|
"agent_count": 1,
|
||||||
|
"target": "gold_ingot",
|
||||||
|
"number_of_target": 1,
|
||||||
|
"type": "techtree",
|
||||||
|
"timeout": 500
|
||||||
|
},
|
||||||
|
"crafting_copper_ingot": {
|
||||||
|
"goal": "Get copper ingot.",
|
||||||
|
"initial_inventory": {
|
||||||
|
"iron_pickaxe": 1
|
||||||
|
},
|
||||||
|
"agent_count": 1,
|
||||||
|
"target": "copper_ingot",
|
||||||
|
"number_of_target": 1,
|
||||||
|
"type": "techtree",
|
||||||
|
"timeout": 500
|
||||||
|
},
|
||||||
|
"crafting_diamond": {
|
||||||
|
"goal": "Get diamond.",
|
||||||
|
"initial_inventory": {
|
||||||
|
"iron_pickaxe": 1
|
||||||
|
},
|
||||||
|
"agent_count": 1,
|
||||||
|
"target": "diamond",
|
||||||
|
"number_of_target": 1,
|
||||||
|
"type": "techtree",
|
||||||
|
"timeout": 1000
|
||||||
|
},
|
||||||
|
"crafting_pink_wool_missing_wool": {
|
||||||
|
"goal": "Craft a pink wool.",
|
||||||
|
"initial_inventory": {
|
||||||
|
"pink_dye": 1,
|
||||||
|
"shears": 1
|
||||||
|
},
|
||||||
|
"agent_count": 1,
|
||||||
|
"target": "pink_wool",
|
||||||
|
"number_of_target": 1,
|
||||||
|
"type": "techtree",
|
||||||
|
"timeout": 500
|
||||||
|
},
|
||||||
|
"crafting_purple_wool_missing_blue_dye": {
|
||||||
|
"goal": "Craft a purple wool.",
|
||||||
|
"initial_inventory": {
|
||||||
|
"red_dye": 1,
|
||||||
|
"shears": 1
|
||||||
|
},
|
||||||
|
"agent_count": 1,
|
||||||
|
"target": "purple_wool",
|
||||||
|
"number_of_target": 1,
|
||||||
|
"type": "techtree",
|
||||||
|
"timeout": 500
|
||||||
|
},
|
||||||
|
"crafting_lodestone": {
|
||||||
|
"goal": "Craft a lodestone.",
|
||||||
|
"initial_inventory": {
|
||||||
|
"netherite_ingot": 1
|
||||||
|
},
|
||||||
|
"agent_count": 1,
|
||||||
|
"target": "lodestone",
|
||||||
|
"timeout": 500
|
||||||
|
},
|
||||||
|
"crafting_blue_dye": {
|
||||||
|
"goal": "Craft a blue dye.",
|
||||||
|
"agent_count": 1,
|
||||||
|
"target": "blue_dye",
|
||||||
|
"number_of_target": 1,
|
||||||
|
"type": "techtree",
|
||||||
|
"timeout": 500
|
||||||
|
},
|
||||||
"crafting_light_gray_banner": {
|
"crafting_light_gray_banner": {
|
||||||
"goal": "Craft a light gray banner.",
|
"goal": "Craft a light gray banner.",
|
||||||
"initial_inventory": {
|
"initial_inventory": {
|
||||||
|
@ -117,6 +191,18 @@
|
||||||
"type": "techtree",
|
"type": "techtree",
|
||||||
"timeout": 500
|
"timeout": 500
|
||||||
},
|
},
|
||||||
|
"crafting_chest_minecart": {
|
||||||
|
"goal": "Craft a chest",
|
||||||
|
"agent_count": 1,
|
||||||
|
"initial_inventory":{
|
||||||
|
"chest": 1,
|
||||||
|
"minecart": 1
|
||||||
|
},
|
||||||
|
"target": "chest_minecart",
|
||||||
|
"number_of_target": 1,
|
||||||
|
"type": "techtree",
|
||||||
|
"timeout": 500
|
||||||
|
},
|
||||||
"crafting_stone_hoe": {
|
"crafting_stone_hoe": {
|
||||||
"goal": "Craft a stone hoe.",
|
"goal": "Craft a stone hoe.",
|
||||||
"initial_inventory": {
|
"initial_inventory": {
|
||||||
|
|
Loading…
Add table
Reference in a new issue