Added more recipes

This commit is contained in:
DBotThePony 2022-01-14 18:27:28 +07:00
parent 24ec919450
commit c6772f8003
Signed by: DBot
GPG Key ID: DCC23B5715498507
12 changed files with 171 additions and 5 deletions

View File

@ -26,7 +26,7 @@ class MatteryRecipeProvider(generatorIn: DataGenerator) : RecipeProvider(generat
fun plate(id: String, count: Int = 1, workTicks: Int = 200) {
lambda { it, callback ->
callback.accept(PlatePressShallowFinishedRecipe(
ResourceLocation(DataGen.MOD_ID, "plate/$id"),
ResourceLocation(DataGen.MOD_ID, "plates/$id"),
ResourceLocation("forge", "ingots/$id"),
ResourceLocation("forge", "plates/$id"),
count,

View File

@ -125,9 +125,9 @@ public class Registry {
public static final ResourceLocation DRIVE_VIEWER = loc("drive_viewer"); // есть рецепт
public static final ResourceLocation DRIVE_RACK = loc("drive_rack"); // нужен рецепт (после улучшений)
public static final ResourceLocation ITEM_MONITOR = loc("item_monitor"); // нужен рецепт (после улучшений)
public static final ResourceLocation ENERGY_COUNTER = loc("energy_counter"); // нужен рецепт
public static final ResourceLocation CHEMICAL_GENERATOR = loc("chemical_generator"); // нужен рецепт
public static final ResourceLocation PLATE_PRESS = loc("plate_press"); // нужен рецепт
public static final ResourceLocation ENERGY_COUNTER = loc("energy_counter"); // есть рецепт
public static final ResourceLocation CHEMICAL_GENERATOR = loc("chemical_generator"); // есть рецепт
public static final ResourceLocation PLATE_PRESS = loc("plate_press"); // есть рецепт
public static final ResourceLocation DEBUG_EXPLOSION_SMALL = loc("debug_explosion_small");

View File

@ -19,6 +19,6 @@
"result": {
"item": "overdrive_that_matters:gold_wiring",
"count": 16
"count": 8
}
}

View File

@ -0,0 +1,19 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"II ",
"IS ",
" S "
],
"key": {
"S": {"tag": "forge:rods/wooden"},
"I": {"tag": "forge:ingots/tritanium"}
},
"result": {
"item": "overdrive_that_matters:tritanium_axe",
"count": 1
}
}

View File

@ -0,0 +1,19 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
" II",
" SI",
" S "
],
"key": {
"S": {"tag": "forge:rods/wooden"},
"I": {"tag": "forge:ingots/tritanium"}
},
"result": {
"item": "overdrive_that_matters:tritanium_axe",
"count": 1
}
}

View File

@ -0,0 +1,19 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"II ",
" S ",
" S "
],
"key": {
"S": {"tag": "forge:rods/wooden"},
"I": {"tag": "forge:ingots/tritanium"}
},
"result": {
"item": "overdrive_that_matters:tritanium_hoe",
"count": 1
}
}

View File

@ -0,0 +1,19 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"III",
" S ",
" S "
],
"key": {
"S": {"tag": "forge:rods/wooden"},
"I": {"tag": "forge:ingots/tritanium"}
},
"result": {
"item": "overdrive_that_matters:tritanium_pickaxe",
"count": 1
}
}

View File

@ -0,0 +1,19 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
" I ",
" S ",
" S "
],
"key": {
"S": {"tag": "forge:rods/wooden"},
"I": {"tag": "forge:ingots/tritanium"}
},
"result": {
"item": "overdrive_that_matters:tritanium_shovel",
"count": 1
}
}

View File

@ -0,0 +1,19 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
" I ",
" I ",
" S "
],
"key": {
"S": {"tag": "forge:rods/wooden"},
"I": {"tag": "forge:ingots/tritanium"}
},
"result": {
"item": "overdrive_that_matters:tritanium_sword",
"count": 1
}
}

View File

@ -0,0 +1,21 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
" B ",
"IFI",
"E E"
],
"key": {
"F": {"item": "minecraft:furnace"},
"I": {"tag": "forge:ingots/iron"},
"E": {"item": "overdrive_that_matters:electric_parts"},
"B": {"item": "overdrive_that_matters:energy_bus"}
},
"result": {
"item": "overdrive_that_matters:chemical_generator",
"count": 1
}
}

View File

@ -0,0 +1,21 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
" E ",
"TFT",
"P P"
],
"key": {
"P": {"item": "minecraft:piston"},
"T": {"tag": "forge:ingots/tritanium"},
"E": {"item": "overdrive_that_matters:electric_parts"},
"F": {"item": "overdrive_that_matters:machine_frame"}
},
"result": {
"item": "overdrive_that_matters:plate_press",
"count": 1
}
}

View File

@ -0,0 +1,10 @@
{
"type": "overdrive_that_matters:plate_press",
"input": {
"tag": "forge:sand"
},
"result": {
"item": "overdrive_that_matters:circuit_plating"
},
"work_time": 120
}