more lunchbox stuff
This commit is contained in:
parent
4d492e261d
commit
601e92427b
3 changed files with 6 additions and 4 deletions
|
|
@ -4,6 +4,7 @@
|
|||
- Added back the vanilla stonecutter @Pyritie
|
||||
- Added our own recipes for crafting GregTech facades - 3 cast iron plates for 8 facades, or 3 titanium plates for 32 facades (#1145) @BlueBoat29
|
||||
- Added create conductor recipes (#1144) @JeanRdSz
|
||||
- Added lunch boxes! They keep your food cool and you can even eat right out of them! @Thomasx0
|
||||
### Changes
|
||||
### Bug fixes
|
||||
- Fixed trowel being consumed on use (#1143) @Redeix
|
||||
|
|
|
|||
|
|
@ -39,14 +39,14 @@ function registerTFCLunchBoxRecipes(event) {
|
|||
event.remove({ id: 'tfclunchbox:fill_capsule_with_ice' })
|
||||
|
||||
event.recipes.gtceu.assembler('tfclunchbox:universal_capsule')
|
||||
.itemInputs('1x #forge:plates/red_steel', '1x #forge:rings/sterling_silver')
|
||||
.itemInputs('1x #forge:foils/red_steel', '1x #forge:rings/sterling_silver')
|
||||
.itemOutputs('tfclunchbox:universal_capsule')
|
||||
.duration(100)
|
||||
.EUt(GTValues.VA[GTValues.LV])
|
||||
|
||||
event.recipes.gtceu.canner('tfclunchbox:fill_capsule_with_ice')
|
||||
.itemInputs('tfclunchbox:universal_capsule')
|
||||
.inputFluids(Fluid.of('gtceu:ice', 144 * 9))
|
||||
.inputFluids(Fluid.of('gtceu:ice', 144))
|
||||
.itemOutputs(Item.of('tfclunchbox:universal_capsule', '{Durability:10}').withName(Text.translate('item.tfclunchbox.universal_capsule.filled')))
|
||||
.duration(100)
|
||||
.EUt(GTValues.VA[GTValues.LV])
|
||||
|
|
|
|||
|
|
@ -37,7 +37,8 @@ const registerGTCEuMaterialModification = (event) => {
|
|||
GENERATE_FRAME,
|
||||
GENERATE_PLATE,
|
||||
GENERATE_DENSE,
|
||||
GENERATE_RING
|
||||
GENERATE_RING,
|
||||
GENERATE_FOIL
|
||||
} = $MATERIAL_FLAGS
|
||||
|
||||
var metalTooling = [
|
||||
|
|
@ -194,7 +195,7 @@ const registerGTCEuMaterialModification = (event) => {
|
|||
GTMaterials.Nickel.addFlags(GENERATE_ROD, GENERATE_LONG_ROD);
|
||||
GTMaterials.BlackSteel.addFlags(GENERATE_LONG_ROD, GENERATE_BOLT_SCREW);
|
||||
GTMaterials.BlueSteel.addFlags(GENERATE_LONG_ROD, GENERATE_BOLT_SCREW);
|
||||
GTMaterials.RedSteel.addFlags(GENERATE_LONG_ROD, GENERATE_BOLT_SCREW);
|
||||
GTMaterials.RedSteel.addFlags(GENERATE_LONG_ROD, GENERATE_BOLT_SCREW, GENERATE_FOIL);
|
||||
GTMaterials.WroughtIron.addFlags(GENERATE_ROTOR, GENERATE_SPRING, GENERATE_SMALL_GEAR);
|
||||
|
||||
GTMaterials.Copper.addFlags(GENERATE_BOLT_SCREW);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue