移除实体加速器配方

This commit is contained in:
GaLi 2026-03-01 16:31:36 +08:00
parent 8f4a735e43
commit 9b4212dda8
3 changed files with 2 additions and 84 deletions

View File

@ -1,48 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_entity_speed_card_x2": {
"conditions": {
"items": [
{
"items": [
"extendedae_plus:entity_speed_card"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_singularity": {
"conditions": {
"items": [
{
"items": [
"ae2:singularity"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "extendedae_plus:entity_speed_ticker"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_entity_speed_card_x2",
"has_singularity",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"extendedae_plus:entity_speed_ticker"
]
},
"sends_telemetry_event": false
}

View File

@ -1,34 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"key": {
"I": {
"item": "expatternprovider:ex_io_port"
},
"Q": {
"item": "ae2:singularity"
},
"S": {
"type": "forge:nbt",
"item": "extendedae_plus:entity_speed_card",
"nbt": {
"EAS:mult": 2
}
},
"X": {
"item": "minecraft:nether_star"
},
"Z": {
"item": "ae2:dense_energy_cell"
}
},
"pattern": [
"SZS",
"QXQ",
"SIS"
],
"result": {
"type": "forge:partial_nbt",
"item": "extendedae_plus:entity_speed_ticker"
},
"show_notification": true
}

View File

@ -72,7 +72,7 @@ public class CraftingRecipes extends RecipeProvider {
.save(consumer);
// 实体加速器
NBTShapedRecipeBuilder.shaped(RecipeCategory.MISC, ModItems.ENTITY_TICKER_PART_ITEM.get())
/* NBTShapedRecipeBuilder.shaped(RecipeCategory.MISC, ModItems.ENTITY_TICKER_PART_ITEM.get())
.pattern("SZS")
.pattern("QXQ")
.pattern("SIS")
@ -83,7 +83,7 @@ public class CraftingRecipes extends RecipeProvider {
.define('I', EPPItemAndBlock.EX_IO_PORT)
.unlockedBy("has_entity_speed_card_x2", has(EntitySpeedCardItem.withMultiplier(2).getItem()))
.unlockedBy("has_singularity", has(AEItems.SINGULARITY))
.save(consumer);
.save(consumer);*/
// 上传核心
ShapelessRecipeBuilder.shapeless(RecipeCategory.MISC, ModItems.ASSEMBLER_MATRIX_UPLOAD_CORE.get())