支持更多方块插入频道卡

This commit is contained in:
GaLicn 2025-09-22 19:21:55 +08:00
parent 1589f179cd
commit 4745be1063
3 changed files with 8 additions and 3 deletions

View File

@ -48,9 +48,10 @@ public class UpgradeCards {
//AE2 的输入/输出/存储总线支持频道卡部件
String ioBusGroup = GuiText.IOBuses.getTranslationKey();
String storageGroup = "group.storage.name";
Upgrades.add(ModItems.CHANNEL_CARD.get(), AEParts.IMPORT_BUS, 1, ioBusGroup);
Upgrades.add(ModItems.CHANNEL_CARD.get(), AEParts.EXPORT_BUS, 1, ioBusGroup);
Upgrades.add(ModItems.CHANNEL_CARD.get(), AEParts.STORAGE_BUS, 1, ioBusGroup);
Upgrades.add(ModItems.CHANNEL_CARD.get(), AEParts.STORAGE_BUS, 1, storageGroup);
//EAE 的扩展输入/输出总线支持频道卡部件
Upgrades.add(ModItems.CHANNEL_CARD.get(), EX_IMPORT_BUS, 1, ioBusGroup);

View File

@ -92,5 +92,6 @@
"item.extendedae_plus.channel_card": "Channel Card",
"item.extendedae_plus.channel_card.channel": "Frequency: %s",
"item.extendedae_plus.channel_card.channel.unset": "Frequency: Unset",
"item.extendedae_plus.channel_card.set": "Frequency set to: %s"
"item.extendedae_plus.channel_card.set": "Frequency set to: %s",
"group.storage.name": "StorageBus"
}

View File

@ -97,5 +97,8 @@
"item.extendedae_plus.channel_card": "频道卡",
"item.extendedae_plus.channel_card.channel": "频率:%s",
"item.extendedae_plus.channel_card.channel.unset": "频率:未设置",
"item.extendedae_plus.channel_card.set": "已设置频率:%s"
"item.extendedae_plus.channel_card.set": "已设置频率:%s",
"group.pattern_provider.name": "样板供应器",
"group.entity_ticker.name": "实体加速器",
"group.storage.name": "存储总线"
}