circuits and the skill to make them added. also fixed spelling wolframite (tungston ore)

This commit is contained in:
Your Name 2026-03-29 01:51:03 -05:00
parent 9619c5ed6b
commit e9339f1cac
15 changed files with 185 additions and 12 deletions

View File

@ -0,0 +1,11 @@
{
"materials": {
"id": "original:circuit_advanced",
"texture": "test/assets/textures/materials/circuits/advanced_circuit.png",
"displayName": "items.materials.original.circuits.advanced",
"description": "items.materials.original.circuits.advanced.desc",
"meta": {
"storeCategory": "original:materials"
}
}
}

View File

@ -0,0 +1,11 @@
{
"materials": {
"id": "original:circuit_ai_core",
"texture": "test/assets/textures/materials/circuits/ai_core.png",
"displayName": "items.materials.original.circuits.ai_core",
"description": "items.materials.original.circuits.ai_core.desc",
"meta": {
"storeCategory": "original:materials"
}
}
}

View File

@ -0,0 +1,11 @@
{
"materials": {
"id": "original:circuit_basic",
"texture": "test/assets/textures/materials/circuits/basic_circuit.png",
"displayName": "items.materials.original.circuits.basic",
"description": "items.materials.original.circuits.basic.desc",
"meta": {
"storeCategory": "original:materials"
}
}
}

View File

@ -0,0 +1,11 @@
{
"materials": {
"id": "original:circuit_processing_unit",
"texture": "test/assets/textures/materials/circuits/processing.png",
"displayName": "items.materials.original.circuits.processing_unit",
"description": "items.materials.original.circuits.processing_unit.desc",
"meta": {
"storeCategory": "original:materials"
}
}
}

View File

@ -0,0 +1,11 @@
{
"materials": {
"id": "original:circuit_quantum_processor",
"texture": "test/assets/textures/materials/circuits/quantum_processor.png",
"displayName": "items.materials.original.circuits.quantum_processor",
"description": "items.materials.original.circuits.quantum_processor.desc",
"meta": {
"storeCategory": "original:materials"
}
}
}

View File

@ -0,0 +1,11 @@
{
"materials": {
"id": "original:ore_wolframite",
"texture": "test/assets/textures/materials/ore/wolframite.png",
"displayName": "items.materials.original.ores.wolframite",
"description": "items.materials.original.ores.wolframite.desc",
"meta": {
"storeCategory": "original:materials"
}
}
}

View File

@ -1,11 +0,0 @@
{
"materials": {
"id": "original:ore_wolfrinite",
"texture": "original/assets/textures/materials/ore/wolfrinite.png",
"displayName": "items.materials.original.ores.wolfrinite",
"description": "items.materials.original.ores.wolfrinite.desc",
"meta": {
"storeCategory": "original:materials"
}
}
}

View File

@ -0,0 +1,21 @@
{
"recipe": {
"inputs": [
{"original:circuit_basic": 2},
{"original:ingot_gold": 1},
{"original:ore_coal": 2}
],
"output": {
"original:circuit_advanced": 1
},
"time_seconds": 20,
"requires": {
"original:circuit_assembly": 0
}
},
"craft": {
"type": "original:circuits",
"id": "original:circuit_advanced"
}
}

View File

@ -0,0 +1,20 @@
{
"recipe": {
"inputs": [
{"original:circuit_quantum_processor": 2},
{"original:dimentional_crystal": 1}
],
"output": {
"original:circuit_ai_core": 1
},
"time_seconds": 20,
"requires": {
"original:circuit_assembly": 0
}
},
"craft": {
"type": "original:circuits",
"id": "original:circuit_ai_core"
}
}

View File

@ -0,0 +1,20 @@
{
"recipe": {
"inputs": [
{"original:ingot_copper": 1 },
{"original:ingot_iron": 1 }
],
"output": {
"original:circuit_basic": 1
},
"time_seconds": 10,
"requires": {
"original:circuit_assembly": 0
}
},
"craft": {
"type": "original:circuits",
"id": "original:circuit_basic"
}
}

View File

@ -0,0 +1,21 @@
{
"recipe": {
"inputs": [
{"original:circuit_advanced": 1},
{"original:flux_crystal": 1},
{"original:ingot_gold": 2}
],
"output": {
"original:circuit_processing_unit": 1
},
"time_seconds": 20,
"requires": {
"original:circuit_assembly": 0
}
},
"craft": {
"type": "original:circuits",
"id": "original:circuit_processing_unit"
}
}

View File

@ -0,0 +1,21 @@
{
"recipe": {
"inputs": [
{"original:circuit_processing_unit": 1},
{"original:flux_core": 1},
{"original:superconductor": 2}
],
"output": {
"original:circuit_quantum_processor": 1
},
"time_seconds": 20,
"requires": {
"original:circuit_assembly": 0
}
},
"craft": {
"type": "original:circuits",
"id": "original:circuit_processing"
}
}

View File

@ -2,7 +2,7 @@
"recipe": {
"inputs": [
{ "original:ore_gold": 1 },
{ "original:ore_coal": 1 }
{ "original:ore_coal": 2 }
],
"output": {
"original:ingot_gold": 1

View File

@ -0,0 +1,15 @@
{
"skills": {
"id": "original:circuit_assembly",
"displayName": "skills.category.original.crafting.circuit_assembly",
"description": "skills.category.original.crafting.circuit_assembly.desc",
"meta": {
"category": "crafting",
"topLevel": 10,
"math": {
"start": 500,
"input": 1.7
}
}
}
}