添加套娃配方

This commit is contained in:
Atsuihsio 2025-03-11 18:50:24 +08:00
parent 4f2824958e
commit 2b1d464a97
5 changed files with 58 additions and 0 deletions

View file

@ -193,6 +193,9 @@
"curios.identifier.dog_tag": "Dog Tag", "curios.identifier.dog_tag": "Dog Tag",
"item.superbwarfare.cell": "Cell", "item.superbwarfare.cell": "Cell",
"item.superbwarfare.battery": "Battery", "item.superbwarfare.battery": "Battery",
"item.superbwarfare.small_battery_pack": "Small Battery Pack",
"item.superbwarfare.medium_battery_pack": "Medium Battery Pack",
"item.superbwarfare.large_battery_pack": "Large Battery Pack",
"item.superbwarfare.drone": "Drone", "item.superbwarfare.drone": "Drone",
"item.superbwarfare.monitor": "Monitor", "item.superbwarfare.monitor": "Monitor",
"des.superbwarfare.monitor": "Drone Distance: %1$s", "des.superbwarfare.monitor": "Drone Distance: %1$s",

View file

@ -193,6 +193,9 @@
"curios.identifier.dog_tag": "狗牌", "curios.identifier.dog_tag": "狗牌",
"item.superbwarfare.cell": "电池", "item.superbwarfare.cell": "电池",
"item.superbwarfare.battery": "大型电池", "item.superbwarfare.battery": "大型电池",
"item.superbwarfare.small_battery_pack": "小型电池组",
"item.superbwarfare.medium_battery_pack": "中型电池组",
"item.superbwarfare.large_battery_pack": "大型电池组",
"item.superbwarfare.drone": "无人机", "item.superbwarfare.drone": "无人机",
"item.superbwarfare.monitor": "遥控器", "item.superbwarfare.monitor": "遥控器",
"des.superbwarfare.monitor": "无人机距离你: %1$s", "des.superbwarfare.monitor": "无人机距离你: %1$s",

View file

@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"pattern": [
"aa",
"aa"
],
"key": {
"a": {
"item": "superbwarfare:medium_battery_pack"
}
},
"result": {
"item": "superbwarfare:large_battery_pack",
"count": 1
}
}

View file

@ -0,0 +1,18 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"pattern": [
"aaa",
"aaa",
"aaa"
],
"key": {
"a": {
"item": "superbwarfare:small_battery_pack"
}
},
"result": {
"item": "superbwarfare:medium_battery_pack",
"count": 1
}
}

View file

@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"pattern": [
"aa",
"aa"
],
"key": {
"a": {
"item": "superbwarfare:battery"
}
},
"result": {
"item": "superbwarfare:small_battery_pack",
"count": 1
}
}