This commit is contained in:
m2r1k5 2022-02-05 00:52:48 +08:00
parent b92b5a2bfb
commit ad7c4f0187
64 changed files with 2118 additions and 2053 deletions

View File

@ -12,9 +12,9 @@ To alleviate this, the Large Lapidary Dynamo is added, available at MV and gener
Installation instructions for building the bleeding-edge version: Installation instructions for building the bleeding-edge version:
- Download the repository as a ZIP. - Download the repository as a ZIP.
- Import it into your launcher of choice. - Import it into your launcher of choice.
Certain new quests from [GregTech Community Pack](https://github.com/GregTechCEu/GregTech-Community-Pack). Certain new quests from [GregTech Community Pack](https://github.com/GregTechCEu/GregTech-Community-Pack).
GTCE item-ID to GTCEu item-ID conversion scripts by [brachy84](https://github.com/brachy84). GTCE item-ID to GTCEu item-ID conversion scripts by [brachy84](https://github.com/brachy84).
Perfect Gem textures from [FurfSky Reborn](http://furfsky.net/). Perfect Gem textures from [FurfSky Reborn](http://furfsky.net/).
Thank you! Thank you!

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,7 @@
# Configuration file # Configuration file
cache { cache {
S:digest=a7a871e15321750d16fc5ea401c38803 S:digest=8b42254433178b3b91ed444d64c1354b
# Caching can save processing time, if there are a lot of items. [default: true] # Caching can save processing time, if there are a lot of items. [default: true]
B:enableCache=true B:enableCache=true

View File

@ -3,7 +3,7 @@
cache { cache {
# Waits as many hours, until it checks again. [range: 0 ~ 168, default: 24] # Waits as many hours, until it checks again. [range: 0 ~ 168, default: 24]
I:interval=24 I:interval=24
S:lastCheck=1643885211648 S:lastCheck=1643979111071
} }

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
#Inventory Tweaks Configuration #Inventory Tweaks Configuration
#(Regarding shortcuts, all key names can be found at: http://legacy.lwjgl.org/javadoc/org/lwjgl/input/Keyboard.html) #(Regarding shortcuts, all key names can be found at: http://legacy.lwjgl.org/javadoc/org/lwjgl/input/Keyboard.html)
#Thu Feb 03 18:48:21 SGT 2022 #Fri Feb 04 22:57:51 SGT 2022
enableMiddleClick=true enableMiddleClick=true
showChestButtons=true showChestButtons=true
enableSortingOnPickup=false enableSortingOnPickup=false

View File

@ -16,6 +16,10 @@ global {
lavapickaxe { lavapickaxe {
# Add blocks to the smelting blacklist of "Infused Lava Pickaxe"
# If You add want to add an item to the blacklist
# Add it in the following format: "<namespace>:<name>"
# Examples can be found inside the list itself
S:blacklist < S:blacklist <
minecraft:wet_sponge minecraft:wet_sponge
minecraft:sponge minecraft:sponge
@ -25,6 +29,7 @@ lavapickaxe {
maps { maps {
# Enable/Disable the ability of the maps to spawn bosses, suck as the "Skeletal King" from the "Map of Sacrifice"
B:allowSpawnOfBosses=true B:allowSpawnOfBosses=true
} }

View File

@ -3,12 +3,12 @@
dimensions { dimensions {
# The numeral id of the armorplus:arena dimension # The numeral id of the armorplus:arena dimension
I:arenaDimensionID=120 I:arenaDimensionID=120
# Too unstable, unfinished to be enabled by default.
B:enableArenaDimension=false B:enableArenaDimension=false
# Enable/Disable the realm of insanity # Enable/Disable the realm of insanity
B:enableRealmOfInsanity=false B:enableRealmOfInsanity=false
# Too unstable, unfinished to be enabled by default.
B:enableTheArenaDimension=false B:enableTheArenaDimension=false
# The numeral id of the armorplus:realm_of_insanity dimension # The numeral id of the armorplus:realm_of_insanity dimension

View File

@ -70,6 +70,7 @@ mob_drops {
} }
skeletal_king { skeletal_king {
# Enable/Disable the drops from the Skeletal King
B:skeletalKingDrop=true B:skeletalKingDrop=true
} }
@ -77,10 +78,20 @@ mob_drops {
skeletal_king { skeletal_king {
# Set the Skeletal King's Armor
D:armor=8.0 D:armor=8.0
# Set the Skeletal King's Health
# Max value 1024
D:bossHealth=1024.0 D:bossHealth=1024.0
# Enable/Disable the Skeletal King's resistance buff effect
B:enableResistance=true B:enableResistance=true
# Set the Skeletal King's Movement Speed
D:movementSpeed=0.6000000238418579 D:movementSpeed=0.6000000238418579
# Set the Skeletal King's resistance effect Level (0 = lvl 1)
I:resistanceAmplifier=0 I:resistanceAmplifier=0
} }

View File

@ -22,8 +22,13 @@ integrations {
B:ultimateChaosImmunity=true B:ultimateChaosImmunity=true
tconstruct { tconstruct {
# Enable/Disable ender dragon scale material.
B:enableEnderDragonMaterial=true B:enableEnderDragonMaterial=true
# Enable/Disable guardian scale material.
B:enableGuardianScaleMaterial=true B:enableGuardianScaleMaterial=true
# Enable/Disable wither bone material.
B:enableWitherBoneMaterial=true B:enableWitherBoneMaterial=true
} }

View File

@ -1715,6 +1715,8 @@ recipes {
# Enable/Disable The Cobalt armor Recipes # Enable/Disable The Cobalt armor Recipes
B:enableCobaltArmorRecipes=true B:enableCobaltArmorRecipes=true
# Enable/Disable The Electrical Ingot Recipes
B:enableElectricalIngotRecipes=true B:enableElectricalIngotRecipes=true
# Enable/Disable The Elytra Recipe # Enable/Disable The Elytra Recipe
@ -1758,6 +1760,8 @@ recipes {
# Enable/Disable The Slime armor Recipes # Enable/Disable The Slime armor Recipes
B:enableSlimeArmorRecipes=true B:enableSlimeArmorRecipes=true
# Enable/Disable The Steel Ingot Recipes
B:enableSteelIngotRecipes=true B:enableSteelIngotRecipes=true
# Enable/Disable The Super Star armor Recipes # Enable/Disable The Super Star armor Recipes

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8"?>
<enderio:recipes xmlns:enderio="http://enderio.com/recipes" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://enderio.com/recipes recipes.xsd ">
<!-- Token Recipes -->
<recipe name="Tank: Player Token"><disabled/></recipe>
<recipe name="Tank: Player Token Omni" required="true">
<soulbinding energy="25000" levels="1" logic="NONE" souls="ALL">
<input name="gregtech:meta_item_1:293" />
<output name="itemTokenPlayer" />
</soulbinding>
</recipe>
<recipe name="Soul Binder: Monster Token"><disabled/></recipe>
<recipe name="Soul Binder: Monster Token Omni" required="true">
<soulbinding energy="25000" levels="1" logic="NONE" souls="MONSTERS">
<input name="gregtech:meta_item_1:291" />
<output name="itemTokenMonster" />
</soulbinding>
</recipe>
<recipe name="Soul Binder: Animal Token"><disabled/></recipe>
<recipe name="Soul Binder: Animal Token Omni" required="true">
<soulbinding energy="25000" levels="1" logic="NONE" souls="ANIMALS">
<input name="gregtech:meta_item_1:292" />
<output name="itemTokenAnimal" />
</soulbinding>
</recipe>
<!-- Flight Control Unit Recipes -->
<recipe name="Soul Binder: Flight Control Bat Omni" required="true">
<soulbinding energy="75000" levels="8" logic="NONE">
<soul name="minecraft:bat" />
<input name="simplyjetpacks:metaitemmods:5" />
<output name="simplyjetpacks:metaitemmods:6" />
</soulbinding>
</recipe>
<recipe name="Soul Binder: Flight Control Ghast Omni" required="true">
<soulbinding energy="75000" levels="300" logic="NONE">
<soul name="minecraft:ghast" />
<input name="simplyjetpacks:metaitemmods:5" />
<output name="simplyjetpacks:metaitemmods:6" />
</soulbinding>
</recipe>
</enderio:recipes>

View File

@ -352,7 +352,7 @@ general {
# Default: 50 # Default: 50
# Min: 0 # Min: 0
# Max: 100 # Max: 100
I:flintChanceToCreateFire=50 I:flintChanceToCreateFire=100
# Setting this to true makes GTCEu ignore error and invalid recipes that would otherwise cause crash. # Setting this to true makes GTCEu ignore error and invalid recipes that would otherwise cause crash.
# Default: true # Default: true

View File

@ -12,8 +12,8 @@
}, },
"fluid": "oil_heavy", "fluid": "oil_heavy",
"dimension_filter": [ "dimension_filter": [
"id:0", "name:overworld",
"id:111" "name:lostcities"
], ],
"biome_modifier": { "biome_modifier": {
"type": "biome_dictionary", "type": "biome_dictionary",

View File

@ -11,8 +11,8 @@
"depleted_yield": 25 "depleted_yield": 25
}, },
"dimension_filter": [ "dimension_filter": [
"id:0", "name:overworld",
"id:111" "name:lostcities"
], ],
"fluid": "oil_light" "fluid": "oil_light"
} }

View File

@ -11,8 +11,8 @@
"depleted_yield": 20 "depleted_yield": 20
}, },
"dimension_filter": [ "dimension_filter": [
"id:0", "name:overworld",
"id:111" "name:lostcities"
], ],
"fluid": "natural_gas" "fluid": "natural_gas"
} }

View File

@ -12,8 +12,8 @@
}, },
"fluid": "oil", "fluid": "oil",
"dimension_filter": [ "dimension_filter": [
"id:0", "name:overworld",
"id:111" "name:lostcities"
], ],
"biome_modifier": { "biome_modifier": {
"type": "biome_dictionary", "type": "biome_dictionary",

View File

@ -11,8 +11,8 @@
"depleted_yield": 25 "depleted_yield": 25
}, },
"dimension_filter": [ "dimension_filter": [
"id:0", "name:overworld",
"id:111" "name:lostcities"
], ],
"fluid": "oil_medium" "fluid": "oil_medium"
} }

View File

@ -12,8 +12,8 @@
}, },
"fluid": "salt_water", "fluid": "salt_water",
"dimension_filter": [ "dimension_filter": [
"id:0", "name:overworld",
"id:111" "name:lostcities"
], ],
"biome_modifier": { "biome_modifier": {
"type": "biome_map", "type": "biome_map",

View File

@ -1,52 +0,0 @@
# Configuration file
~CONFIG_VERSION: 0.1.0
world-78688046 {
B:bookmarkOverlayEnabled=true
B:cheatItemsEnabled=true
B:editEnabled=false
S:filterText=bio
B:overlayEnabled=true
}
world-877171674 {
B:bookmarkOverlayEnabled=true
B:cheatItemsEnabled=true
B:editEnabled=false
S:filterText=large lapi
B:overlayEnabled=true
}
world-877171675 {
B:bookmarkOverlayEnabled=true
B:cheatItemsEnabled=false
B:editEnabled=false
S:filterText=diamond
B:overlayEnabled=true
}
world1544803905 {
S:filterText=
}
world1855637915 {
# Show the list of bookmarks next to open GUIs.
B:bookmarkOverlayEnabled=true
# Give items instead of showing the recipe.
B:cheatItemsEnabled=true
# Hide and unhide ingredients by clicking them in the list.
B:editEnabled=false
S:filterText=black bronz
# Show the list of ingredients next to open GUIs.
B:overlayEnabled=true
}

View File

@ -1,5 +1,5 @@
#Splash screen properties #Splash screen properties
#Thu Feb 03 18:46:36 SGT 2022 #Fri Feb 04 22:56:08 SGT 2022
background=0x837793 background=0x837793
memoryGood=0x78CB34 memoryGood=0x78CB34
font=0x0 font=0x0

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "gregtech:items/material_sets/fine/gem_perfect"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "gregtech:items/material_sets/flint/gem_perfect"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "gregtech:items/material_sets/gem_horizontal/gem_perfect"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "gregtech:items/material_sets/gem_vertical/gem_perfect"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "gregtech:items/material_sets/lapis/gem_perfect"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "gregtech:items/material_sets/lignite/gem_perfect"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "gregtech:items/material_sets/netherstar/gem_perfect"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "gregtech:items/material_sets/opal/gem_perfect"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "gregtech:items/material_sets/quartz/gem_perfect"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 442 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 273 B

After

Width:  |  Height:  |  Size: 273 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 273 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 273 B

After

Width:  |  Height:  |  Size: 273 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 273 B

After

Width:  |  Height:  |  Size: 273 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 273 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 273 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 273 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 273 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 273 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 273 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 273 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 273 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 273 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 273 B

After

Width:  |  Height:  |  Size: 273 B

View File

@ -13,6 +13,8 @@ import mods.appliedenergistics2.Inscriber;
// .EUt(8) // .EUt(8)
// .buildAndRegister(); // .buildAndRegister();
<appliedenergistics2:material>.displayName = "Activated Certus Quartz";
//Silicon //Silicon
Inscriber.removeRecipe(<appliedenergistics2:material:20>); Inscriber.removeRecipe(<appliedenergistics2:material:20>);
Inscriber.addRecipe(<appliedenergistics2:material:20>, <metaitem:plateSilicon>, true, <appliedenergistics2:material:19>); Inscriber.addRecipe(<appliedenergistics2:material:20>, <metaitem:plateSilicon>, true, <appliedenergistics2:material:19>);

View File

@ -0,0 +1,57 @@
import mods.gregtech.recipe.RecipeMap;
import mods.gregtech.material.MaterialRegistry;
import crafttweaker.item.IItemStack;
import scripts.common.makeShaped as makeShaped;
//Wooden Gear
recipes.remove(<enderio:item_material:9>);
recipes.addShaped(<enderio:item_material:9>, [[null,<minecraft:stick>,null],
[<minecraft:stick>,null,<minecraft:stick>],
[null,<minecraft:stick>,null]]);
//Wooden Shears
recipes.remove(<thermalfoundation:tool.shears_wood>);
recipes.addShaped(<thermalfoundation:tool.shears_wood>, [[null,<minecraft:stick>,null],
[<minecraft:stick>,null,<minecraft:stick>],
[<enderio:item_material:9>,<minecraft:stick>,null]]);
//Fertilizer
recipes.addShaped("actuallyadditions_fertilizer", <actuallyadditions:item_fertilizer> * 8, [[<minecraft:sand>,<metaitem:gemApatite>,<minecraft:sand>]]);
recipes.remove(<dimensionaledibles:overworld_cake>);
recipes.remove(<dimensionaledibles:nether_cake>);
recipes.remove(<dimensionaledibles:end_cake>);
recipes.remove(<dimensionaledibles:custom_cake>);
recipes.remove(<minecraft:cake>);
recipes.remove(<enderio:item_material:70>);
//Cake Base
recipes.addShaped(<enderio:item_material:70>, [[<minecraft:sugar>, <minecraft:milk_bucket> | <minecraft:bucket>, <minecraft:sugar>], [<actuallyadditions:item_misc:4> | <actuallyadditions:item_misc:9>, <actuallyadditions:item_misc:4> | <actuallyadditions:item_misc:9>, <actuallyadditions:item_misc:4> | <actuallyadditions:item_misc:9>]]);
//Cake
recipes.addShaped(<minecraft:cake>, [[<minecraft:milk_bucket> | <minecraft:bucket>, <minecraft:milk_bucket> | <minecraft:bucket>, <minecraft:milk_bucket> | <minecraft:bucket>], [<minecraft:sugar>, <ore:egg>, <minecraft:sugar>], [<actuallyadditions:item_misc:4>,<actuallyadditions:item_misc:4>,<actuallyadditions:item_misc:4>]]);
//Overworld Cake
recipes.addShaped(<dimensionaledibles:overworld_cake>, [[<minecraft:redstone>, <metaitem:dustGold>, <minecraft:redstone>], [<ore:treeSapling>, <enderio:item_material:70>, <ore:treeSapling>],[<metaitem:plant_ball>,<minecraft:diamond>,<metaitem:plant_ball>]]);
//Nether Cake
recipes.addShaped(<dimensionaledibles:nether_cake>, [[<metaitem:dustNetherrack>,<metaitem:dustNetherrack>,<metaitem:dustNetherrack>], [<minecraft:obsidian>, <enderio:item_material:70>, <minecraft:obsidian>],[<minecraft:soul_sand>,<minecraft:soul_sand>,<minecraft:soul_sand>]]);
//End Cake
recipes.addShaped(<dimensionaledibles:end_cake>, [[<ore:dustEndstone>,<ore:dustEndstone>,<ore:dustEndstone>], [<minecraft:ender_eye>, <enderio:item_material:70>, <minecraft:ender_eye>],[<metaitem:plateBlackSteel>,<metaitem:plateBlackSteel>,<metaitem:plateBlackSteel>]]);
//Void World Cake
makeShaped("of_void_cake", <dimensionaledibles:custom_cake>.withTag({dimID: 119, cakeName: "Void World"}),
["ABC",
"DED",
"FFF"],
{ A : <actuallyadditions:item_crystal:0>, // Restonia Crystal
B : <actuallyadditions:item_crystal:1>, // Palis Crystal
C : <actuallyadditions:item_crystal:4>, // Emeradic Crystal
D : <ore:dustPulsating>, // Pulsating Dust
E : <enderio:item_material:70>, // Cake Base
F : <metaitem:plateAluminium>
}
);

View File

@ -49,72 +49,63 @@ recipes.addShaped(<minecraft:diamond_sword>, [
furnace.addRecipe(<thermalfoundation:material:833>, <metaitem:rubber_drop>, 0.0); furnace.addRecipe(<thermalfoundation:material:833>, <metaitem:rubber_drop>, 0.0);
//Redstone Armor //Redstone Armor
recipes.addShaped(<contenttweaker:redstonearmorplate>, [
[null, <metaitem:plateRedstone>, null],
[<metaitem:plateRedstone>, <thermalfoundation:material:833>, <metaitem:plateRedstone>],
[null, <metaitem:plateRedstone>, null]]);
recipes.addShaped(<armorplus:redstone_helmet>, [ recipes.addShaped(<armorplus:redstone_helmet>, [
[<contenttweaker:redstonearmorplate>,<contenttweaker:redstonearmorplate>,<contenttweaker:redstonearmorplate>], [<metaitem:plateDenseRedstone>,<metaitem:plateDenseRedstone>,<metaitem:plateDenseRedstone>],
[<contenttweaker:redstonearmorplate>, null, <contenttweaker:redstonearmorplate>]]); [<metaitem:plateDenseRedstone>, null, <metaitem:plateDenseRedstone>]]);
recipes.addShaped(<armorplus:redstone_chestplate>, [ recipes.addShaped(<armorplus:redstone_chestplate>, [
[<contenttweaker:redstonearmorplate>, null, <contenttweaker:redstonearmorplate>], [<metaitem:plateDenseRedstone>, null, <metaitem:plateDenseRedstone>],
[<contenttweaker:redstonearmorplate>, <contenttweaker:redstonearmorplate>, <contenttweaker:redstonearmorplate>], [<metaitem:plateDenseRedstone>, <metaitem:plateDenseRedstone>, <metaitem:plateDenseRedstone>],
[<contenttweaker:redstonearmorplate>, <contenttweaker:redstonearmorplate>, <contenttweaker:redstonearmorplate>]]); [<metaitem:plateDenseRedstone>, <metaitem:plateDenseRedstone>, <metaitem:plateDenseRedstone>]]);
recipes.addShaped(<armorplus:redstone_leggings>, [ recipes.addShaped(<armorplus:redstone_leggings>, [
[<contenttweaker:redstonearmorplate>, <contenttweaker:redstonearmorplate>, <contenttweaker:redstonearmorplate>], [<metaitem:plateDenseRedstone>, <metaitem:plateDenseRedstone>, <metaitem:plateDenseRedstone>],
[<contenttweaker:redstonearmorplate>, null, <contenttweaker:redstonearmorplate>], [<metaitem:plateDenseRedstone>, null, <metaitem:plateDenseRedstone>],
[<contenttweaker:redstonearmorplate>, null, <contenttweaker:redstonearmorplate>]]); [<metaitem:plateDenseRedstone>, null, <metaitem:plateDenseRedstone>]]);
recipes.addShaped(<armorplus:redstone_boots>, [ recipes.addShaped(<armorplus:redstone_boots>, [
[<contenttweaker:redstonearmorplate>, null, <contenttweaker:redstonearmorplate>], [<metaitem:plateDenseRedstone>, null, <metaitem:plateDenseRedstone>],
[<contenttweaker:redstonearmorplate>, null, <contenttweaker:redstonearmorplate>]]); [<metaitem:plateDenseRedstone>, null, <metaitem:plateDenseRedstone>]]);
recipes.addShaped(<armorplus:redstone_sword>, [ recipes.addShaped(<armorplus:redstone_sword>, [
[null, <contenttweaker:redstonearmorplate>, null], [null, <metaitem:plateDenseRedstone>, null],
[null, <contenttweaker:redstonearmorplate>, null], [null, <metaitem:plateDenseRedstone>, null],
[null, <minecraft:stick>, null]]); [null, <minecraft:stick>, null]]);
//Lapis Armor //Lapis Armor
recipes.addShaped(<contenttweaker:lapisarmorplate>, [
[null, <metaitem:plateLapis>, null],
[<metaitem:plateLapis>, <thermalfoundation:material:833>, <metaitem:plateLapis>],
[null, <metaitem:plateLapis>, null]]);
recipes.addShaped(<armorplus:lapis_helmet>, [ recipes.addShaped(<armorplus:lapis_helmet>, [
[<contenttweaker:lapisarmorplate>,<contenttweaker:lapisarmorplate>,<contenttweaker:lapisarmorplate>], [<metaitem:plateDenseLapis>,<metaitem:plateDenseLapis>,<metaitem:plateDenseLapis>],
[<contenttweaker:lapisarmorplate>, null, <contenttweaker:lapisarmorplate>]]); [<metaitem:plateDenseLapis>, null, <metaitem:plateDenseLapis>]]);
recipes.addShaped(<armorplus:lapis_chestplate>, [ recipes.addShaped(<armorplus:lapis_chestplate>, [
[<contenttweaker:lapisarmorplate>, null, <contenttweaker:lapisarmorplate>], [<metaitem:plateDenseLapis>, null, <metaitem:plateDenseLapis>],
[<contenttweaker:lapisarmorplate>, <contenttweaker:lapisarmorplate>, <contenttweaker:lapisarmorplate>], [<metaitem:plateDenseLapis>, <metaitem:plateDenseLapis>, <metaitem:plateDenseLapis>],
[<contenttweaker:lapisarmorplate>, <contenttweaker:lapisarmorplate>, <contenttweaker:lapisarmorplate>]]); [<metaitem:plateDenseLapis>, <metaitem:plateDenseLapis>, <metaitem:plateDenseLapis>]]);
recipes.addShaped(<armorplus:lapis_leggings>, [ recipes.addShaped(<armorplus:lapis_leggings>, [
[<contenttweaker:lapisarmorplate>, <contenttweaker:lapisarmorplate>, <contenttweaker:lapisarmorplate>], [<metaitem:plateDenseLapis>, <metaitem:plateDenseLapis>, <metaitem:plateDenseLapis>],
[<contenttweaker:lapisarmorplate>, null, <contenttweaker:lapisarmorplate>], [<metaitem:plateDenseLapis>, null, <metaitem:plateDenseLapis>],
[<contenttweaker:lapisarmorplate>, null, <contenttweaker:lapisarmorplate>]]); [<metaitem:plateDenseLapis>, null, <metaitem:plateDenseLapis>]]);
recipes.addShaped(<armorplus:lapis_boots>, [ recipes.addShaped(<armorplus:lapis_boots>, [
[<contenttweaker:lapisarmorplate>, null, <contenttweaker:lapisarmorplate>], [<metaitem:plateDenseLapis>, null, <metaitem:plateDenseLapis>],
[<contenttweaker:lapisarmorplate>, null, <contenttweaker:lapisarmorplate>]]); [<metaitem:plateDenseLapis>, null, <metaitem:plateDenseLapis>]]);
recipes.addShaped(<armorplus:lapis_sword>, [ recipes.addShaped(<armorplus:lapis_sword>, [
[null, <contenttweaker:lapisarmorplate>, null], [null, <metaitem:plateDenseLapis>, null],
[null, <contenttweaker:lapisarmorplate>, null], [null, <metaitem:plateDenseLapis>, null],
[null, <minecraft:stick>, null]]); [null, <minecraft:stick>, null]]);
//Carbon Armor //Carbon Armor
recipes.addShaped(<contenttweaker:carbonarmorplate>, [
[null, <metaitem:ingotCarbon>, null],
[<metaitem:ingotCarbon>, <thermalfoundation:material:833>, <metaitem:ingotCarbon>],
[null, <metaitem:ingotCarbon>, null]]);
recipes.addShaped(<armorplus:coal_helmet>, [ recipes.addShaped(<armorplus:coal_helmet>, [
[<contenttweaker:carbonarmorplate>,<contenttweaker:carbonarmorplate>,<contenttweaker:carbonarmorplate>], [<metaitem:carbon.plate>,<metaitem:carbon.plate>,<metaitem:carbon.plate>],
[<contenttweaker:carbonarmorplate>, null, <contenttweaker:carbonarmorplate>]]); [<metaitem:carbon.plate>, null, <metaitem:carbon.plate>]]);
recipes.addShaped(<armorplus:coal_chestplate>, [ recipes.addShaped(<armorplus:coal_chestplate>, [
[<contenttweaker:carbonarmorplate>, null, <contenttweaker:carbonarmorplate>], [<metaitem:carbon.plate>, null, <metaitem:carbon.plate>],
[<contenttweaker:carbonarmorplate>, <contenttweaker:carbonarmorplate>, <contenttweaker:carbonarmorplate>], [<metaitem:carbon.plate>, <metaitem:carbon.plate>, <metaitem:carbon.plate>],
[<contenttweaker:carbonarmorplate>, <contenttweaker:carbonarmorplate>, <contenttweaker:carbonarmorplate>]]); [<metaitem:carbon.plate>, <metaitem:carbon.plate>, <metaitem:carbon.plate>]]);
recipes.addShaped(<armorplus:coal_leggings>, [ recipes.addShaped(<armorplus:coal_leggings>, [
[<contenttweaker:carbonarmorplate>, <contenttweaker:carbonarmorplate>, <contenttweaker:carbonarmorplate>], [<metaitem:carbon.plate>, <metaitem:carbon.plate>, <metaitem:carbon.plate>],
[<contenttweaker:carbonarmorplate>, null, <contenttweaker:carbonarmorplate>], [<metaitem:carbon.plate>, null, <metaitem:carbon.plate>],
[<contenttweaker:carbonarmorplate>, null, <contenttweaker:carbonarmorplate>]]); [<metaitem:carbon.plate>, null, <metaitem:carbon.plate>]]);
recipes.addShaped(<armorplus:coal_boots>, [ recipes.addShaped(<armorplus:coal_boots>, [
[<contenttweaker:carbonarmorplate>, null, <contenttweaker:carbonarmorplate>], [<metaitem:carbon.plate>, null, <metaitem:carbon.plate>],
[<contenttweaker:carbonarmorplate>, null, <contenttweaker:carbonarmorplate>]]); [<metaitem:carbon.plate>, null, <metaitem:carbon.plate>]]);
<armorplus:coal_helmet>.displayName = "Carbon Plated Helmet"; <armorplus:coal_helmet>.displayName = "Carbon Plated Helmet";
<armorplus:coal_chestplate>.displayName = "Carbon Plated Chestplate"; <armorplus:coal_chestplate>.displayName = "Carbon Plated Chestplate";
<armorplus:coal_leggings>.displayName = "Carbon Plated Leggings"; <armorplus:coal_leggings>.displayName = "Carbon Plated Leggings";
@ -191,19 +182,19 @@ recipes.addShaped(<minecraft:iron_boots>, [
//Knightslime Armor //Knightslime Armor
recipes.addShaped(<armorplus:knight_slime_helmet>, [ recipes.addShaped(<armorplus:knight_slime_helmet>, [
[<contenttweaker:knightslimeingot>,<contenttweaker:knightslimeingot>,<contenttweaker:knightslimeingot>], [<metaitem:plateTitaniumCarbide>,<metaitem:plateTitaniumCarbide>,<metaitem:plateTitaniumCarbide>],
[<contenttweaker:knightslimeingot>, null, <contenttweaker:knightslimeingot>]]); [<metaitem:plateTitaniumCarbide>, <ore:blockSlime>, <metaitem:plateTitaniumCarbide>]]);
recipes.addShaped(<armorplus:knight_slime_chestplate>, [ recipes.addShaped(<armorplus:knight_slime_chestplate>, [
[<contenttweaker:knightslimeingot>, null, <contenttweaker:knightslimeingot>], [<metaitem:plateTitaniumCarbide>, <ore:blockSlime>, <metaitem:plateTitaniumCarbide>],
[<contenttweaker:knightslimeingot>, <contenttweaker:knightslimeingot>, <contenttweaker:knightslimeingot>], [<metaitem:plateTitaniumCarbide>, <metaitem:plateTitaniumCarbide>, <metaitem:plateTitaniumCarbide>],
[<contenttweaker:knightslimeingot>, <contenttweaker:knightslimeingot>, <contenttweaker:knightslimeingot>]]); [<metaitem:plateTitaniumCarbide>, <metaitem:plateTitaniumCarbide>, <metaitem:plateTitaniumCarbide>]]);
recipes.addShaped(<armorplus:knight_slime_leggings>, [ recipes.addShaped(<armorplus:knight_slime_leggings>, [
[<contenttweaker:knightslimeingot>, <contenttweaker:knightslimeingot>, <contenttweaker:knightslimeingot>], [<metaitem:plateTitaniumCarbide>, <metaitem:plateTitaniumCarbide>, <metaitem:plateTitaniumCarbide>],
[<contenttweaker:knightslimeingot>, null, <contenttweaker:knightslimeingot>], [<metaitem:plateTitaniumCarbide>, <ore:blockSlime>, <metaitem:plateTitaniumCarbide>],
[<contenttweaker:knightslimeingot>, null, <contenttweaker:knightslimeingot>]]); [<metaitem:plateTitaniumCarbide>, null, <metaitem:plateTitaniumCarbide>]]);
recipes.addShaped(<armorplus:knight_slime_boots>, [ recipes.addShaped(<armorplus:knight_slime_boots>, [
[<contenttweaker:knightslimeingot>, null, <contenttweaker:knightslimeingot>], [<metaitem:plateTitaniumCarbide>, <ore:blockSlime>, <metaitem:plateTitaniumCarbide>],
[<contenttweaker:knightslimeingot>, null, <contenttweaker:knightslimeingot>]]); [<metaitem:plateTitaniumCarbide>, null, <metaitem:plateTitaniumCarbide>]]);
//Infused Lava //Infused Lava
var obs = <armorplus:lava_infused_obsidian>; var obs = <armorplus:lava_infused_obsidian>;

View File

@ -142,7 +142,7 @@ mixer.recipeBuilder()
mixer.recipeBuilder() mixer.recipeBuilder()
.inputs([<ore:dustEnergeticAlloy>, <ore:dustEnderPearl>]) .inputs([<ore:dustEnergeticAlloy>, <ore:dustEnderPearl>])
.outputs(<metaitem:dustVibrantAlloy>) .outputs(<metaitem:dustVibrantAlloy>)
.duration(180) .duration(260)
.EUt(30) .EUt(30)
.buildAndRegister(); .buildAndRegister();
//blast_furnace.recipeBuilder().inputs([<ore:ingotEnergeticAlloy>,<minecraft:ender_pearl>]).outputs([<metaitem:ingotVibrantAlloy>]).property("temperature", 1700).duration(600).EUt(120).buildAndRegister(); //blast_furnace.recipeBuilder().inputs([<ore:ingotEnergeticAlloy>,<minecraft:ender_pearl>]).outputs([<metaitem:ingotVibrantAlloy>]).property("temperature", 1700).duration(600).EUt(120).buildAndRegister();
@ -157,10 +157,10 @@ mixer.recipeBuilder()
//Nickel Zinc Ferrite [tier 3] //Nickel Zinc Ferrite [tier 3]
//Furnace Recipe from NZF dust //Furnace Recipe from NZF dust
furnace.addRecipe(<metaitem:ingotNickelZincFerrite>, <metaitem:dustNickelZincFerrite>, 0.0); //furnace.addRecipe(<metaitem:ingotNickelZincFerrite>, <metaitem:dustNickelZincFerrite>, 0.0);
//Remove the recipe from NZF dust //Remove the recipe from NZF dust
// Nickel Zinc Ferrite Ingot * 1 // Nickel Zinc Ferrite Ingot * 1
<recipemap:electric_blast_furnace>.findRecipe(120, [<metaitem:dustFerriteMixture>], [<liquid:oxygen> * 2000]).remove(); //<recipemap:electric_blast_furnace>.findRecipe(120, [<metaitem:dustFerriteMixture>], [<liquid:oxygen> * 2000]).remove();
//Stainless Steel [tier 3] //Stainless Steel [tier 3]
@ -361,12 +361,17 @@ mixer.recipeBuilder()
.EUt(120) .EUt(120)
.buildAndRegister(); .buildAndRegister();
// Electrum Dust * 6
<recipemap:centrifuge>.findRecipe(30, [<metaitem:dustElectrumFlux> * 8], null).remove();
// Fluxed Electrum * 1152 // Fluxed Electrum * 1152
<recipemap:alloy_blast_smelter>.findRecipe(120, [<metaitem:dustElectrum> * 6, <metaitem:dustLumium>, <metaitem:dustSignalum>, <metaitem:circuit.integrated>.withTag({Configuration: 3})], null).remove(); <recipemap:alloy_blast_smelter>.findRecipe(120, [<metaitem:dustElectrum> * 6, <metaitem:dustLumium>, <metaitem:dustSignalum>, <metaitem:circuit.integrated>.withTag({Configuration: 3})], null).remove();
alloy_blast_smelter.recipeBuilder() alloy_blast_smelter.recipeBuilder()
.inputs([<metaitem:dustElectrum> * 6, <metaitem:dustLumium>, <metaitem:dustSignalum>, <ore:dustMana>]) .inputs([<metaitem:dustElectrum> * 6, <metaitem:dustLumium>, <metaitem:dustSignalum>, <ore:dustMana>])
.fluidOutputs(<liquid:electrum_flux> * 1296) .fluidOutputs(<liquid:electrum_flux> * 1296)
.circuit(4) .circuit(4)
.property("temperature", 1100)
.duration(9000) .duration(9000)
.EUt(120) .EUt(120)
.buildAndRegister(); .buildAndRegister();

View File

@ -12,17 +12,17 @@ import mods.contenttweaker.IItemFoodEaten;
import crafttweaker.potions.IPotion; import crafttweaker.potions.IPotion;
var smallgearextrudershape = VanillaFactory.createItem("smallgearextrudershape"); //var smallgearextrudershape = VanillaFactory.createItem("smallgearextrudershape");
smallgearextrudershape.maxStackSize = 64; //smallgearextrudershape.maxStackSize = 64;
smallgearextrudershape.register(); //smallgearextrudershape.register();
//
var deuteriumrover = VanillaFactory.createItem("deuteriumrover"); //var deuteriumrover = VanillaFactory.createItem("deuteriumrover");
deuteriumrover.maxStackSize = 64; //deuteriumrover.maxStackSize = 64;
deuteriumrover.register(); //deuteriumrover.register();
//
var helium3rover = VanillaFactory.createItem("helium3rover"); //var helium3rover = VanillaFactory.createItem("helium3rover");
helium3rover.maxStackSize = 64; //helium3rover.maxStackSize = 64;
helium3rover.register(); //helium3rover.register();
var creativeportabletankmold = VanillaFactory.createItem("creativeportabletankmold"); var creativeportabletankmold = VanillaFactory.createItem("creativeportabletankmold");
creativeportabletankmold.maxStackSize = 64; creativeportabletankmold.maxStackSize = 64;
@ -64,9 +64,9 @@ var grainsofinnocence = VanillaFactory.createItem("grainsofinnocence");
grainsofinnocence.maxStackSize = 64; grainsofinnocence.maxStackSize = 64;
grainsofinnocence.register(); grainsofinnocence.register();
var combinationcircuit = VanillaFactory.createItem("combinationcircuit"); //var combinationcircuit = VanillaFactory.createItem("combinationcircuit");
combinationcircuit.maxStackSize = 64; //combinationcircuit.maxStackSize = 64;
combinationcircuit.register(); //combinationcircuit.register();
//var electronicprocessor = VanillaFactory.createItem("electronicprocessor"); //var electronicprocessor = VanillaFactory.createItem("electronicprocessor");
//electronicprocessor.maxStackSize = 64; //electronicprocessor.maxStackSize = 64;
@ -152,10 +152,10 @@ var gemsensor = VanillaFactory.createItem("gemsensor");
gemsensor.maxStackSize = 64; gemsensor.maxStackSize = 64;
gemsensor.register(); gemsensor.register();
var draconicstemcells = VanillaFactory.createItem("draconicstemcells"); //var draconicstemcells = VanillaFactory.createItem("draconicstemcells");
draconicstemcells.maxStackSize = 64; //draconicstemcells.maxStackSize = 64;
draconicstemcells.rarity = "epic"; //draconicstemcells.rarity = "epic";
draconicstemcells.register(); //draconicstemcells.register();
var radiationlayer = VanillaFactory.createItem("radiationlayer"); var radiationlayer = VanillaFactory.createItem("radiationlayer");
radiationlayer.maxStackSize = 64; radiationlayer.maxStackSize = 64;
@ -212,9 +212,9 @@ var moondust = VanillaFactory.createItem("moondust");
moondust.maxStackSize = 64; moondust.maxStackSize = 64;
moondust.register(); moondust.register();
var pulsatingwire = VanillaFactory.createItem("pulsatingwire"); //var pulsatingwire = VanillaFactory.createItem("pulsatingwire");
pulsatingwire.maxStackSize = 64; //pulsatingwire.maxStackSize = 64;
pulsatingwire.register(); //pulsatingwire.register();
var blazepowder = VanillaFactory.createItem("blazepowder"); var blazepowder = VanillaFactory.createItem("blazepowder");
blazepowder.maxStackSize = 64; blazepowder.maxStackSize = 64;
@ -242,25 +242,25 @@ block_dust.blockResistance = 0.4;
block_dust.gravity = true; block_dust.gravity = true;
block_dust.register(); block_dust.register();
var endstonedust = VanillaFactory.createItem("endstonedust"); //var endstonedust = VanillaFactory.createItem("endstonedust");
endstonedust.maxStackSize = 64; //endstonedust.maxStackSize = 64;
endstonedust.register(); //endstonedust.register();
//
//var knightslimeingot = VanillaFactory.createItem("knightslimeingot");
//knightslimeingot.maxStackSize = 64;
//knightslimeingot.register();
var knightslimeingot = VanillaFactory.createItem("knightslimeingot"); //var redstonearmorplate = VanillaFactory.createItem("redstonearmorplate");
knightslimeingot.maxStackSize = 64; //redstonearmorplate.maxStackSize = 64;
knightslimeingot.register(); //redstonearmorplate.register();
//
var redstonearmorplate = VanillaFactory.createItem("redstonearmorplate"); //var carbonarmorplate = VanillaFactory.createItem("carbonarmorplate");
redstonearmorplate.maxStackSize = 64; //carbonarmorplate.maxStackSize = 64;
redstonearmorplate.register(); //carbonarmorplate.register();
//
var carbonarmorplate = VanillaFactory.createItem("carbonarmorplate"); //var lapisarmorplate = VanillaFactory.createItem("lapisarmorplate");
carbonarmorplate.maxStackSize = 64; //lapisarmorplate.maxStackSize = 64;
carbonarmorplate.register(); //lapisarmorplate.register();
var lapisarmorplate = VanillaFactory.createItem("lapisarmorplate");
lapisarmorplate.maxStackSize = 64;
lapisarmorplate.register();
var solidifiedargon = VanillaFactory.createItem("solidifiedargon"); var solidifiedargon = VanillaFactory.createItem("solidifiedargon");
solidifiedargon.maxStackSize = 64; solidifiedargon.maxStackSize = 64;
@ -438,18 +438,18 @@ ultimate_generator.register();
var hotdraconiumingot = VanillaFactory.createItem("hotdraconiumingot"); //var hotdraconiumingot = VanillaFactory.createItem("hotdraconiumingot");
hotdraconiumingot.rarity = "rare"; //hotdraconiumingot.rarity = "rare";
hotdraconiumingot.maxStackSize = 16; //hotdraconiumingot.maxStackSize = 16;
//
hotdraconiumingot.onItemUpdate = function(itemStack, world, owner, slot, isSelected) { //hotdraconiumingot.onItemUpdate = function(itemStack, world, owner, slot, isSelected) {
if (world.getWorldTime() % 20 == 0) { // if (world.getWorldTime() % 20 == 0) {
owner.attackEntityFrom(<damageSource:heat>.setDamageBypassesArmor(), 3.0); // owner.attackEntityFrom(<damageSource:heat>.setDamageBypassesArmor(), 3.0);
} // }
return; // return;
}; //};
//
hotdraconiumingot.register(); //hotdraconiumingot.register();
@ -514,10 +514,10 @@ quantumfluxedeterniumplating.rarity = "epic";
quantumfluxedeterniumplating.maxStackSize = 64; quantumfluxedeterniumplating.maxStackSize = 64;
quantumfluxedeterniumplating.register(); quantumfluxedeterniumplating.register();
var neutroniumplating = VanillaFactory.createItem("neutroniumplating"); //var neutroniumplating = VanillaFactory.createItem("neutroniumplating");
neutroniumplating.rarity = "epic"; //neutroniumplating.rarity = "epic";
neutroniumplating.maxStackSize = 64; //neutroniumplating.maxStackSize = 64;
neutroniumplating.register(); //neutroniumplating.register();
var heartofauniverse = VanillaFactory.createItem("heartofauniverse"); var heartofauniverse = VanillaFactory.createItem("heartofauniverse");
heartofauniverse.rarity = "epic"; heartofauniverse.rarity = "epic";
@ -630,20 +630,20 @@ stellarcreationdata.rarity = "rare";
stellarcreationdata.maxStackSize = 64; stellarcreationdata.maxStackSize = 64;
stellarcreationdata.register(); stellarcreationdata.register();
var lairoftheclockworkkingdata = VanillaFactory.createItem("lairoftheclockworkkingdata"); //var lairoftheclockworkkingdata = VanillaFactory.createItem("lairoftheclockworkkingdata");
lairoftheclockworkkingdata.rarity = "epic"; //lairoftheclockworkkingdata.rarity = "epic";
lairoftheclockworkkingdata.maxStackSize = 1; //lairoftheclockworkkingdata.maxStackSize = 1;
lairoftheclockworkkingdata.register(); //lairoftheclockworkkingdata.register();
var lairofthechaosguardiandata = VanillaFactory.createItem("lairofthechaosguardiandata"); var lairofthechaosguardiandata = VanillaFactory.createItem("lairofthechaosguardiandata");
lairofthechaosguardiandata.rarity = "epic"; lairofthechaosguardiandata.rarity = "epic";
lairofthechaosguardiandata.maxStackSize = 1; lairofthechaosguardiandata.maxStackSize = 1;
lairofthechaosguardiandata.register(); lairofthechaosguardiandata.register();
var sentientgear = VanillaFactory.createItem("sentientgear"); //var sentientgear = VanillaFactory.createItem("sentientgear");
sentientgear.rarity = "epic"; //sentientgear.rarity = "epic";
sentientgear.maxStackSize = 64; //sentientgear.maxStackSize = 64;
sentientgear.register(); //sentientgear.register();
var denseoilshale = VanillaFactory.createBlock("denseoilshale", <blockmaterial:rock>); var denseoilshale = VanillaFactory.createBlock("denseoilshale", <blockmaterial:rock>);
denseoilshale.blockSoundType = <soundtype:stone>; denseoilshale.blockSoundType = <soundtype:stone>;
@ -716,8 +716,8 @@ pulsatingmesh.maxStackSize = 64;
pulsatingmesh.register(); pulsatingmesh.register();
var simulation_casing = VanillaFactory.createBlock("simulation_casing", <blockmaterial:iron>); //var simulation_casing = VanillaFactory.createBlock("simulation_casing", <blockmaterial:iron>);
simulation_casing.register(); //simulation_casing.register();
//
var simulation_casing_2 = VanillaFactory.createBlock("simulation_casing_2", <blockmaterial:iron>); //var simulation_casing_2 = VanillaFactory.createBlock("simulation_casing_2", <blockmaterial:iron>);
simulation_casing_2.register(); //simulation_casing_2.register();

View File

@ -219,7 +219,7 @@ recipes.addShaped(<enderio:item_liquid_conduit:1> * 4, [
[<minecraft:glass>,<minecraft:glass>,<minecraft:glass>], [<minecraft:glass>,<minecraft:glass>,<minecraft:glass>],
[<ore:itemConduitBinder>, <ore:itemConduitBinder>, <ore:itemConduitBinder>]]); [<ore:itemConduitBinder>, <ore:itemConduitBinder>, <ore:itemConduitBinder>]]);
assembler.recipeBuilder().inputs([<minecraft:glass> * 3, <ore:itemConduitBinder> * 6]).outputs([<enderio:item_liquid_conduit:1> * 8]).duration(80).EUt(16).buildAndRegister(); assembler.recipeBuilder().inputs([<minecraft:glass> * 3, <ore:itemConduitBinder> * 6]).outputs([<enderio:item_liquid_conduit:1> * 8]).duration(80).EUt(16).buildAndRegister();
macerator.recipeBuilder().inputs([<minecraft:diamond>]).outputs([<metaitem:dustDiamond>]).duration(80).EUt(8).buildAndRegister(); //macerator.recipeBuilder().inputs([<minecraft:diamond>]).outputs([<metaitem:dustDiamond>]).duration(80).EUt(8).buildAndRegister();
macerator.recipeBuilder().inputs([<appliedenergistics2:material:7>]).outputs([<appliedenergistics2:material:8>]).duration(80).EUt(8).buildAndRegister(); macerator.recipeBuilder().inputs([<appliedenergistics2:material:7>]).outputs([<appliedenergistics2:material:8>]).duration(80).EUt(8).buildAndRegister();
macerator.recipeBuilder().inputs([<enderio:item_material:16>]).outputs([<enderio:item_material:37>]).duration(500).EUt(16).buildAndRegister(); macerator.recipeBuilder().inputs([<enderio:item_material:16>]).outputs([<enderio:item_material:37>]).duration(500).EUt(16).buildAndRegister();
@ -323,7 +323,7 @@ recipes.addShapeless(<extrautils2:endershard> * 8, [<minecraft:ender_pearl>]);
// .EUt(100).duration(320).buildAndRegister(); // .EUt(100).duration(320).buildAndRegister();
//Dimethylhydrazine: Changes the EU/t //Dimethylhydrazine: Changes the EU/t
chemical_reactor.findRecipe(480, [null], [<liquid:monochloramine> * 1000, <liquid:dimethylamine> * 1000]).remove(); chemical_reactor.findRecipe(480, [null], [<liquid:dimethylamine> * 1000, <liquid:monochloramine> * 1000]).remove();
chemical_reactor.recipeBuilder() chemical_reactor.recipeBuilder()
.fluidInputs(<liquid:monochloramine> * 1000, <liquid:dimethylamine> * 1000) .fluidInputs(<liquid:monochloramine> * 1000, <liquid:dimethylamine> * 1000)
.fluidOutputs(<liquid:dimethylhydrazine> * 1000,<liquid:hydrochloric_acid> * 1000) .fluidOutputs(<liquid:dimethylhydrazine> * 1000,<liquid:hydrochloric_acid> * 1000)
@ -354,8 +354,8 @@ recipes.addShaped(<actuallyadditions:block_fluid_collector>, [[<actuallyaddition
compressor.recipeBuilder().inputs(<metaitem:rubber_drop>).outputs(<metaitem:plateRubber>).duration(20).EUt(8).buildAndRegister(); compressor.recipeBuilder().inputs(<metaitem:rubber_drop>).outputs(<metaitem:plateRubber>).duration(20).EUt(8).buildAndRegister();
//compressor.recipeBuilder().inputs(<extrautils2:ingredients:11>).outputs(<moreplates:demon_plate>).duration(200).EUt(400).buildAndRegister(); //compressor.recipeBuilder().inputs(<extrautils2:ingredients:11>).outputs(<moreplates:demon_plate>).duration(200).EUt(400).buildAndRegister();
compressor.recipeBuilder().inputs(<metaitem:dustCalcium> * 2).outputs(<minecraft:dye:15>).duration(20).EUt(4).buildAndRegister(); compressor.recipeBuilder().inputs(<metaitem:dustCalcium> * 2).outputs(<minecraft:dye:15>).duration(20).EUt(4).buildAndRegister();
compressor.recipeBuilder().inputs(<minecraft:dye:15> * 3).outputs(<minecraft:bone>).duration(20).EUt(8).buildAndRegister(); //compressor.recipeBuilder().inputs(<minecraft:dye:15> * 3).outputs(<minecraft:bone>).duration(20).EUt(8).buildAndRegister();
compressor.recipeBuilder().inputs(<minecraft:bone> * 4).outputs(<minecraft:skull>).duration(20).EUt(16).buildAndRegister(); assembler.recipeBuilder().inputs(<minecraft:bone> * 4).circuit(14).outputs(<minecraft:skull>).duration(20).EUt(16).buildAndRegister();
//macerator.findRecipe(8, [<minecraft:cobblestone>], [null]).remove(); //macerator.findRecipe(8, [<minecraft:cobblestone>], [null]).remove();
@ -364,7 +364,7 @@ compressor.recipeBuilder().inputs(<minecraft:bone> * 4).outputs(<minecraft:skull
//macerator.recipeBuilder().inputs([<minecraft:cobblestone>]).outputs([<minecraft:gravel>]).duration(16).EUt(10).buildAndRegister(); //macerator.recipeBuilder().inputs([<minecraft:cobblestone>]).outputs([<minecraft:gravel>]).duration(16).EUt(10).buildAndRegister();
//macerator.recipeBuilder().inputs([<minecraft:gravel>]).outputs([<minecraft:sand>]).duration(16).EUt(10).buildAndRegister(); //macerator.recipeBuilder().inputs([<minecraft:gravel>]).outputs([<minecraft:sand>]).duration(16).EUt(10).buildAndRegister();
forge_hammer.recipeBuilder().inputs([<minecraft:sand>]).outputs([<contenttweaker:block_dust>]).duration(16).EUt(10).buildAndRegister(); forge_hammer.recipeBuilder().inputs([<minecraft:sand>]).outputs([<contenttweaker:block_dust>]).duration(16).EUt(10).buildAndRegister();
macerator.recipeBuilder().inputs([<minecraft:netherrack>]).outputs([<metaitem:dustNetherrack>]).duration(16).EUt(10).buildAndRegister(); //macerator.recipeBuilder().inputs([<minecraft:netherrack>]).outputs([<metaitem:dustNetherrack>]).duration(16).EUt(10).buildAndRegister();
// Endstone Dust * 1 // Endstone Dust * 1
<recipemap:macerator>.findRecipe(2, [<minecraft:end_stone:0>], null).remove(); <recipemap:macerator>.findRecipe(2, [<minecraft:end_stone:0>], null).remove();
@ -984,24 +984,24 @@ implosion_compressor.recipeBuilder()
// return chance * pow(2, tier); // return chance * pow(2, tier);
//}; //};
//Slight nerf to Bone Meal Recipe ////Slight nerf to Bone Meal Recipe
macerator.findRecipe(2, [<minecraft:bone>], [null]).remove(); //macerator.findRecipe(2, [<minecraft:bone>], [null]).remove();
macerator.recipeBuilder() //macerator.recipeBuilder()
.inputs(<minecraft:bone>) // .inputs(<minecraft:bone>)
.outputs(<minecraft:dye:15> * 4) // .outputs(<minecraft:dye:15> * 4)
.duration(60).EUt(8).buildAndRegister(); // .duration(60).EUt(8).buildAndRegister();
//
//Adjust the Bone Meal by hand recipe ////Adjust the Bone Meal by hand recipe
recipes.removeByRecipeName("gregtech:bone_to_bone_meal"); //recipes.removeByRecipeName("gregtech:bone_to_bone_meal");
recipes.addShapeless(<minecraft:dye:15> * 3, //recipes.addShapeless(<minecraft:dye:15> * 3,
[<minecraft:bone>, <ore:gtceMortars>]); // [<minecraft:bone>, <ore:gtceMortars>]);
//
//Adjust Bone Meal Compressor recipe to prevent dupe ////Adjust Bone Meal Compressor recipe to prevent dupe
//compressor.findRecipe(8, [<minecraft:dye:15> * 3], [null]).remove(); ////compressor.findRecipe(8, [<minecraft:dye:15> * 3], [null]).remove();
compressor.recipeBuilder() //compressor.recipeBuilder()
.inputs(<minecraft:dye:15> * 4) // .inputs(<minecraft:dye:15> * 4)
.outputs(<minecraft:bone>) // .outputs(<minecraft:bone>)
.duration(20).EUt(8).buildAndRegister(); // .duration(20).EUt(8).buildAndRegister();
//Add Decomposition Recipe for Polyphenylene Sulfide //Add Decomposition Recipe for Polyphenylene Sulfide
electrolyzer.recipeBuilder() electrolyzer.recipeBuilder()
@ -1094,8 +1094,18 @@ recipes.addShaped(<metaitem:steam_grinder>, [
// Crafting Station // Crafting Station
assembler.recipeBuilder() assembler.recipeBuilder()
.inputs([<minecraft:chest> * 2, <ore:plankWood> * 4, <ore:craftingTableWood>]) .inputs([<minecraft:chest> * 2, <ore:plankWood> * 4, <minecraft:crafting_table>])
.outputs([<metaitem:workbench>]) .outputs([<metaitem:workbench>])
.duration(100) .duration(100)
.EUt(7) .EUt(7)
.buildAndRegister(); .buildAndRegister();
// Diamond Electrolysis
// Carbon Dust * 64
<recipemap:electrolyzer>.findRecipe(30, [<metaitem:dustDiamond>], null).remove();
electrolyzer.recipeBuilder()
.inputs(<metaitem:dustDiamond>)
.outputs(<metaitem:dustCarbon> * 16)
.duration(768)
.EUt(30)
.buildAndRegister();

View File

@ -204,7 +204,7 @@ makeShaped("of_elytra_wing", <craftelytra:elytra_wing>,
"PE ", "PE ",
"PP "], "PP "],
{ P : <metaitem:platePalladium>, { P : <metaitem:platePalladium>,
E : <metaitem:gemExquisiteEmerald> }); E : <metaitem:gemPerfectEmerald> });
recipes.remove(<minecraft:elytra>); recipes.remove(<minecraft:elytra>);
makeShaped("of_elytra", <minecraft:elytra>, makeShaped("of_elytra", <minecraft:elytra>,
@ -214,10 +214,10 @@ makeShaped("of_elytra", <minecraft:elytra>,
fluidextractor.recipeBuilder() //fluidextractor.recipeBuilder()
.inputs(<contenttweaker:sentientgear>) // .inputs(<contenttweaker:sentientgear>)
.fluidOutputs([<liquid:tungsten_carbide> * 40320]) // .fluidOutputs([<liquid:tungsten_carbide> * 40320])
.duration(1000).EUt(3000).buildAndRegister(); // .duration(1000).EUt(3000).buildAndRegister();
// Helium Plasma * 125 // Helium Plasma * 125
<recipemap:fusion_reactor>.findRecipe(4096, null, [<liquid:deuterium> * 125, <liquid:tritium> * 125]).remove(); <recipemap:fusion_reactor>.findRecipe(4096, null, [<liquid:deuterium> * 125, <liquid:tritium> * 125]).remove();
@ -238,7 +238,7 @@ recipes.remove(<gregtech:machine_casing:6>);
recipes.remove(<meta_tile_entity:hull.luv>); recipes.remove(<meta_tile_entity:hull.luv>);
recipes.addShaped(<meta_tile_entity:hull.luv>, [ recipes.addShaped(<meta_tile_entity:hull.luv>, [
[<ore:platePlastic>, <ore:plateLumium>, <ore:platePlastic>], [<metaitem:platePolytetrafluoroethylene>, <ore:plateLumium>, <metaitem:platePolytetrafluoroethylene>],
[<ore:cableGtSingleVanadiumGallium>, <gregtech:machine_casing:6>, <ore:cableGtSingleVanadiumGallium>]]); [<ore:cableGtSingleVanadiumGallium>, <gregtech:machine_casing:6>, <ore:cableGtSingleVanadiumGallium>]]);
assembler.findRecipe(16, assembler.findRecipe(16,
@ -467,3 +467,9 @@ extractor.recipeBuilder()
.duration(1000) .duration(1000)
.EUt(180000) .EUt(180000)
.buildAndRegister(); .buildAndRegister();
// UHV 16x Batbuf
recipes.addShaped(<metaitem:battery_buffer.uhv.16>, [
[<metaitem:wireGtHexOmnium>, <metaitem:hull.uhv>, <metaitem:wireGtHexOmnium>],
[<metaitem:wireGtHexOmnium>, <minecraft:chest>, <metaitem:wireGtHexOmnium>]
]);

View File

@ -732,3 +732,21 @@ mods.extendedcrafting.TableCrafting.addShaped(<enderio:block_soul_binder>, [
[<ore:ingotSoularium>, <minecraft:skull:4>, <ore:itemSoulMachineChassi>, <minecraft:skull:2>, <ore:ingotSoularium>], [<ore:ingotSoularium>, <minecraft:skull:4>, <ore:itemSoulMachineChassi>, <minecraft:skull:2>, <ore:ingotSoularium>],
[<ore:ingotSoularium>, <metaitem:plateTungstenSteel>, <minecraft:skull>, <metaitem:plateTungstenSteel>,<ore:ingotSoularium>], [<ore:ingotSoularium>, <metaitem:plateTungstenSteel>, <minecraft:skull>, <metaitem:plateTungstenSteel>,<ore:ingotSoularium>],
[<ore:ingotSoularium>, <ore:ingotSoularium>, <ore:ingotSoularium>, <ore:ingotSoularium>,<ore:ingotSoularium>]]); [<ore:ingotSoularium>, <ore:ingotSoularium>, <ore:ingotSoularium>, <ore:ingotSoularium>,<ore:ingotSoularium>]]);
// Elevation Unit
canner.recipeBuilder()
.inputs(<simplyjetpacks:metaitemmods:18>)
.fluidInputs(<liquid:glowstone> * 4032)
.outputs(<simplyjetpacks:metaitemmods:19>)
.duration(100)
.EUt(7)
.buildAndRegister();
// Coolant Unit
canner.recipeBuilder()
.inputs(<simplyjetpacks:metaitemmods:20>)
.fluidInputs(<liquid:cryotheum> * 6000)
.outputs(<simplyjetpacks:metaitemmods:21>)
.duration(100)
.EUt(7)
.buildAndRegister();

View File

@ -515,31 +515,31 @@ makeShaped("of_dml_living_matter_extraterrestrial",
); );
// Lunar Mining Station Rovers: //// Lunar Mining Station Rovers:
//
//
// Helium3 Rover (Tritium) //// Helium3 Rover (Tritium)
makeShaped("of_helium3rover", <contenttweaker:helium3rover> * 16, //makeShaped("of_helium3rover", <contenttweaker:helium3rover> * 16,
["SSA", // ["SSA",
"BCD", // "BCD",
"E E"], // "E E"],
{ A : <metaitem:sensor.ev>, // { A : <metaitem:sensor.ev>,
B : <metaitem:plateTitanium>, // B : <metaitem:plateTitanium>,
C : <meta_tile_entity:hull.ev>, // C : <meta_tile_entity:hull.ev>,
D : <metaitem:robot.arm.ev>, // D : <metaitem:robot.arm.ev>,
E : <metaitem:conveyor.module.ev>, // E : <metaitem:conveyor.module.ev>,
S : <solarflux:solar_panel_3> } // S : <solarflux:solar_panel_3> }
); //);
//
// Deuterium Rover //// Deuterium Rover
makeShaped("of_deuteriumrover", <contenttweaker:deuteriumrover> * 16, //makeShaped("of_deuteriumrover", <contenttweaker:deuteriumrover> * 16,
["SSA", // ["SSA",
"BCD", // "BCD",
"E E"], // "E E"],
{ A : <metaitem:sensor.hv>, // { A : <metaitem:sensor.hv>,
B : <metaitem:plateStainlessSteel>, // B : <metaitem:plateStainlessSteel>,
C : <meta_tile_entity:hull.hv>, // C : <meta_tile_entity:hull.hv>,
D : <metaitem:robot.arm.hv>, // D : <metaitem:robot.arm.hv>,
E : <metaitem:conveyor.module.hv>, // E : <metaitem:conveyor.module.hv>,
S : <solarflux:solar_panel_2> } // S : <solarflux:solar_panel_2> }
); //);

View File

@ -479,15 +479,15 @@ alloy.recipeBuilder()
.duration(50).EUt(16).buildAndRegister(); .duration(50).EUt(16).buildAndRegister();
// permutations of ferroboron and lithium ingots/dusts // permutations of ferroboron and lithium ingots/dusts
alloy.recipeBuilder() //alloy.recipeBuilder()
.outputs([<nuclearcraft:alloy:1> * 2]) // .outputs([<nuclearcraft:alloy:1> * 2])
.inputs([<ore:ingotFerroboron>, <ore:ingotLithium>]) // .inputs([<ore:ingotFerroboron>, <ore:ingotLithium>])
.duration(300).EUt(16).buildAndRegister(); // .duration(300).EUt(16).buildAndRegister();
//
alloy.recipeBuilder() //alloy.recipeBuilder()
.outputs([<nuclearcraft:alloy:1> * 2]) // .outputs([<nuclearcraft:alloy:1> * 2])
.inputs([<ore:dustFerroboron>, <ore:ingotLithium>]) // .inputs([<ore:dustFerroboron>, <ore:ingotLithium>])
.duration(300).EUt(16).buildAndRegister(); // .duration(300).EUt(16).buildAndRegister();
alloy.recipeBuilder() alloy.recipeBuilder()
.outputs([<nuclearcraft:alloy:1> * 2]) .outputs([<nuclearcraft:alloy:1> * 2])
@ -500,15 +500,15 @@ alloy.recipeBuilder()
.duration(300).EUt(16).buildAndRegister(); .duration(300).EUt(16).buildAndRegister();
// permutations of steel and boron ingots/dusts // permutations of steel and boron ingots/dusts
alloy.recipeBuilder() //alloy.recipeBuilder()
.outputs([<nuclearcraft:alloy:6> * 2]) // .outputs([<nuclearcraft:alloy:6> * 2])
.inputs([<ore:ingotSteel>, <ore:ingotBoron>]) // .inputs([<ore:ingotSteel>, <ore:ingotBoron>])
.duration(300).EUt(16).buildAndRegister(); // .duration(300).EUt(16).buildAndRegister();
//
alloy.recipeBuilder() //alloy.recipeBuilder()
.outputs([<nuclearcraft:alloy:6> * 2]) // .outputs([<nuclearcraft:alloy:6> * 2])
.inputs([<ore:dustSteel>, <ore:ingotBoron>]) // .inputs([<ore:dustSteel>, <ore:ingotBoron>])
.duration(300).EUt(16).buildAndRegister(); // .duration(300).EUt(16).buildAndRegister();
alloy.recipeBuilder() alloy.recipeBuilder()
.outputs([<nuclearcraft:alloy:6> * 2]) .outputs([<nuclearcraft:alloy:6> * 2])
@ -925,26 +925,34 @@ compressor.recipeBuilder()
.inputs([<ore:dustWheat> * 2]) .inputs([<ore:dustWheat> * 2])
.duration(400).EUt(2).buildAndRegister(); .duration(400).EUt(2).buildAndRegister();
// Gelatin from CEu Gelatin
extractor.recipeBuilder()
.inputs(<ore:dustGelatin>)
.fluidOutputs(<fluid:gelatin>)
.duration(100)
.EUt(7)
.buildAndRegister();
// Gelatin from meat // Gelatin from meat
macerator.recipeBuilder() //macerator.recipeBuilder()
.outputs(<nuclearcraft:gelatin>) // .outputs(<nuclearcraft:gelatin>)
.inputs([<ore:dustSmallMeat>]) // .inputs([<ore:dustSmallMeat>])
.duration(40).EUt(30).buildAndRegister(); // .duration(40).EUt(30).buildAndRegister();
// Gelatin from fish // Gelatin from fish
var fishes as IItemStack[] = [ //var fishes as IItemStack[] = [
<minecraft:fish>, // <minecraft:fish>,
<minecraft:fish:1>, // <minecraft:fish:1>,
<minecraft:fish:2>, // <minecraft:fish:2>,
<minecraft:fish:3> // <minecraft:fish:3>
] as IItemStack[]; //] as IItemStack[];
//
for fish in fishes { //for fish in fishes {
macerator.recipeBuilder() // macerator.recipeBuilder()
.outputs(<nuclearcraft:gelatin> * 4) // .outputs(<nuclearcraft:gelatin> * 4)
.inputs([fish]) // .inputs([fish])
.duration(160).EUt(30).buildAndRegister(); // .duration(160).EUt(30).buildAndRegister();
} //}
// Hydrated gelatin // Hydrated gelatin
mixer.recipeBuilder() mixer.recipeBuilder()
@ -1175,6 +1183,12 @@ thermal_sep.recipeBuilder()
.duration(3200).EUt(48).buildAndRegister(); .duration(3200).EUt(48).buildAndRegister();
//Remove Duping Uranium via extra Uranium 235 tiny Pile //Remove Duping Uranium via extra Uranium 235 tiny Pile
// Uranium-238 * 1
<recipemap:thermal_centrifuge>.findRecipe(48, [<metaitem:dustUranium>], null).remove();
// Uranium-238 * 1
<recipemap:thermal_centrifuge>.findRecipe(48, [<metaitem:ingotUranium>], null).remove();
//thermal_sep.findRecipe(48, [<metaitem:dustUranium>], [null]).remove(); //thermal_sep.findRecipe(48, [<metaitem:dustUranium>], [null]).remove();
//thermal_sep.findRecipe(48, [<metaitem:ingotUranium>], [null]).remove(); //thermal_sep.findRecipe(48, [<metaitem:ingotUranium>], [null]).remove();

View File

@ -281,9 +281,9 @@ recipes.addShaped(<thermalexpansion:augment:496>, [
//i give up //i give up
recipes.remove(<thermalexpansion:augment:688>); recipes.remove(<thermalexpansion:augment:688>);
recipes.addShaped(<thermalexpansion:augment:688>, [ recipes.addShaped(<thermalexpansion:augment:688>, [
[<ore:plateFluxedElectrum>, <ore:plateFluxedElectrum>, <ore:plateFluxedElectrum>], [<ore:plateElectrumFlux>, <ore:plateElectrumFlux>, <ore:plateElectrumFlux>],
[<ore:plateFluxedElectrum>, <thermalfoundation:material:1028>, <ore:plateFluxedElectrum>], [<ore:plateElectrumFlux>, <thermalfoundation:material:1028>, <ore:plateElectrumFlux>],
[<ore:plateFluxedElectrum>, <ore:plateFluxedElectrum>, <ore:plateFluxedElectrum>]]); [<ore:plateElectrumFlux>, <ore:plateElectrumFlux>, <ore:plateElectrumFlux>]]);
//i give up //i give up
recipes.remove(<thermalexpansion:augment:402>); recipes.remove(<thermalexpansion:augment:402>);

View File

@ -1336,6 +1336,8 @@ mods.jei.JEI.hideCategory("extendedcrafting:compressor");
mods.jei.JEI.hideCategory("extendedcrafting:ender_crafting"); mods.jei.JEI.hideCategory("extendedcrafting:ender_crafting");
mods.jei.JEI.hideCategory("thermalexpansion.compression"); mods.jei.JEI.hideCategory("thermalexpansion.compression");
mods.jei.JEI.hideCategory("thermalexpansion.enervation"); mods.jei.JEI.hideCategory("thermalexpansion.enervation");
mods.jei.JEI.hideCategory("thermalexpansion.transposer_fill");
mods.jei.JEI.hideCategory("thermalexpansion.transposer_extract");
//mods.jei.JEI.hideCategory("gregtech:plasma_arc_furnace"); //mods.jei.JEI.hideCategory("gregtech:plasma_arc_furnace");
//mods.jei.JEI.hideCategory("gregtech:arc_furnace"); //mods.jei.JEI.hideCategory("gregtech:arc_furnace");
//mods.jei.JEI.hideCategory("gregtech:naquadah_reactor"); //mods.jei.JEI.hideCategory("gregtech:naquadah_reactor");
@ -1687,6 +1689,9 @@ mods.jei.JEI.removeAndHide(<avaritia:matter_cluster>);
mods.jei.JEI.removeAndHide(<deepmoblearning:soot_covered_plate>); mods.jei.JEI.removeAndHide(<deepmoblearning:soot_covered_plate>);
mods.jei.JEI.removeAndHide(<deepmoblearning:soot_covered_redstone>); mods.jei.JEI.removeAndHide(<deepmoblearning:soot_covered_redstone>);
//DevTech Removals
mods.jei.JEI.removeAndHide(<devtech:meta_gem_perfect:2000>); // Perfect Glass
//EnderIO Removals //EnderIO Removals
mods.jei.JEI.removeAndHide(<enderio:item_material:28>); mods.jei.JEI.removeAndHide(<enderio:item_material:28>);
@ -2261,7 +2266,7 @@ mods.jei.JEI.removeAndHide(<libvulpes:productsheet:1>);
//Molten Nether Star //Molten Nether Star
recipes.addShapeless(<minecraft:nether_star> * 9, [<extendedcrafting:storage:2>]); recipes.addShapeless(<minecraft:nether_star> * 9, [<extendedcrafting:storage:2>]);
solidifier.recipeBuilder().fluidInputs(<liquid:nether_star> * 1296).notConsumable(<metaitem:shape.mold.block>).outputs([<extendedcrafting:storage:2>]).duration(200).EUt(30).buildAndRegister(); solidifier.recipeBuilder().fluidInputs(<liquid:nether_star> * 1296).notConsumable(<metaitem:shape.mold.block>).outputs([<extendedcrafting:storage:2>]).duration(200).EUt(30).buildAndRegister();
fluidextractor.recipeBuilder().inputs(<minecraft:nether_star>).fluidOutputs([<liquid:nether_star> * 144]).duration(40).EUt(30).buildAndRegister(); //fluidextractor.recipeBuilder().inputs(<minecraft:nether_star>).fluidOutputs([<liquid:nether_star> * 144]).duration(40).EUt(30).buildAndRegister();
fluidextractor.recipeBuilder().inputs(<extendedcrafting:storage:2>).fluidOutputs([<liquid:nether_star> * 1296]).duration(360).EUt(30).buildAndRegister(); fluidextractor.recipeBuilder().inputs(<extendedcrafting:storage:2>).fluidOutputs([<liquid:nether_star> * 1296]).duration(360).EUt(30).buildAndRegister();
//Molten Empowered Restonia //Molten Empowered Restonia
@ -2417,8 +2422,8 @@ recipes.addShapeless(<metaitem:ingotRedAlloy>, [<enderio:item_alloy_ingot:3>]);
//Misc //Misc
//<ore:lvcef>.add(<meta_tile_entity:cef.lv.4>); //<ore:lvcef>.add(<meta_tile_entity:cef.lv.4>);
//<ore:lvcef>.add(<meta_tile_entity:cef.lv.16>); //<ore:lvcef>.add(<meta_tile_entity:cef.lv.16>);
<ore:wireGtSinglePulsatingIron>.add(<contenttweaker:pulsatingwire>); //<ore:wireGtSinglePulsatingIron>.add(<contenttweaker:pulsatingwire>);
<ore:dustEndstone>.add(<contenttweaker:endstonedust>); //<ore:dustEndstone>.add(<contenttweaker:endstonedust>);
//Removals //Removals
//<ore:craftingLensLime>.remove(<metaitem:lensEnderEye>); //<ore:craftingLensLime>.remove(<metaitem:lensEnderEye>);
@ -2564,14 +2569,14 @@ recipes.addShapeless(<metaitem:dustSulfur>, [<thermalfoundation:material:771>]);
recipes.addShapeless(<metaitem:gemCoke> * 9, [<thermalfoundation:storage_resource:1>]); recipes.addShapeless(<metaitem:gemCoke> * 9, [<thermalfoundation:storage_resource:1>]);
// Temporary recipe to convert endstone dusts // Temporary recipe to convert endstone dusts
recipes.addShapeless(<ore:dustEndstone>.firstItem, [<contenttweaker:endstonedust>]); //recipes.addShapeless(<ore:dustEndstone>.firstItem, [<contenttweaker:endstonedust>]);
<contenttweaker:endstonedust>.addTooltip(format.red("This item is obsolete and will be removed in the next update.")); //<contenttweaker:endstonedust>.addTooltip(format.red("This item is obsolete and will be removed in the next update."));
<contenttweaker:endstonedust>.addTooltip(format.red("Please use the GregTech variant of Endstone Dust.")); //<contenttweaker:endstonedust>.addTooltip(format.red("Please use the GregTech variant of Endstone Dust."));
// Temporary recipe to convert pulsating iron wire that is probably unnecessary anyway. // Temporary recipe to convert pulsating iron wire that is probably unnecessary anyway.
recipes.addShapeless(<ore:wireGtSinglePulsatingIron>.firstItem, [<contenttweaker:pulsatingwire>]); //recipes.addShapeless(<ore:wireGtSinglePulsatingIron>.firstItem, [<contenttweaker:pulsatingwire>]);
<contenttweaker:pulsatingwire>.addTooltip(format.red("This item is obsolete and will be removed in the next update.")); //<contenttweaker:pulsatingwire>.addTooltip(format.red("This item is obsolete and will be removed in the next update."));
<contenttweaker:pulsatingwire>.addTooltip(format.red("Please use the GregTech variant of Pulsating Iron Wire.")); //<contenttweaker:pulsatingwire>.addTooltip(format.red("Please use the GregTech variant of Pulsating Iron Wire."));
//neutronium plate exchange //neutronium plate exchange
//recipes.addShapeless("of_exchange_neutronium_plate", //recipes.addShapeless("of_exchange_neutronium_plate",

View File

@ -89,6 +89,7 @@ recipes.addShaped(<minecraft:spawn_egg>.withTag({EntityTag: {id: "minecraft:cow"
recipes.addShaped(<minecraft:spawn_egg>.withTag({EntityTag: {id: "minecraft:pig"}}) * 2, [[<contenttweaker:omnicoin25>, null, null],[null, null, <contenttweaker:omnicoin25>], [null, null, null]]); recipes.addShaped(<minecraft:spawn_egg>.withTag({EntityTag: {id: "minecraft:pig"}}) * 2, [[<contenttweaker:omnicoin25>, null, null],[null, null, <contenttweaker:omnicoin25>], [null, null, null]]);
recipes.addShaped(<gregtech:ore_ilmenite_0> * 32, [[<contenttweaker:omnicoin25>, null, null],[null, <contenttweaker:omnicoin25>, null], [null, null, null]]); recipes.addShaped(<gregtech:ore_ilmenite_0> * 32, [[<contenttweaker:omnicoin25>, null, null],[null, <contenttweaker:omnicoin25>, null], [null, null, null]]);
recipes.addShaped(<gregtech:ore_platinum_0> * 32, [[<contenttweaker:omnicoin25>, null, null],[<contenttweaker:omnicoin25>, null, null], [null, null, null]]); recipes.addShaped(<gregtech:ore_platinum_0> * 32, [[<contenttweaker:omnicoin25>, null, null],[<contenttweaker:omnicoin25>, null, null], [null, null, null]]);
recipes.addShaped(<gregtech:ore_cooperite_0> * 32, [[<contenttweaker:omnicoin25>, null, null],[<contenttweaker:omnicoin25>, <contenttweaker:omnicoin25>, null], [null, null, null]]);
recipes.addShaped(<gregtech:ore_diamond_0> * 32, [[<contenttweaker:omnicoin25>, <contenttweaker:omnicoin25>, null],[null, null, null], [null, null, null]]); recipes.addShaped(<gregtech:ore_diamond_0> * 32, [[<contenttweaker:omnicoin25>, <contenttweaker:omnicoin25>, null],[null, null, null], [null, null, null]]);
recipes.addShaped(<minecraft:spawn_egg>.withTag({EntityTag: {id: "minecraft:sheep"}}) * 2, [[<contenttweaker:omnicoin5>, <contenttweaker:omnicoin5>, <contenttweaker:omnicoin5>],[<contenttweaker:omnicoin5>, null, null], [null, <contenttweaker:omnicoin5>, null]]); recipes.addShaped(<minecraft:spawn_egg>.withTag({EntityTag: {id: "minecraft:sheep"}}) * 2, [[<contenttweaker:omnicoin5>, <contenttweaker:omnicoin5>, <contenttweaker:omnicoin5>],[<contenttweaker:omnicoin5>, null, null], [null, <contenttweaker:omnicoin5>, null]]);
recipes.addShaped(<gregtech:ore_tricalcium_phosphate_0> * 32, [[null, null, null],[<contenttweaker:omnicoin>, <contenttweaker:omnicoin>, <contenttweaker:omnicoin>], [null, <contenttweaker:omnicoin>, <contenttweaker:omnicoin>]]); recipes.addShaped(<gregtech:ore_tricalcium_phosphate_0> * 32, [[null, null, null],[<contenttweaker:omnicoin>, <contenttweaker:omnicoin>, <contenttweaker:omnicoin>], [null, <contenttweaker:omnicoin>, <contenttweaker:omnicoin>]]);

View File

@ -224,49 +224,42 @@ assembler.recipeBuilder().inputs(<ore:plateIron> * 8).notConsumable(<metaitem:ci
// pyro // pyro
pyrolyse_oven.recipeBuilder()
.inputs([<ore:logWood> * 16])
.notConsumable(<metaitem:circuit.integrated>.withTag({Configuration: 10}))
.fluidInputs([<liquid:steam> * 4000])
.outputs([<minecraft:coal:1> * 20])
.fluidOutputs([<liquid:creosote> * 4000])
.duration(600).EUt(30).buildAndRegister();
//Wood Vinegar and Charcoal ////Wood Vinegar and Charcoal
pyrolyse_oven.recipeBuilder() //pyrolyse_oven.recipeBuilder()
.inputs([<ore:logWood> * 16]) // .inputs([<ore:logWood> * 16])
.notConsumable(<metaitem:circuit.integrated>.withTag({Configuration: 11})) // .notConsumable(<metaitem:circuit.integrated>.withTag({Configuration: 11}))
.fluidInputs([<liquid:steam> * 4000]) // .fluidInputs([<liquid:steam> * 4000])
.outputs([<minecraft:coal:1> * 20]) // .outputs([<minecraft:coal:1> * 20])
.fluidOutputs([<liquid:wood_vinegar> * 3000]) // .fluidOutputs([<liquid:wood_vinegar> * 3000])
.duration(600).EUt(30).buildAndRegister(); // .duration(600).EUt(30).buildAndRegister();
//
//Wood Gas and Charcoal ////Wood Gas and Charcoal
pyrolyse_oven.recipeBuilder() //pyrolyse_oven.recipeBuilder()
.inputs([<ore:logWood> * 16]) // .inputs([<ore:logWood> * 16])
.notConsumable(<metaitem:circuit.integrated>.withTag({Configuration: 12})) // .notConsumable(<metaitem:circuit.integrated>.withTag({Configuration: 12}))
.fluidInputs([<liquid:steam> * 4000]) // .fluidInputs([<liquid:steam> * 4000])
.outputs([<minecraft:coal:1> * 20]) // .outputs([<minecraft:coal:1> * 20])
.fluidOutputs([<liquid:wood_gas> * 1500]) // .fluidOutputs([<liquid:wood_gas> * 1500])
.duration(600).EUt(30).buildAndRegister(); // .duration(600).EUt(30).buildAndRegister();
//
//Wood Tar and Charcoal ////Wood Tar and Charcoal
pyrolyse_oven.recipeBuilder() //pyrolyse_oven.recipeBuilder()
.inputs([<ore:logWood> * 16]) // .inputs([<ore:logWood> * 16])
.notConsumable(<metaitem:circuit.integrated>.withTag({Configuration: 13})) // .notConsumable(<metaitem:circuit.integrated>.withTag({Configuration: 13}))
.fluidInputs([<liquid:steam> * 4000]) // .fluidInputs([<liquid:steam> * 4000])
.outputs([<minecraft:coal:1> * 20]) // .outputs([<minecraft:coal:1> * 20])
.fluidOutputs([<liquid:wood_tar> * 1500]) // .fluidOutputs([<liquid:wood_tar> * 1500])
.duration(600).EUt(30).buildAndRegister(); // .duration(600).EUt(30).buildAndRegister();
//
//Charcoal Byproducts and Charcoal ////Charcoal Byproducts and Charcoal
pyrolyse_oven.recipeBuilder() //pyrolyse_oven.recipeBuilder()
.inputs([<ore:logWood> * 16]) // .inputs([<ore:logWood> * 16])
.notConsumable(<metaitem:circuit.integrated>.withTag({Configuration: 14})) // .notConsumable(<metaitem:circuit.integrated>.withTag({Configuration: 14}))
.fluidInputs([<liquid:steam> * 4000]) // .fluidInputs([<liquid:steam> * 4000])
.outputs([<minecraft:coal:1> * 20]) // .outputs([<minecraft:coal:1> * 20])
.fluidOutputs([<liquid:charcoal_byproducts> * 4000]) // .fluidOutputs([<liquid:charcoal_byproducts> * 4000])
.duration(600).EUt(30).buildAndRegister(); // .duration(600).EUt(30).buildAndRegister();
//Phenol and Coke //Phenol and Coke
pyrolyse_oven.recipeBuilder() pyrolyse_oven.recipeBuilder()
@ -351,7 +344,7 @@ circuit_assembler.recipeBuilder()
// High Voltage Coil * 1 // High Voltage Coil * 1
<recipemap:assembler>.findRecipe(480, [<metaitem:stickSteelMagnetic>, <metaitem:wireFineBlackSteel> * 16, <metaitem:circuit.integrated>.withTag({Configuration: 1})], null).remove(); <recipemap:assembler>.findRecipe(480, [<metaitem:stickSteelMagnetic>, <metaitem:wireFineBlackSteel> * 16, <metaitem:circuit.integrated>.withTag({Configuration: 1})], null).remove();
assembler.recipeBuilder() assembler.recipeBuilder()
.inputs(<metaitem:stickSteelMagnetic>, <metaitem:wireFineEndSteel> * 16) .inputs(<metaitem:stickSteelMagnetic>, <metaitem:wireFineSilver> * 16)
.circuit(1) .circuit(1)
.outputs(<metaitem:voltage_coil.hv>) .outputs(<metaitem:voltage_coil.hv>)
.duration(200) .duration(200)
@ -463,11 +456,11 @@ chemical_reactor.recipeBuilder()
.EUt(30720) .EUt(30720)
.buildAndRegister(); .buildAndRegister();
large_chemical_reactor.recipeBuilder() //large_chemical_reactor.recipeBuilder()
.inputs(<minecraft:dragon_egg>) // .inputs(<minecraft:dragon_egg>)
.fluidInputs(<liquid:bacteria> * 500, <liquid:sterilized_growth_medium> * 500) // .fluidInputs(<liquid:bacteria> * 500, <liquid:sterilized_growth_medium> * 500)
.outputs([<metaitem:stem_cells> * 64, <metaitem:stem_cells> * 64]) // .outputs([<metaitem:stem_cells> * 64, <metaitem:stem_cells> * 64])
.fluidOutputs(<liquid:bacterial_sludge> * 500) // .fluidOutputs(<liquid:bacterial_sludge> * 500)
.duration(6000) // .duration(6000)
.EUt(30720) // .EUt(30720)
.buildAndRegister(); // .buildAndRegister();

View File

@ -440,15 +440,15 @@ fluid_extractor.recipeBuilder()
.fluidOutputs([<liquid:plutonium2> * 16]) .fluidOutputs([<liquid:plutonium2> * 16])
.duration(20).EUt(16).buildAndRegister(); .duration(20).EUt(16).buildAndRegister();
fluid_extractor.recipeBuilder() //fluid_extractor.recipeBuilder()
.inputs([<metaitem:ingotPlutonium>]) // .inputs([<metaitem:ingotPlutonium>])
.fluidOutputs([<liquid:plutonium> * 144]) // .fluidOutputs([<liquid:plutonium> * 144])
.duration(180).EUt(16).buildAndRegister(); // .duration(180).EUt(16).buildAndRegister();
fluid_extractor.recipeBuilder() //fluid_extractor.recipeBuilder()
.inputs([<metaitem:nuggetPlutonium>]) // .inputs([<metaitem:nuggetPlutonium>])
.fluidOutputs([<liquid:plutonium> * 16]) // .fluidOutputs([<liquid:plutonium> * 16])
.duration(20).EUt(16).buildAndRegister(); // .duration(20).EUt(16).buildAndRegister();
fluid_extractor.recipeBuilder() fluid_extractor.recipeBuilder()
.inputs([<nuclearcraft:curium>]) .inputs([<nuclearcraft:curium>])
@ -580,5 +580,5 @@ fluid_extractor.recipeBuilder()
.fluidOutputs([<liquid:californium> * 16]) .fluidOutputs([<liquid:californium> * 16])
.duration(20).EUt(16).buildAndRegister(); .duration(20).EUt(16).buildAndRegister();
recipes.removeByRecipeName("gregtech:nugget_assembling_235"); //recipes.removeByRecipeName("gregtech:nugget_assembling_235");

View File

@ -107,7 +107,7 @@ var vibrant_alloy = MaterialBuilder(32013, "vibrant_alloy")
.ingot().fluid() .ingot().fluid()
.color(0xa4ff70).iconSet("shiny") .color(0xa4ff70).iconSet("shiny")
.flags("generate_plate", "generate_gear", "generate_rod", "generate_bolt_screw") .flags("generate_plate", "generate_gear", "generate_rod", "generate_bolt_screw")
.blastTemp(1250, "LOW", 120, 600) .blastTemp(1350, "LOW", 120, 600)
.components([<material:energetic_alloy> * 1, <material:ender_pearl> * 1]) .components([<material:energetic_alloy> * 1, <material:ender_pearl> * 1])
.cableProperties(512, 1, 0, true) .cableProperties(512, 1, 0, true)
.build(); .build();
@ -183,7 +183,7 @@ var soularium = MaterialBuilder(32024, "soularium")
var end_steel = MaterialBuilder(32025, "end_steel") var end_steel = MaterialBuilder(32025, "end_steel")
.ingot().fluid() .ingot().fluid()
.color(0xd6d980).iconSet("metallic") .color(0xd6d980).iconSet("metallic")
.flags("generate_plate", "generate_fine_wire") .flags("generate_plate")
.cableProperties(2048,1,0,true) .cableProperties(2048,1,0,true)
.build(); .build();
@ -251,6 +251,8 @@ var iridosmine_8020 = MaterialBuilder(32030, "iridosmine_8020")
<material:stainless_steel>.addFlags(["generate_foil", "generate_fine_wire"]); <material:stainless_steel>.addFlags(["generate_foil", "generate_fine_wire"]);
<material:naquadah_enriched>.addFlags(["generate_bolt_screw"]); <material:naquadah_enriched>.addFlags(["generate_bolt_screw"]);
<material:naquadria>.addFlags(["generate_bolt_screw"]); <material:naquadria>.addFlags(["generate_bolt_screw"]);
<material:redstone>.addFlags(["generate_dense"]);
<material:lapis>.addFlags(["generate_dense"]);
<material:glowstone>.setFormula("Au(Ca3(PO4)2)", true); <material:glowstone>.setFormula("Au(Ca3(PO4)2)", true);
<material:energetic_alloy>.setFormula("Au2(Si(FeS2)5(CrAl2O3)Hg3)(Au(Ca3(PO4)2))", true); <material:energetic_alloy>.setFormula("Au2(Si(FeS2)5(CrAl2O3)Hg3)(Au(Ca3(PO4)2))", true);

View File

@ -337,32 +337,32 @@ naquadah_reactor_2.runOverclockingLogic = function(recipelogic as IRecipeLogic,
} as IRunOverclockingLogicFunction; } as IRunOverclockingLogicFunction;
// Large Lapidary Dynamo // Large Lapidary Dynamo
val LAPIDARY_EUT_FIXED = -4096 as int; //val LAPIDARY_EUT_FIXED = -4096 as int;
//
val large_lapidary_dynamo = Builder.start("large_lapidary_dynamo") //val large_lapidary_dynamo = Builder.start("large_lapidary_dynamo")
.withPattern(function(controller as IControllerTile) as IBlockPattern { // .withPattern(function(controller as IControllerTile) as IBlockPattern {
return FactoryBlockPattern.start() // return FactoryBlockPattern.start()
.aisle("CCC", "CCC", "CCC") // .aisle("CCC", "CCC", "CCC")
.aisle("CCC", "CGC", "CCC") // .aisle("CCC", "CGC", "CCC")
.aisle("CCC", "CSC", "CCC") // .aisle("CCC", "CSC", "CCC")
.where('S', controller.self()) // .where('S', controller.self())
.where('G', <blockstate:gregtech:turbine_casing>) // .where('G', <blockstate:gregtech:turbine_casing>)
.where('C', CTPredicate.states(<metastate:gregtech:metal_casing:3>) // .where('C', CTPredicate.states(<metastate:gregtech:metal_casing:3>)
| CTPredicate.abilities(<mte_ability:IMPORT_ITEMS>).setMinGlobalLimited(1).setPreviewCount(1) // | CTPredicate.abilities(<mte_ability:IMPORT_ITEMS>).setMinGlobalLimited(1).setPreviewCount(1)
| CTPredicate.abilities(<mte_ability:OUTPUT_ENERGY>).setMinGlobalLimited(1).setMaxGlobalLimited(4) // | CTPredicate.abilities(<mte_ability:OUTPUT_ENERGY>).setMinGlobalLimited(1).setMaxGlobalLimited(4)
) // )
.build(); // .build();
} as IPatternBuilderFunction) // } as IPatternBuilderFunction)
.withRecipeMap( // .withRecipeMap(
FactoryRecipeMap.start("large_lapidary_dynamo") // FactoryRecipeMap.start("large_lapidary_dynamo")
.minInputs(1) // .minInputs(1)
.maxInputs(1) // .maxInputs(1)
.build()) // .build())
.withBaseTexture(<metastate:gregtech:metal_casing:3>) // .withBaseTexture(<metastate:gregtech:metal_casing:3>)
.buildAndRegister(); // .buildAndRegister();
//
large_lapidary_dynamo.hasMufflerMechanics = false; //large_lapidary_dynamo.hasMufflerMechanics = false;
large_lapidary_dynamo.hasMaintenanceMechanics = false; //large_lapidary_dynamo.hasMaintenanceMechanics = false;
//large_lapidary_dynamo.runOverclockingLogic = function(recipelogic as IRecipeLogic, recipe as IRecipe, negativeEU as bool, maxOverclocks as int) as int[] { //large_lapidary_dynamo.runOverclockingLogic = function(recipelogic as IRecipeLogic, recipe as IRecipe, negativeEU as bool, maxOverclocks as int) as int[] {
// if (absolute_int(recipe.getEUt()) > absolute_int(LAPIDARY_EUT_FIXED)) { // if (absolute_int(recipe.getEUt()) > absolute_int(LAPIDARY_EUT_FIXED)) {
@ -544,15 +544,15 @@ makeShaped("naquadah_reactor_2", <metaitem:multiblocktweaker:naquadah_reactor_2>
// L : <gregtech:machine_casing:6>, //LuV Machine Casing // L : <gregtech:machine_casing:6>, //LuV Machine Casing
// S : <metaitem:cover.screen>}); // S : <metaitem:cover.screen>});
var dynamo5 = <thermalexpansion:dynamo:5>.withTag({RSControl: 0 as byte, Creative: 0 as byte, Energy: 0, Level: 1 as byte, Augments: []}, false); // Numismatic Dynamo (Hardened) //var dynamo5 = <thermalexpansion:dynamo:5>.withTag({RSControl: 0 as byte, Creative: 0 as byte, Energy: 0, Level: 1 as byte, Augments: []}, false); // Numismatic Dynamo (Hardened)
makeShaped("large_lapidary_dynamo", <metaitem:multiblocktweaker:large_lapidary_dynamo>, //makeShaped("large_lapidary_dynamo", <metaitem:multiblocktweaker:large_lapidary_dynamo>,
["CAC", // ["CAC",
"ANA", // "ANA",
"XAX"], // "XAX"],
{ C : <ore:circuitBasic>, // { C : <ore:circuitBasic>,
A : <gregtech:metal_casing:3>, // Aluminium Casing // A : <gregtech:metal_casing:3>, // Aluminium Casing
X : <metaitem:gemExquisiteDiamond>, // X : <metaitem:gemExquisiteDiamond>,
N : dynamo5 }); // N : dynamo5 });
// multiblock recipemap recipes // multiblock recipemap recipes
// basic projector // basic projector
@ -945,7 +945,7 @@ microverse_projector_advanced_ii.recipeMap
.EUt(1000000) .EUt(1000000)
.inputs(<contenttweaker:tiertenship>, .inputs(<contenttweaker:tiertenship>,
<contenttweaker:universecreationdata>, <contenttweaker:universecreationdata>,
<ore:blockTritanium> * 8) <ore:blockAwakenedDraconium> * 8)
.outputs(<contenttweaker:heartofauniverse>) .outputs(<contenttweaker:heartofauniverse>)
.buildAndRegister(); .buildAndRegister();
@ -1006,12 +1006,12 @@ naquadah_reactor_2.recipeMap
.buildAndRegister(); .buildAndRegister();
// lapidary dynamo // lapidary dynamo
large_lapidary_dynamo.recipeMap //large_lapidary_dynamo.recipeMap
.recipeBuilder() // .recipeBuilder()
.duration(150) // .duration(150)
.EUt(-4096) // .EUt(-4096)
.inputs(<ore:gemDiamond>) // .inputs(<ore:gemDiamond>)
.buildAndRegister(); // .buildAndRegister();
// Lunar Mining Station Rover Missions // Lunar Mining Station Rover Missions
//lunar_mining_station.recipeMap //lunar_mining_station.recipeMap