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 new recipe for asgardandelion #1108

Merged
merged 8 commits into from
Dec 16, 2024
Merged
Changes from all commits
Commits
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
74 changes: 73 additions & 1 deletion src/main/java/com/dreammaster/scripts/ScriptAvaritiaAddons.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@

import cpw.mods.fml.common.registry.GameRegistry;
import fox.spiteful.avaritia.Config;
import fox.spiteful.avaritia.blocks.LudicrousBlocks;
import fox.spiteful.avaritia.crafting.ExtremeCraftingManager;
import fox.spiteful.avaritia.items.LudicrousItems;
import gregtech.api.enums.GTValues;
import gregtech.api.enums.ItemList;
import gregtech.api.enums.Materials;
Expand All @@ -34,6 +36,9 @@
import gregtech.api.recipe.metadata.CompressionTierKey;
import gregtech.api.util.GTOreDictUnificator;
import gregtech.api.util.GTUtility;
import vazkii.botania.common.item.ModItems;
import vazkii.botania.common.item.block.ItemBlockSpecialFlower;
import vazkii.botania.common.lib.LibBlockNames;

public class ScriptAvaritiaAddons implements IScriptLoader {

Expand Down Expand Up @@ -124,7 +129,74 @@ public void loadRecipes() {
ItemList.Quantum_Chest_IV.get(1L),
'h',
getModItem(AppliedEnergistics2.ID, "item.ItemMultiMaterial", 1, 60));

// Asgardandelion
ExtremeCraftingManager.getInstance().addExtremeShapedOreRecipe(
ItemBlockSpecialFlower.ofType("asgardandelion"),
"R0D0G0E0M",
"000iii000",
"d0i876i0n",
"00iAZai00",
"T0i5B4i0r",
"010iii010",
"t1102011H",
"001121100",
"e0K131S0m",
'R',
ItemBlockSpecialFlower.ofType(LibBlockNames.SUBTILE_ARCANE_ROSE),
'D',
ItemBlockSpecialFlower.ofType(LibBlockNames.SUBTILE_DANDELIFEON),
'G',
ItemBlockSpecialFlower.ofType("beegonia"),
'E',
ItemBlockSpecialFlower.ofType(LibBlockNames.SUBTILE_ENTROPINNYUM),
'M',
ItemBlockSpecialFlower.ofType(LibBlockNames.SUBTILE_MUNCHDEW),
'd',
ItemBlockSpecialFlower.ofType(LibBlockNames.SUBTILE_DAYBLOOM),
'n',
ItemBlockSpecialFlower.ofType(LibBlockNames.SUBTILE_NIGHTSHADE),
'T',
ItemBlockSpecialFlower.ofType("soarleander"),
'r',
ItemBlockSpecialFlower.ofType(LibBlockNames.SUBTILE_RAFFLOWSIA),
't',
ItemBlockSpecialFlower.ofType(LibBlockNames.SUBTILE_THERMALILY),
'H',
ItemBlockSpecialFlower.ofType(LibBlockNames.SUBTILE_HYDROANGEAS),
'e',
ItemBlockSpecialFlower.ofType(LibBlockNames.SUBTILE_ENDOFLAME),
'K',
ItemBlockSpecialFlower.ofType(LibBlockNames.SUBTILE_KEKIMURUS),
'3',
new ItemStack(ModItems.blackLotus, 1, 1),
'S',
ItemBlockSpecialFlower.ofType(LibBlockNames.SUBTILE_SPECTROLUS),
'm',
ItemBlockSpecialFlower.ofType(LibBlockNames.SUBTILE_NARSLIMMUS),
'Z',
new ItemStack(LudicrousBlocks.infinitato),
'1',
new ItemStack(LudicrousItems.resource, 1, 3), // Neutronium nugget
'2',
"blockCosmicNeutronium",
'i',
"plateInfinity",
'A',
"gemExquisiteBotaniaDragonstone",
'a',
"gemExquisiteManaDiamond",
'B',
"plateGaiaSpirit",
'4',
"plateLivingwood",
'5',
"plateLivingrock",
'6',
"plateElvenElementium",
'7',
"plateManasteel",
'8',
"plateTerrasteel");
// Infinity Egg (Witchery)
if (Config.witch) {

Expand Down
Loading