IC2 Classic

IC2 Classic

2M Downloads

Custom Recipe format

MachiavelliSeraphim opened this issue ยท 7 comments

commented

I cant use the 4 tin ingot recipe to make cells because thermal expansion uses that recipe for making gears.

How do I define a new recipe that would put the 4 ingots in the corners instead?

Is it MineTweaker format, or a different context?

Sorry to keep bugging you.
Thanks.

commented

{
"recipes":
[
{
"recipeType": "shaped",
"hidden": false,
"output":
{
"item": "ic2:itemcellempty",
"meta": 0,
"amount": 1,
"nbt": '{"display":{"Name": "TestingName"}}'
},
"pattern": ["O O", " ", "O O"],
"inputs":
[
{
"patternID": "O",
"inputType": "forge:ore_dict",
"oreID": "ingotTin",
"amount": 1
},

		]
	}
]

}

Apparently Ive got something wrong here.....

I hate not having learned newer languages....

I surrender....
This is painful.

commented

@MachiavelliSeraphim there is a Minetweaker addon for IC2Classic. (Could have told that right out of the gate)
It should be called IC2CTweaker @Trinsdar

commented

Thanks.
I usually try my hand at writing it if I've got a good syntax example to work with.
I just created the recipe in CraftTweaker for the moment.
I will lookup the Minetweaker addon for IC2C.

Thanks again.

commented

Or you can change the recipe of gears to use iron in the middle via TE config.

EDIT: Thermal Foundation config:
If TRUE, non-Basic Gears will require an additional Iron Ingot to craft [default: false]
B:AlternateGears=true

commented

Thank you everyone for all the help.