Skip to content

Commit

Permalink
wrap up electrolosis chamber
Browse files Browse the repository at this point in the history
  • Loading branch information
skiprocks999 committed Nov 26, 2024
1 parent f048f91 commit 0d45eb6
Show file tree
Hide file tree
Showing 47 changed files with 1,267 additions and 683 deletions.
2 changes: 1 addition & 1 deletion runs/client/defaultconfigs/electrodynamics.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ I:default=5000 -> GAS_TRANSFORMER_ADDON_TANK_CAPCITY='5000'
I:default=5 -> GAS_TRANSFORMER_ADDON_TANK_LIMIT='5'
D:default=100.0 -> MOTORCOMPLEX_USAGE_PER_TICK='100.0'
D:default=10.0 -> PIPE_PUMP_USAGE_PER_TICK='10.0'
D:default=50000.0 -> ELECTROLOSIS_CHAMBER_TARGET_JOULES='50000.0'
D:default=100000.0 -> ELECTROLOSIS_CHAMBER_TARGET_JOULES='100000.0'
D:default=100.0 -> QUARRY_USAGE_PER_TICK='100.0'
I:default=10 -> QUARRY_WATERUSAGE_PER_BLOCK='10'
Comment: 'max radius = 128, min radius = 2'
Expand Down
2 changes: 1 addition & 1 deletion runs/client/usercache.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
[{"name":"Dev","uuid":"380df991-f603-344c-a090-369bad2a924a","expiresOn":"2024-12-24 21:36:35 -0600"}]
[{"name":"Dev","uuid":"380df991-f603-344c-a090-369bad2a924a","expiresOn":"2024-12-25 20:15:16 -0600"}]
16 changes: 16 additions & 0 deletions src/generated/resources/assets/electrodynamics/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -873,8 +873,23 @@
"guidebook.electrodynamics.chapter.electricity.voltageexample": "Examples of %sV machines:",
"guidebook.electrodynamics.chapter.electricity.voltageexamplenote": "Note the markings are not always at the base.",
"guidebook.electrodynamics.chapter.electricity.voltageval": "%1$s V : %2$s",
"guidebook.electrodynamics.chapter.electricity.white": "White",
"guidebook.electrodynamics.chapter.electricity.wires": "Wires",
"guidebook.electrodynamics.chapter.electricity.yellow": "Yellow",
"guidebook.electrodynamics.chapter.electrolosischamber": "Electrolosis Chamber",
"guidebook.electrodynamics.chapter.electrolosischamber.count": "%1$s %2$s",
"guidebook.electrodynamics.chapter.electrolosischamber.impurefluid": "Impure Mineral Fluid",
"guidebook.electrodynamics.chapter.electrolosischamber.l1": "The Electrolosis Chamber is Electrodynamics's solution to late game ore processing. While many mods choose to balance their solutions by requiring a finite resource to run, Electrodynamics has chosen to make its limiting factor electricity (somewhat in character I might add). With it, you are able to process any metal ore and decuple (%1$s) it. This may seem broken on the surface until you read the price tag of %2$s to run it. This chapter will walk you through the machine and the decupling process.",
"guidebook.electrodynamics.chapter.electrolosischamber.l2": "Before you can use the Electrolosis Chamber itself, you will first need to pre-process the metal. This is accomplished by washing the metallic ore with both Aqua Regia and Sulfuric Acid in a Chemical Reactor. While both of these acids are expensive to make, you will observe that you get back the same amount you put into the process. This allows you to create a feedback loop with the acid to re-use it. The result of this feedback process is %s.",
"guidebook.electrodynamics.chapter.electrolosischamber.l3": "The Impure Mineral Fluid is what is actually processed by the Electrolosis Chamber. The machine itself is a 5 x 5 x 3 multiblock. To build it, you will need %1$s, %2$s, %3$s, %4$s, %5$s, and the %6$s itself. Below is how to assemble the multiblock:",
"guidebook.electrodynamics.chapter.electrolosischamber.l4": "Now place the Chamber inside the spot created:",
"guidebook.electrodynamics.chapter.electrolosischamber.l5": "Next right-click the chamber with a wrench:",
"guidebook.electrodynamics.chapter.electrolosischamber.l6": "This will form the mulitblock. You will hear the sound of an anvil being placed. To dis-assemble the multiblock, you can either right-click the Chamber with a wrench again, or break any of the constituent blocks.",
"guidebook.electrodynamics.chapter.electrolosischamber.l7": "Now that the chamber is formed, we can discuss how it works. Upon opening the GUI, you will notice that unlike many Electrodynamics machines, the Chamber cannot accept any upgrades:",
"guidebook.electrodynamics.chapter.electrolosischamber.l8": "Instead, speed is measured by the energy satisfaction of the machine, the rating of which is displayed via the energy tab in the GUI. A satisfaction of 100% will result in the chamber processing 1 milibucket of fluid per tick. Any greater than this will result in the chamber processing multiple milibuckets of fluid every tick. In short, the more power you throw at it, the faster it will go.",
"guidebook.electrodynamics.chapter.electrolosischamber.multiply": "10x",
"guidebook.electrodynamics.chapter.electrolosischamber.seperatororient": "Note the orientation of the Electrolytic Seperator doesn't matter",
"guidebook.electrodynamics.chapter.electrolosischamber.step": "Step %s:",
"guidebook.electrodynamics.chapter.fluids": "Fluids",
"guidebook.electrodynamics.chapter.fluids.blacklist": "Blacklist",
"guidebook.electrodynamics.chapter.fluids.fluidinput": "Input: Blue",
Expand Down Expand Up @@ -1327,6 +1342,7 @@
"jei.chemical_crystallizer_recipe": "Chemical Crystalizer",
"jei.chemical_mixer_recipe": "Chemical Mixer",
"jei.chemical_reactor_recipe": "Chemical Reactor",
"jei.electrolosis_chamber_recipe": "Electrolosis Chamber",
"jei.electrolytic_separator_recipe": "Electrolytic Separator",
"jei.energized_alloyer_recipe": "Energized Alloyer",
"jei.fermentation_plant_recipe": "Fermentation Plant",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "electrodynamics:electrolosis_chamber_recipe",
"fluidinputs": [
{
"amount": 1,
"fluid": "electrodynamics:fluidimpuremineralaluminum"
}
],
"group": "electrodynamics",
"output": {
"amount": 1,
"id": "electrodynamics:fluidpuremineralaluminum"
},
"ticks": 0,
"usagepertick": 0.0
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "electrodynamics:electrolosis_chamber_recipe",
"fluidinputs": [
{
"amount": 1,
"fluid": "electrodynamics:fluidimpuremineralchromium"
}
],
"group": "electrodynamics",
"output": {
"amount": 1,
"id": "electrodynamics:fluidpuremineralchromium"
},
"ticks": 0,
"usagepertick": 0.0
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "electrodynamics:electrolosis_chamber_recipe",
"fluidinputs": [
{
"amount": 1,
"fluid": "electrodynamics:fluidimpuremineralcopper"
}
],
"group": "electrodynamics",
"output": {
"amount": 1,
"id": "electrodynamics:fluidpuremineralcopper"
},
"ticks": 0,
"usagepertick": 0.0
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "electrodynamics:electrolosis_chamber_recipe",
"fluidinputs": [
{
"amount": 1,
"fluid": "electrodynamics:fluidimpuremineralgold"
}
],
"group": "electrodynamics",
"output": {
"amount": 1,
"id": "electrodynamics:fluidpuremineralgold"
},
"ticks": 0,
"usagepertick": 0.0
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "electrodynamics:electrolosis_chamber_recipe",
"fluidinputs": [
{
"amount": 1,
"fluid": "electrodynamics:fluidimpuremineraliron"
}
],
"group": "electrodynamics",
"output": {
"amount": 1,
"id": "electrodynamics:fluidpuremineraliron"
},
"ticks": 0,
"usagepertick": 0.0
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "electrodynamics:electrolosis_chamber_recipe",
"fluidinputs": [
{
"amount": 1,
"fluid": "electrodynamics:fluidimpureminerallead"
}
],
"group": "electrodynamics",
"output": {
"amount": 1,
"id": "electrodynamics:fluidpureminerallead"
},
"ticks": 0,
"usagepertick": 0.0
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "electrodynamics:electrolosis_chamber_recipe",
"fluidinputs": [
{
"amount": 1,
"fluid": "electrodynamics:fluidimpureminerallithium"
}
],
"group": "electrodynamics",
"output": {
"amount": 1,
"id": "electrodynamics:fluidpureminerallithium"
},
"ticks": 0,
"usagepertick": 0.0
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "electrodynamics:electrolosis_chamber_recipe",
"fluidinputs": [
{
"amount": 1,
"fluid": "electrodynamics:fluidimpuremineralmolybdenum"
}
],
"group": "electrodynamics",
"output": {
"amount": 1,
"id": "electrodynamics:fluidpuremineralmolybdenum"
},
"ticks": 0,
"usagepertick": 0.0
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "electrodynamics:electrolosis_chamber_recipe",
"fluidinputs": [
{
"amount": 1,
"fluid": "electrodynamics:fluidimpuremineralnetherite"
}
],
"group": "electrodynamics",
"output": {
"amount": 1,
"id": "electrodynamics:fluidpuremineralnetherite"
},
"ticks": 0,
"usagepertick": 0.0
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "electrodynamics:electrolosis_chamber_recipe",
"fluidinputs": [
{
"amount": 1,
"fluid": "electrodynamics:fluidimpuremineralsilver"
}
],
"group": "electrodynamics",
"output": {
"amount": 1,
"id": "electrodynamics:fluidpuremineralsilver"
},
"ticks": 0,
"usagepertick": 0.0
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "electrodynamics:electrolosis_chamber_recipe",
"fluidinputs": [
{
"amount": 1,
"fluid": "electrodynamics:fluidimpuremineraltin"
}
],
"group": "electrodynamics",
"output": {
"amount": 1,
"id": "electrodynamics:fluidpuremineraltin"
},
"ticks": 0,
"usagepertick": 0.0
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "electrodynamics:electrolosis_chamber_recipe",
"fluidinputs": [
{
"amount": 1,
"fluid": "electrodynamics:fluidimpuremineraltitanium"
}
],
"group": "electrodynamics",
"output": {
"amount": 1,
"id": "electrodynamics:fluidpuremineraltitanium"
},
"ticks": 0,
"usagepertick": 0.0
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "electrodynamics:electrolosis_chamber_recipe",
"fluidinputs": [
{
"amount": 1,
"fluid": "electrodynamics:fluidimpuremineralvanadium"
}
],
"group": "electrodynamics",
"output": {
"amount": 1,
"id": "electrodynamics:fluidpuremineralvanadium"
},
"ticks": 0,
"usagepertick": 0.0
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"key": {
"C": {
"tag": "c:circuits/ultimate"
},
"E": {
"item": "electrodynamics:electrolyticseparator"
},
"I": {
"tag": "c:ingots/chromium"
},
"T": {
"item": "electrodynamics:upgradetransformer"
}
},
"pattern": [
"ITI",
"TET",
"ICI"
],
"result": {
"count": 1,
"id": "electrodynamics:electrolosischamber"
}
}
Loading

0 comments on commit 0d45eb6

Please sign in to comment.