添加合成表

This commit is contained in:
GaLicn 2025-09-23 19:30:42 +08:00
parent bb6bb61001
commit a3ae6b0335
3 changed files with 12 additions and 1 deletions

View File

@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx1G
loom.platform = forge
# Mod properties
mod_version = 1.4.3
mod_version = 1.4.3-beta
maven_group = com.extendedae_plus
archives_name = extendedae_plus

View File

@ -37,6 +37,9 @@ public final class ModCreativeTabs {
output.accept(ModItems.createEntitySpeedCardStack(16));
output.accept(ModItems.INFINITY_BIGINTEGER_CELL_ITEM.get());
// 频道卡
output.accept(ModItems.CHANNEL_CARD.get());
})
.build());
}

View File

@ -0,0 +1,8 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{ "item": "ae2:advanced_card" },
{ "item": "extendedae_plus:wireless_transceiver" }
],
"result": { "item": "extendedae_plus:channel_card", "count": 1 }
}