This commit is contained in:
2026-04-23 00:51:28 +03:00
parent 174e9dfb08
commit cdb0ffd6a5
22 changed files with 386 additions and 28 deletions
+16 -1
View File
@@ -6,11 +6,26 @@ static var _list: Array[Dictionary] = [
{
"ingredients": ["leather", "stick"],
"result_scene": "res://scenes/LeatherBoots.tscn",
"speed_threshold": 18.0,
"speed_threshold": 0.5,
},
{
"ingredients": ["rock", "rock"],
"result_scene": "res://scenes/Boulder.tscn",
"speed_threshold": 5.0,
},
{
"ingredients": ["stick", "stick"],
"result_scene": "res://scenes/StickArmor.tscn",
"speed_threshold": 18.0,
},
{
"ingredients": ["leather", "rock"],
"result_scene": "res://scenes/LeatherArmor.tscn",
"speed_threshold": 18.0,
},
{
"ingredients": ["leather", "metal_plate"],
"result_scene": "res://scenes/PlateArmor.tscn",
"speed_threshold": 18.0,
},
]