Add new recipes
This commit is contained in:
@@ -39,10 +39,10 @@ ManagedPackType=
|
|||||||
ManagedPackVersionID=
|
ManagedPackVersionID=
|
||||||
ManagedPackVersionName=
|
ManagedPackVersionName=
|
||||||
Profiler=
|
Profiler=
|
||||||
lastLaunchTime=1762633588909
|
lastLaunchTime=1762638887063
|
||||||
lastTimePlayed=220
|
lastTimePlayed=165
|
||||||
linkedInstances=[]
|
linkedInstances=[]
|
||||||
totalTimePlayed=60622
|
totalTimePlayed=65522
|
||||||
AutoCloseConsole=false
|
AutoCloseConsole=false
|
||||||
CloseAfterLaunch=false
|
CloseAfterLaunch=false
|
||||||
CustomGLFWPath=
|
CustomGLFWPath=
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ val ironShovel = <minecraft:iron_shovel>;
|
|||||||
val ironHoe = <minecraft:iron_hoe>;
|
val ironHoe = <minecraft:iron_hoe>;
|
||||||
val ironPickaxe = <minecraft:iron_pickaxe>;
|
val ironPickaxe = <minecraft:iron_pickaxe>;
|
||||||
val ironAxe = <minecraft:iron_axe>;
|
val ironAxe = <minecraft:iron_axe>;
|
||||||
|
|
||||||
val diamondShovel = <minecraft:diamond_shovel>;
|
val diamondShovel = <minecraft:diamond_shovel>;
|
||||||
val diamondHoe = <minecraft:diamond_hoe>;
|
val diamondHoe = <minecraft:diamond_hoe>;
|
||||||
val diamondPickaxe = <minecraft:diamond_pickaxe>;
|
val diamondPickaxe = <minecraft:diamond_pickaxe>;
|
||||||
@@ -23,6 +22,23 @@ val moxFuel = <ic2:quad_mox_fuel_rod>;
|
|||||||
val mfsu = <ic2:te:75>;
|
val mfsu = <ic2:te:75>;
|
||||||
val nuclearMissile = <icbmclassic:explosives:15>;
|
val nuclearMissile = <icbmclassic:explosives:15>;
|
||||||
|
|
||||||
|
val nuclearReactor = <ic2:te:22>;
|
||||||
|
val nuclearChamber = <ic2:te:24>;
|
||||||
|
val advancedMachineCasing = <ic2:resource:13>;
|
||||||
|
val advancedCircuit = <ic2:crafting:2>;
|
||||||
|
val uranium235 = <ic2:nuclear:1>;
|
||||||
|
val enrichedUraniumNuclearFuel = <ic2:nuclear:0>;
|
||||||
|
val moxNuclearFuel = <ic2:nuclear:4>;
|
||||||
|
val plutonium = <ic2:nuclear:3>;
|
||||||
|
val reactorPlating = <ic2:plating:0>;
|
||||||
|
val advancedAlloy = <ic2:crafting:3>;
|
||||||
|
val rtgPellets = <ic2:nuclear:10>;
|
||||||
|
|
||||||
|
val heavyDutyPlatingT1 = <galacticraftcore:heavy_plating:0>;
|
||||||
|
|
||||||
|
val stableUnstableNugget = <extrautils2:unstableingots:1>;
|
||||||
|
val stableUnstableIngot = <extrautils2:unstableingots:2>;
|
||||||
|
val unstableIngot = <extrautils2:unstableingots:0>;
|
||||||
|
|
||||||
val tools = [
|
val tools = [
|
||||||
<minecraft:iron_shovel>,
|
<minecraft:iron_shovel>,
|
||||||
@@ -35,23 +51,59 @@ val tools = [
|
|||||||
<minecraft:diamond_axe>
|
<minecraft:diamond_axe>
|
||||||
] as IItemStack[];
|
] as IItemStack[];
|
||||||
|
|
||||||
// Functions
|
|
||||||
function setDurabilityAndTooltip(item as IItemStack) as void {
|
function setDurabilityAndTooltip(item as IItemStack) as void {
|
||||||
item.maxDamage = 2;
|
item.maxDamage = 2;
|
||||||
item.addTooltip(format.red("This tool is useless, use Tinkers' Construct"));
|
item.addTooltip(format.red("This tool is useless, use Tinkers' Construct"));
|
||||||
}
|
}
|
||||||
|
|
||||||
//for tool in tools {
|
for tool in tools {
|
||||||
// setDurabilityAndTooltip(tool);
|
setDurabilityAndTooltip(tool);
|
||||||
//}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Removals
|
|
||||||
recipes.remove(russianItem);
|
recipes.remove(russianItem);
|
||||||
recipes.remove(antimatterExplosives);
|
recipes.remove(antimatterExplosives);
|
||||||
recipes.remove(antimatterMissile);
|
recipes.remove(antimatterMissile);
|
||||||
|
recipes.remove(nuclearReactor);
|
||||||
|
recipes.remove(nuclearChamber);
|
||||||
|
recipes.remove(stableUnstableIngot);
|
||||||
|
recipes.remove(stableUnstableNugget);
|
||||||
|
recipes.remove(enrichedUraniumNuclearFuel);
|
||||||
|
recipes.remove(moxNuclearFuel);
|
||||||
|
recipes.remove(reactorPlating);
|
||||||
|
recipes.remove(rtgPellets);
|
||||||
|
|
||||||
|
recipes.addShapeless(reactorPlating, [heavyDutyPlatingT1, advancedAlloy]);
|
||||||
|
|
||||||
|
recipes.addShaped(rtgPellets, [
|
||||||
|
[plutonium, plutonium, plutonium],
|
||||||
|
[plutonium, plutonium, plutonium],
|
||||||
|
[plutonium, plutonium, plutonium]
|
||||||
|
]);
|
||||||
|
|
||||||
|
recipes.addShaped(enrichedUraniumNuclearFuel, [
|
||||||
|
[uranium235, uranium235, uranium235],
|
||||||
|
[uranium235, uranium235, uranium235],
|
||||||
|
[uranium235, uranium235, uranium235]
|
||||||
|
]);
|
||||||
|
|
||||||
|
recipes.addShaped(moxNuclearFuel, [
|
||||||
|
[uranium235, uranium235, uranium235],
|
||||||
|
[plutonium, plutonium, plutonium],
|
||||||
|
[uranium235, uranium235, uranium235]
|
||||||
|
]);
|
||||||
|
|
||||||
|
recipes.addShaped(nuclearChamber, [
|
||||||
|
[heavyDutyPlatingT1, heavyDutyPlatingT1, heavyDutyPlatingT1],
|
||||||
|
[heavyDutyPlatingT1, advancedMachineCasing, heavyDutyPlatingT1],
|
||||||
|
[heavyDutyPlatingT1, heavyDutyPlatingT1, heavyDutyPlatingT1]
|
||||||
|
]);
|
||||||
|
|
||||||
|
recipes.addShaped(nuclearReactor, [
|
||||||
|
[unstableIngot, advancedCircuit, unstableIngot],
|
||||||
|
[nuclearChamber, nuclearChamber, nuclearChamber],
|
||||||
|
[unstableIngot, advancedMachineCasing, unstableIngot]
|
||||||
|
]);
|
||||||
|
|
||||||
// Recipe Implementations
|
|
||||||
recipes.addShaped(antimatterMissile, [
|
recipes.addShaped(antimatterMissile, [
|
||||||
[tier10Rocket, tier10Rocket, tier10Rocket],
|
[tier10Rocket, tier10Rocket, tier10Rocket],
|
||||||
[tier10Rocket, antimatterExplosives, tier10Rocket],
|
[tier10Rocket, antimatterExplosives, tier10Rocket],
|
||||||
|
|||||||
2
natives/META-INF/MANIFEST.MF
Normal file
2
natives/META-INF/MANIFEST.MF
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
Manifest-Version: 1.0
|
||||||
|
|
||||||
BIN
natives/OpenAL32.dll
Normal file
BIN
natives/OpenAL32.dll
Normal file
Binary file not shown.
BIN
natives/OpenAL64.dll
Normal file
BIN
natives/OpenAL64.dll
Normal file
Binary file not shown.
BIN
natives/SAPIWrapper_x64.dll
Normal file
BIN
natives/SAPIWrapper_x64.dll
Normal file
Binary file not shown.
BIN
natives/SAPIWrapper_x86.dll
Normal file
BIN
natives/SAPIWrapper_x86.dll
Normal file
Binary file not shown.
BIN
natives/jinput-dx8.dll
Normal file
BIN
natives/jinput-dx8.dll
Normal file
Binary file not shown.
BIN
natives/jinput-dx8_64.dll
Normal file
BIN
natives/jinput-dx8_64.dll
Normal file
Binary file not shown.
BIN
natives/jinput-raw.dll
Normal file
BIN
natives/jinput-raw.dll
Normal file
Binary file not shown.
BIN
natives/jinput-raw_64.dll
Normal file
BIN
natives/jinput-raw_64.dll
Normal file
Binary file not shown.
BIN
natives/jinput-wintab.dll
Normal file
BIN
natives/jinput-wintab.dll
Normal file
Binary file not shown.
BIN
natives/lwjgl.dll
Normal file
BIN
natives/lwjgl.dll
Normal file
Binary file not shown.
BIN
natives/lwjgl64.dll
Normal file
BIN
natives/lwjgl64.dll
Normal file
Binary file not shown.
Reference in New Issue
Block a user