Compare commits
3 Commits
194f041eb8
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
49ebd02456 | ||
|
|
ace2934cfb | ||
|
|
d281774a97 |
3
.gitignore
vendored
3
.gitignore
vendored
@@ -23,4 +23,5 @@ minecraft/usercache.json
|
|||||||
minecraft/usernamecache.json
|
minecraft/usernamecache.json
|
||||||
minecraft/mods/1.12.2
|
minecraft/mods/1.12.2
|
||||||
minecraft/mods/memory_repo
|
minecraft/mods/memory_repo
|
||||||
minecraft/config/*
|
minecraft/config/*
|
||||||
|
minecraft/woot
|
||||||
@@ -39,10 +39,10 @@ ManagedPackType=
|
|||||||
ManagedPackVersionID=
|
ManagedPackVersionID=
|
||||||
ManagedPackVersionName=
|
ManagedPackVersionName=
|
||||||
Profiler=
|
Profiler=
|
||||||
lastLaunchTime=1762606879006
|
lastLaunchTime=1762638887063
|
||||||
lastTimePlayed=1337
|
lastTimePlayed=165
|
||||||
linkedInstances=[]
|
linkedInstances=[]
|
||||||
totalTimePlayed=58384
|
totalTimePlayed=65522
|
||||||
AutoCloseConsole=false
|
AutoCloseConsole=false
|
||||||
CloseAfterLaunch=false
|
CloseAfterLaunch=false
|
||||||
CustomGLFWPath=
|
CustomGLFWPath=
|
||||||
|
|||||||
36420
minecraft/items.txt
Normal file
36420
minecraft/items.txt
Normal file
File diff suppressed because it is too large
Load Diff
BIN
minecraft/mods/modid-1.0.0.jar
Normal file
BIN
minecraft/mods/modid-1.0.0.jar
Normal file
Binary file not shown.
@@ -1,6 +1,5 @@
|
|||||||
import crafttweaker.item.IItemStack;
|
import crafttweaker.item.IItemStack;
|
||||||
|
|
||||||
// Variables
|
|
||||||
val russianItem = <flansmod:russian_item>;
|
val russianItem = <flansmod:russian_item>;
|
||||||
val gunpowderBlock = <flansmod:gunpowderblock>;
|
val gunpowderBlock = <flansmod:gunpowderblock>;
|
||||||
val dandelionYellow = <minecraft:dye:11>;
|
val dandelionYellow = <minecraft:dye:11>;
|
||||||
@@ -10,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>;
|
||||||
@@ -24,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>,
|
||||||
@@ -36,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],
|
||||||
|
|||||||
Reference in New Issue
Block a user