Fix Vibrant Jetpack Recipe (#1055)

[BUG]
This commit is contained in:
Integer Limit 2024-10-11 11:53:23 +11:00 committed by GitHub
parent ebd17e00a3
commit dc256c13aa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 5 deletions

View File

@ -199,7 +199,7 @@ recipes.addShaped(reinforcedjetpack, [
//Vibrant Alloy Jetpack
recipes.removeByRecipeName("simplyjetpacks:upgraderecipe4");
recipes.addShaped(vibrantjetpack, [
[<metaitem:nomilabs:plateVibrantAlloy>, compressedoctadiccap, <metaitem:nomilabs:plateVibrantAlloy>],
[<metaitem:nomilabs:plateVibrantAlloy>, <nomilabs:compressedoctadiccapacitor>, <metaitem:nomilabs:plateVibrantAlloy>],
[<metaitem:nomilabs:plateVibrantAlloy>, energeticjetpack.marked("jetpack"), <metaitem:nomilabs:plateVibrantAlloy>],
[<simplyjetpacks:metaitemmods:10>, null, <simplyjetpacks:metaitemmods:10>]],
transferTag);

View File

@ -42,10 +42,6 @@ global reinforcedcellIng as IIngredient = reinforcedcell.only(isReinforced);
global signalumcellIng as IIngredient = signalumcell.only(isSignalum);
global resonantcellIng as IIngredient = resonantcell.only(isResonant);
// Compressed capacitors
global compressedoctadiccap as IItemStack = <nomilabs:compressedoctadiccapacitor>.withTag({display: {Name: "Compressed Octadic RF Capacitor", Lore: ["This is what is known as a Compressed Octadic Capacitor.", "Or, you could just call this an Octadic Capacitor Two.", "Can be inserted into EnderIO machines.", "Level: 4"]}, eiocap: {level: 4 as float}}, false);
global doublecompressedoctadiccap as IItemStack = <nomilabs:doublecompressedoctadiccapacitor>.withTag({display: {Name: "Double Compressed Octadic RF Capacitor", Lore: ["AND THIS IS TO GO EVEN FURTHER BEYOND!", "Can be inserted into EnderIO machines.", "Level: 9.001", "Just kidding, it's only 5."]}, eiocap: {level: 5 as float}}, false);
// EIO Jetpacks
global conductiveironjetpack as IItemStack = <simplyjetpacks:itemjetpack:1>.withTag({Energy: 0, JetpackParticleType: 0}, false);
global electricalsteeljetpack as IItemStack = <simplyjetpacks:itemjetpack:2>.withTag({Energy: 0, JetpackParticleType: 0}, false);