Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Recipe for Solar Factory #1120

Open
wants to merge 28 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
50dd215
add solar factory recipe
purebluez Dec 24, 2024
b2c687a
Merge branch 'master' into master
Dream-Master Dec 26, 2024
cb50766
move the solar factory recipes to coremod
purebluez Dec 27, 2024
14601c8
Merge branch 'master' into master
Dream-Master Dec 28, 2024
08dffd1
Utopia Melodia Lunacia Misfortuna Photosynthesia Ecstasia Philosophio…
purebluez Dec 30, 2024
3e6bd9a
Add recursive recipes and majorly nerf non-recursive recipes
purebluez Jan 2, 2025
04175b8
Merge remote-tracking branch 'origin/solarfactory'
purebluez Jan 23, 2025
aefc2d3
switch controller recipe to be more around HV
purebluez Jan 23, 2025
53e0a83
Merge branch 'master' into master
serenibyss Jan 23, 2025
df69ebc
oops
purebluez Jan 23, 2025
9646e06
Merge remote-tracking branch 'origin/master'
purebluez Jan 23, 2025
060db5e
Merge branch 'master' into master
Dream-Master Jan 23, 2025
f796391
change nrc UV solar recipe
purebluez Jan 24, 2025
90c13c2
Merge branch 'master' into master
Dream-Master Jan 25, 2025
f07169e
Merge branch 'master' into master
Dream-Master Jan 25, 2025
82118c8
do the things dream said
purebluez Jan 25, 2025
02a229b
Merge branch 'master' into master
Dream-Master Jan 26, 2025
41847e8
Merge branch 'master' into master
Dream-Master Jan 27, 2025
0d04869
Buff recipes
purebluez Feb 1, 2025
90e89ee
Merge branch 'master' into master
Dream-Master Feb 1, 2025
afb2ac1
Merge branch 'master' into master
Caedis Feb 3, 2025
bd0158f
Merge branch 'master' into master
serenibyss Feb 7, 2025
22573f2
Merge branch 'master' into master
purebluez Feb 10, 2025
9ad12fc
Merge branch 'master' into master
Dream-Master Feb 12, 2025
52f92a3
Merge branch 'master' into master
Dream-Master Feb 12, 2025
aef4c8b
Merge branch 'master' into master
Dream-Master Feb 13, 2025
7c0e2f8
Merge branch 'master' into master
Dream-Master Feb 13, 2025
bf4a1df
Merge branch 'master' into master
Dream-Master Feb 13, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -796,6 +796,14 @@ public void run() {
new Object[] { "TCT", "PMP", "TCT", 'M', ItemList.Machine_HV_Brewery, 'P', ItemList.Electric_Pump_HV,
'T', OrePrefixes.plate.get(Materials.WoodSealed), 'C', OrePrefixes.circuit.get(Materials.EV) });

// Solar Factory
GTModHandler.addCraftingRecipe(
ItemList.SolarFactory.get(1),
bits,
new Object[] { "TTT", "PMP", "CTC", 'M', ItemList.Machine_HV_Assembler, 'P',
ItemList.Cover_SolarPanel_8V, 'T', OrePrefixes.plate.get(Materials.StainlessSteel), 'C',
OrePrefixes.circuit.get(Materials.EV) });

// Reinforced Wooden Casing
GTModHandler.addCraftingRecipe(
ItemList.Casing_Reinforced_Wood.get(1),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
import com.dreammaster.gthandler.recipes.PolarizerRecipes;
import com.dreammaster.gthandler.recipes.RecipeRemoval;
import com.dreammaster.gthandler.recipes.SifterRecipes;
import com.dreammaster.gthandler.recipes.SolarFactoryRecipes;
import com.dreammaster.gthandler.recipes.SpaceAssemblerRecipes;
import com.dreammaster.gthandler.recipes.VacuumFreezerRecipes;
import com.dreammaster.gthandler.recipes.VacuumFurnaceRecipes;
Expand Down Expand Up @@ -80,6 +81,7 @@ public void run() {
new MixerRecipes().run();
new NeutroniumCompressorRecipes().run();
new SifterRecipes().run();
new SolarFactoryRecipes().run();
new VacuumFreezerRecipes().run();
new WiremillRecipes().run();
new CrackingRecipes().run();
Expand Down
Loading
Loading