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

File diff suppressed because one or more lines are too long

View File

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

View File

@ -3,7 +3,7 @@
cache {
# Waits as many hours, until it checks again. [range: 0 ~ 168, default: 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
#(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
showChestButtons=true
enableSortingOnPickup=false

View File

@ -16,6 +16,10 @@ global {
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 <
minecraft:wet_sponge
minecraft:sponge
@ -25,6 +29,7 @@ lavapickaxe {
maps {
# Enable/Disable the ability of the maps to spawn bosses, suck as the "Skeletal King" from the "Map of Sacrifice"
B:allowSpawnOfBosses=true
}

View File

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

View File

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

View File

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

View File

@ -1715,6 +1715,8 @@ recipes {
# Enable/Disable The Cobalt armor Recipes
B:enableCobaltArmorRecipes=true
# Enable/Disable The Electrical Ingot Recipes
B:enableElectricalIngotRecipes=true
# Enable/Disable The Elytra Recipe
@ -1758,6 +1760,8 @@ recipes {
# Enable/Disable The Slime armor Recipes
B:enableSlimeArmorRecipes=true
# Enable/Disable The Steel Ingot Recipes
B:enableSteelIngotRecipes=true
# 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
# Min: 0
# Max: 100
I:flintChanceToCreateFire=50
I:flintChanceToCreateFire=100
# Setting this to true makes GTCEu ignore error and invalid recipes that would otherwise cause crash.
# Default: true

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -12,8 +12,8 @@
},
"fluid": "salt_water",
"dimension_filter": [
"id:0",
"id:111"
"name:overworld",
"name:lostcities"
],
"biome_modifier": {
"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
#Thu Feb 03 18:46:36 SGT 2022
#Fri Feb 04 22:56:08 SGT 2022
background=0x837793
memoryGood=0x78CB34
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)
// .buildAndRegister();
<appliedenergistics2:material>.displayName = "Activated Certus Quartz";
//Silicon
Inscriber.removeRecipe(<appliedenergistics2:material:20>);
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);
//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>, [
[<contenttweaker:redstonearmorplate>,<contenttweaker:redstonearmorplate>,<contenttweaker:redstonearmorplate>],
[<contenttweaker:redstonearmorplate>, null, <contenttweaker:redstonearmorplate>]]);
[<metaitem:plateDenseRedstone>,<metaitem:plateDenseRedstone>,<metaitem:plateDenseRedstone>],
[<metaitem:plateDenseRedstone>, null, <metaitem:plateDenseRedstone>]]);
recipes.addShaped(<armorplus:redstone_chestplate>, [
[<contenttweaker:redstonearmorplate>, null, <contenttweaker:redstonearmorplate>],
[<contenttweaker:redstonearmorplate>, <contenttweaker:redstonearmorplate>, <contenttweaker:redstonearmorplate>],
[<contenttweaker:redstonearmorplate>, <contenttweaker:redstonearmorplate>, <contenttweaker:redstonearmorplate>]]);
[<metaitem:plateDenseRedstone>, null, <metaitem:plateDenseRedstone>],
[<metaitem:plateDenseRedstone>, <metaitem:plateDenseRedstone>, <metaitem:plateDenseRedstone>],
[<metaitem:plateDenseRedstone>, <metaitem:plateDenseRedstone>, <metaitem:plateDenseRedstone>]]);
recipes.addShaped(<armorplus:redstone_leggings>, [
[<contenttweaker:redstonearmorplate>, <contenttweaker:redstonearmorplate>, <contenttweaker:redstonearmorplate>],
[<contenttweaker:redstonearmorplate>, null, <contenttweaker:redstonearmorplate>],
[<contenttweaker:redstonearmorplate>, null, <contenttweaker:redstonearmorplate>]]);
[<metaitem:plateDenseRedstone>, <metaitem:plateDenseRedstone>, <metaitem:plateDenseRedstone>],
[<metaitem:plateDenseRedstone>, null, <metaitem:plateDenseRedstone>],
[<metaitem:plateDenseRedstone>, null, <metaitem:plateDenseRedstone>]]);
recipes.addShaped(<armorplus:redstone_boots>, [
[<contenttweaker:redstonearmorplate>, null, <contenttweaker:redstonearmorplate>],
[<contenttweaker:redstonearmorplate>, null, <contenttweaker:redstonearmorplate>]]);
[<metaitem:plateDenseRedstone>, null, <metaitem:plateDenseRedstone>],
[<metaitem:plateDenseRedstone>, null, <metaitem:plateDenseRedstone>]]);
recipes.addShaped(<armorplus:redstone_sword>, [
[null, <contenttweaker:redstonearmorplate>, null],
[null, <contenttweaker:redstonearmorplate>, null],
[null, <metaitem:plateDenseRedstone>, null],
[null, <metaitem:plateDenseRedstone>, null],
[null, <minecraft:stick>, null]]);
//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>, [
[<contenttweaker:lapisarmorplate>,<contenttweaker:lapisarmorplate>,<contenttweaker:lapisarmorplate>],
[<contenttweaker:lapisarmorplate>, null, <contenttweaker:lapisarmorplate>]]);
[<metaitem:plateDenseLapis>,<metaitem:plateDenseLapis>,<metaitem:plateDenseLapis>],
[<metaitem:plateDenseLapis>, null, <metaitem:plateDenseLapis>]]);
recipes.addShaped(<armorplus:lapis_chestplate>, [
[<contenttweaker:lapisarmorplate>, null, <contenttweaker:lapisarmorplate>],
[<contenttweaker:lapisarmorplate>, <contenttweaker:lapisarmorplate>, <contenttweaker:lapisarmorplate>],
[<contenttweaker:lapisarmorplate>, <contenttweaker:lapisarmorplate>, <contenttweaker:lapisarmorplate>]]);
[<metaitem:plateDenseLapis>, null, <metaitem:plateDenseLapis>],
[<metaitem:plateDenseLapis>, <metaitem:plateDenseLapis>, <metaitem:plateDenseLapis>],
[<metaitem:plateDenseLapis>, <metaitem:plateDenseLapis>, <metaitem:plateDenseLapis>]]);
recipes.addShaped(<armorplus:lapis_leggings>, [
[<contenttweaker:lapisarmorplate>, <contenttweaker:lapisarmorplate>, <contenttweaker:lapisarmorplate>],
[<contenttweaker:lapisarmorplate>, null, <contenttweaker:lapisarmorplate>],
[<contenttweaker:lapisarmorplate>, null, <contenttweaker:lapisarmorplate>]]);
[<metaitem:plateDenseLapis>, <metaitem:plateDenseLapis>, <metaitem:plateDenseLapis>],
[<metaitem:plateDenseLapis>, null, <metaitem:plateDenseLapis>],
[<metaitem:plateDenseLapis>, null, <metaitem:plateDenseLapis>]]);
recipes.addShaped(<armorplus:lapis_boots>, [
[<contenttweaker:lapisarmorplate>, null, <contenttweaker:lapisarmorplate>],
[<contenttweaker:lapisarmorplate>, null, <contenttweaker:lapisarmorplate>]]);
[<metaitem:plateDenseLapis>, null, <metaitem:plateDenseLapis>],
[<metaitem:plateDenseLapis>, null, <metaitem:plateDenseLapis>]]);
recipes.addShaped(<armorplus:lapis_sword>, [
[null, <contenttweaker:lapisarmorplate>, null],
[null, <contenttweaker:lapisarmorplate>, null],
[null, <metaitem:plateDenseLapis>, null],
[null, <metaitem:plateDenseLapis>, null],
[null, <minecraft:stick>, null]]);
//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>, [
[<contenttweaker:carbonarmorplate>,<contenttweaker:carbonarmorplate>,<contenttweaker:carbonarmorplate>],
[<contenttweaker:carbonarmorplate>, null, <contenttweaker:carbonarmorplate>]]);
[<metaitem:carbon.plate>,<metaitem:carbon.plate>,<metaitem:carbon.plate>],
[<metaitem:carbon.plate>, null, <metaitem:carbon.plate>]]);
recipes.addShaped(<armorplus:coal_chestplate>, [
[<contenttweaker:carbonarmorplate>, null, <contenttweaker:carbonarmorplate>],
[<contenttweaker:carbonarmorplate>, <contenttweaker:carbonarmorplate>, <contenttweaker:carbonarmorplate>],
[<contenttweaker:carbonarmorplate>, <contenttweaker:carbonarmorplate>, <contenttweaker:carbonarmorplate>]]);
[<metaitem:carbon.plate>, null, <metaitem:carbon.plate>],
[<metaitem:carbon.plate>, <metaitem:carbon.plate>, <metaitem:carbon.plate>],
[<metaitem:carbon.plate>, <metaitem:carbon.plate>, <metaitem:carbon.plate>]]);
recipes.addShaped(<armorplus:coal_leggings>, [
[<contenttweaker:carbonarmorplate>, <contenttweaker:carbonarmorplate>, <contenttweaker:carbonarmorplate>],
[<contenttweaker:carbonarmorplate>, null, <contenttweaker:carbonarmorplate>],
[<contenttweaker:carbonarmorplate>, null, <contenttweaker:carbonarmorplate>]]);
[<metaitem:carbon.plate>, <metaitem:carbon.plate>, <metaitem:carbon.plate>],
[<metaitem:carbon.plate>, null, <metaitem:carbon.plate>],
[<metaitem:carbon.plate>, null, <metaitem:carbon.plate>]]);
recipes.addShaped(<armorplus:coal_boots>, [
[<contenttweaker:carbonarmorplate>, null, <contenttweaker:carbonarmorplate>],
[<contenttweaker:carbonarmorplate>, null, <contenttweaker:carbonarmorplate>]]);
[<metaitem:carbon.plate>, null, <metaitem:carbon.plate>],
[<metaitem:carbon.plate>, null, <metaitem:carbon.plate>]]);
<armorplus:coal_helmet>.displayName = "Carbon Plated Helmet";
<armorplus:coal_chestplate>.displayName = "Carbon Plated Chestplate";
<armorplus:coal_leggings>.displayName = "Carbon Plated Leggings";
@ -191,19 +182,19 @@ recipes.addShaped(<minecraft:iron_boots>, [
//Knightslime Armor
recipes.addShaped(<armorplus:knight_slime_helmet>, [
[<contenttweaker:knightslimeingot>,<contenttweaker:knightslimeingot>,<contenttweaker:knightslimeingot>],
[<contenttweaker:knightslimeingot>, null, <contenttweaker:knightslimeingot>]]);
[<metaitem:plateTitaniumCarbide>,<metaitem:plateTitaniumCarbide>,<metaitem:plateTitaniumCarbide>],
[<metaitem:plateTitaniumCarbide>, <ore:blockSlime>, <metaitem:plateTitaniumCarbide>]]);
recipes.addShaped(<armorplus:knight_slime_chestplate>, [
[<contenttweaker:knightslimeingot>, null, <contenttweaker:knightslimeingot>],
[<contenttweaker:knightslimeingot>, <contenttweaker:knightslimeingot>, <contenttweaker:knightslimeingot>],
[<contenttweaker:knightslimeingot>, <contenttweaker:knightslimeingot>, <contenttweaker:knightslimeingot>]]);
[<metaitem:plateTitaniumCarbide>, <ore:blockSlime>, <metaitem:plateTitaniumCarbide>],
[<metaitem:plateTitaniumCarbide>, <metaitem:plateTitaniumCarbide>, <metaitem:plateTitaniumCarbide>],
[<metaitem:plateTitaniumCarbide>, <metaitem:plateTitaniumCarbide>, <metaitem:plateTitaniumCarbide>]]);
recipes.addShaped(<armorplus:knight_slime_leggings>, [
[<contenttweaker:knightslimeingot>, <contenttweaker:knightslimeingot>, <contenttweaker:knightslimeingot>],
[<contenttweaker:knightslimeingot>, null, <contenttweaker:knightslimeingot>],
[<contenttweaker:knightslimeingot>, null, <contenttweaker:knightslimeingot>]]);
[<metaitem:plateTitaniumCarbide>, <metaitem:plateTitaniumCarbide>, <metaitem:plateTitaniumCarbide>],
[<metaitem:plateTitaniumCarbide>, <ore:blockSlime>, <metaitem:plateTitaniumCarbide>],
[<metaitem:plateTitaniumCarbide>, null, <metaitem:plateTitaniumCarbide>]]);
recipes.addShaped(<armorplus:knight_slime_boots>, [
[<contenttweaker:knightslimeingot>, null, <contenttweaker:knightslimeingot>],
[<contenttweaker:knightslimeingot>, null, <contenttweaker:knightslimeingot>]]);
[<metaitem:plateTitaniumCarbide>, <ore:blockSlime>, <metaitem:plateTitaniumCarbide>],
[<metaitem:plateTitaniumCarbide>, null, <metaitem:plateTitaniumCarbide>]]);
//Infused Lava
var obs = <armorplus:lava_infused_obsidian>;

View File

@ -142,7 +142,7 @@ mixer.recipeBuilder()
mixer.recipeBuilder()
.inputs([<ore:dustEnergeticAlloy>, <ore:dustEnderPearl>])
.outputs(<metaitem:dustVibrantAlloy>)
.duration(180)
.duration(260)
.EUt(30)
.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]
//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
// 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]
@ -361,12 +361,17 @@ mixer.recipeBuilder()
.EUt(120)
.buildAndRegister();
// Electrum Dust * 6
<recipemap:centrifuge>.findRecipe(30, [<metaitem:dustElectrumFlux> * 8], null).remove();
// Fluxed Electrum * 1152
<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()
.inputs([<metaitem:dustElectrum> * 6, <metaitem:dustLumium>, <metaitem:dustSignalum>, <ore:dustMana>])
.fluidOutputs(<liquid:electrum_flux> * 1296)
.circuit(4)
.property("temperature", 1100)
.duration(9000)
.EUt(120)
.buildAndRegister();

View File

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

View File

@ -219,7 +219,7 @@ recipes.addShaped(<enderio:item_liquid_conduit:1> * 4, [
[<minecraft:glass>,<minecraft:glass>,<minecraft:glass>],
[<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();
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([<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();
//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()
.fluidInputs(<liquid:monochloramine> * 1000, <liquid:dimethylamine> * 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(<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(<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();
//compressor.recipeBuilder().inputs(<minecraft:dye:15> * 3).outputs(<minecraft:bone>).duration(20).EUt(8).buildAndRegister();
assembler.recipeBuilder().inputs(<minecraft:bone> * 4).circuit(14).outputs(<minecraft:skull>).duration(20).EUt(16).buildAndRegister();
//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:gravel>]).outputs([<minecraft:sand>]).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
<recipemap:macerator>.findRecipe(2, [<minecraft:end_stone:0>], null).remove();
@ -984,24 +984,24 @@ implosion_compressor.recipeBuilder()
// return chance * pow(2, tier);
//};
//Slight nerf to Bone Meal Recipe
macerator.findRecipe(2, [<minecraft:bone>], [null]).remove();
macerator.recipeBuilder()
.inputs(<minecraft:bone>)
.outputs(<minecraft:dye:15> * 4)
.duration(60).EUt(8).buildAndRegister();
//Adjust the Bone Meal by hand recipe
recipes.removeByRecipeName("gregtech:bone_to_bone_meal");
recipes.addShapeless(<minecraft:dye:15> * 3,
[<minecraft:bone>, <ore:gtceMortars>]);
//Adjust Bone Meal Compressor recipe to prevent dupe
//compressor.findRecipe(8, [<minecraft:dye:15> * 3], [null]).remove();
compressor.recipeBuilder()
.inputs(<minecraft:dye:15> * 4)
.outputs(<minecraft:bone>)
.duration(20).EUt(8).buildAndRegister();
////Slight nerf to Bone Meal Recipe
//macerator.findRecipe(2, [<minecraft:bone>], [null]).remove();
//macerator.recipeBuilder()
// .inputs(<minecraft:bone>)
// .outputs(<minecraft:dye:15> * 4)
// .duration(60).EUt(8).buildAndRegister();
//
////Adjust the Bone Meal by hand recipe
//recipes.removeByRecipeName("gregtech:bone_to_bone_meal");
//recipes.addShapeless(<minecraft:dye:15> * 3,
// [<minecraft:bone>, <ore:gtceMortars>]);
//
////Adjust Bone Meal Compressor recipe to prevent dupe
////compressor.findRecipe(8, [<minecraft:dye:15> * 3], [null]).remove();
//compressor.recipeBuilder()
// .inputs(<minecraft:dye:15> * 4)
// .outputs(<minecraft:bone>)
// .duration(20).EUt(8).buildAndRegister();
//Add Decomposition Recipe for Polyphenylene Sulfide
electrolyzer.recipeBuilder()
@ -1094,8 +1094,18 @@ recipes.addShaped(<metaitem:steam_grinder>, [
// Crafting Station
assembler.recipeBuilder()
.inputs([<minecraft:chest> * 2, <ore:plankWood> * 4, <ore:craftingTableWood>])
.inputs([<minecraft:chest> * 2, <ore:plankWood> * 4, <minecraft:crafting_table>])
.outputs([<metaitem:workbench>])
.duration(100)
.EUt(7)
.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 ",
"PP "],
{ P : <metaitem:platePalladium>,
E : <metaitem:gemExquisiteEmerald> });
E : <metaitem:gemPerfectEmerald> });
recipes.remove(<minecraft:elytra>);
makeShaped("of_elytra", <minecraft:elytra>,
@ -214,10 +214,10 @@ makeShaped("of_elytra", <minecraft:elytra>,
fluidextractor.recipeBuilder()
.inputs(<contenttweaker:sentientgear>)
.fluidOutputs([<liquid:tungsten_carbide> * 40320])
.duration(1000).EUt(3000).buildAndRegister();
//fluidextractor.recipeBuilder()
// .inputs(<contenttweaker:sentientgear>)
// .fluidOutputs([<liquid:tungsten_carbide> * 40320])
// .duration(1000).EUt(3000).buildAndRegister();
// Helium Plasma * 125
<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.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>]]);
assembler.findRecipe(16,
@ -467,3 +467,9 @@ extractor.recipeBuilder()
.duration(1000)
.EUt(180000)
.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>, <metaitem:plateTungstenSteel>, <minecraft:skull>, <metaitem:plateTungstenSteel>,<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:
// Helium3 Rover (Tritium)
makeShaped("of_helium3rover", <contenttweaker:helium3rover> * 16,
["SSA",
"BCD",
"E E"],
{ A : <metaitem:sensor.ev>,
B : <metaitem:plateTitanium>,
C : <meta_tile_entity:hull.ev>,
D : <metaitem:robot.arm.ev>,
E : <metaitem:conveyor.module.ev>,
S : <solarflux:solar_panel_3> }
);
// Deuterium Rover
makeShaped("of_deuteriumrover", <contenttweaker:deuteriumrover> * 16,
["SSA",
"BCD",
"E E"],
{ A : <metaitem:sensor.hv>,
B : <metaitem:plateStainlessSteel>,
C : <meta_tile_entity:hull.hv>,
D : <metaitem:robot.arm.hv>,
E : <metaitem:conveyor.module.hv>,
S : <solarflux:solar_panel_2> }
);
//// Lunar Mining Station Rovers:
//
//
//// Helium3 Rover (Tritium)
//makeShaped("of_helium3rover", <contenttweaker:helium3rover> * 16,
// ["SSA",
// "BCD",
// "E E"],
// { A : <metaitem:sensor.ev>,
// B : <metaitem:plateTitanium>,
// C : <meta_tile_entity:hull.ev>,
// D : <metaitem:robot.arm.ev>,
// E : <metaitem:conveyor.module.ev>,
// S : <solarflux:solar_panel_3> }
//);
//
//// Deuterium Rover
//makeShaped("of_deuteriumrover", <contenttweaker:deuteriumrover> * 16,
// ["SSA",
// "BCD",
// "E E"],
// { A : <metaitem:sensor.hv>,
// B : <metaitem:plateStainlessSteel>,
// C : <meta_tile_entity:hull.hv>,
// D : <metaitem:robot.arm.hv>,
// E : <metaitem:conveyor.module.hv>,
// S : <solarflux:solar_panel_2> }
//);

View File

@ -479,15 +479,15 @@ alloy.recipeBuilder()
.duration(50).EUt(16).buildAndRegister();
// permutations of ferroboron and lithium ingots/dusts
alloy.recipeBuilder()
.outputs([<nuclearcraft:alloy:1> * 2])
.inputs([<ore:ingotFerroboron>, <ore:ingotLithium>])
.duration(300).EUt(16).buildAndRegister();
alloy.recipeBuilder()
.outputs([<nuclearcraft:alloy:1> * 2])
.inputs([<ore:dustFerroboron>, <ore:ingotLithium>])
.duration(300).EUt(16).buildAndRegister();
//alloy.recipeBuilder()
// .outputs([<nuclearcraft:alloy:1> * 2])
// .inputs([<ore:ingotFerroboron>, <ore:ingotLithium>])
// .duration(300).EUt(16).buildAndRegister();
//
//alloy.recipeBuilder()
// .outputs([<nuclearcraft:alloy:1> * 2])
// .inputs([<ore:dustFerroboron>, <ore:ingotLithium>])
// .duration(300).EUt(16).buildAndRegister();
alloy.recipeBuilder()
.outputs([<nuclearcraft:alloy:1> * 2])
@ -500,15 +500,15 @@ alloy.recipeBuilder()
.duration(300).EUt(16).buildAndRegister();
// permutations of steel and boron ingots/dusts
alloy.recipeBuilder()
.outputs([<nuclearcraft:alloy:6> * 2])
.inputs([<ore:ingotSteel>, <ore:ingotBoron>])
.duration(300).EUt(16).buildAndRegister();
alloy.recipeBuilder()
.outputs([<nuclearcraft:alloy:6> * 2])
.inputs([<ore:dustSteel>, <ore:ingotBoron>])
.duration(300).EUt(16).buildAndRegister();
//alloy.recipeBuilder()
// .outputs([<nuclearcraft:alloy:6> * 2])
// .inputs([<ore:ingotSteel>, <ore:ingotBoron>])
// .duration(300).EUt(16).buildAndRegister();
//
//alloy.recipeBuilder()
// .outputs([<nuclearcraft:alloy:6> * 2])
// .inputs([<ore:dustSteel>, <ore:ingotBoron>])
// .duration(300).EUt(16).buildAndRegister();
alloy.recipeBuilder()
.outputs([<nuclearcraft:alloy:6> * 2])
@ -925,26 +925,34 @@ compressor.recipeBuilder()
.inputs([<ore:dustWheat> * 2])
.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
macerator.recipeBuilder()
.outputs(<nuclearcraft:gelatin>)
.inputs([<ore:dustSmallMeat>])
.duration(40).EUt(30).buildAndRegister();
//macerator.recipeBuilder()
// .outputs(<nuclearcraft:gelatin>)
// .inputs([<ore:dustSmallMeat>])
// .duration(40).EUt(30).buildAndRegister();
// Gelatin from fish
var fishes as IItemStack[] = [
<minecraft:fish>,
<minecraft:fish:1>,
<minecraft:fish:2>,
<minecraft:fish:3>
] as IItemStack[];
for fish in fishes {
macerator.recipeBuilder()
.outputs(<nuclearcraft:gelatin> * 4)
.inputs([fish])
.duration(160).EUt(30).buildAndRegister();
}
//var fishes as IItemStack[] = [
// <minecraft:fish>,
// <minecraft:fish:1>,
// <minecraft:fish:2>,
// <minecraft:fish:3>
//] as IItemStack[];
//
//for fish in fishes {
// macerator.recipeBuilder()
// .outputs(<nuclearcraft:gelatin> * 4)
// .inputs([fish])
// .duration(160).EUt(30).buildAndRegister();
//}
// Hydrated gelatin
mixer.recipeBuilder()
@ -1175,6 +1183,12 @@ thermal_sep.recipeBuilder()
.duration(3200).EUt(48).buildAndRegister();
//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:ingotUranium>], [null]).remove();

View File

@ -281,9 +281,9 @@ recipes.addShaped(<thermalexpansion:augment:496>, [
//i give up
recipes.remove(<thermalexpansion:augment:688>);
recipes.addShaped(<thermalexpansion:augment:688>, [
[<ore:plateFluxedElectrum>, <ore:plateFluxedElectrum>, <ore:plateFluxedElectrum>],
[<ore:plateFluxedElectrum>, <thermalfoundation:material:1028>, <ore:plateFluxedElectrum>],
[<ore:plateFluxedElectrum>, <ore:plateFluxedElectrum>, <ore:plateFluxedElectrum>]]);
[<ore:plateElectrumFlux>, <ore:plateElectrumFlux>, <ore:plateElectrumFlux>],
[<ore:plateElectrumFlux>, <thermalfoundation:material:1028>, <ore:plateElectrumFlux>],
[<ore:plateElectrumFlux>, <ore:plateElectrumFlux>, <ore:plateElectrumFlux>]]);
//i give up
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("thermalexpansion.compression");
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:arc_furnace");
//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_redstone>);
//DevTech Removals
mods.jei.JEI.removeAndHide(<devtech:meta_gem_perfect:2000>); // Perfect Glass
//EnderIO Removals
mods.jei.JEI.removeAndHide(<enderio:item_material:28>);
@ -2261,7 +2266,7 @@ mods.jei.JEI.removeAndHide(<libvulpes:productsheet:1>);
//Molten Nether Star
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();
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();
//Molten Empowered Restonia
@ -2417,8 +2422,8 @@ recipes.addShapeless(<metaitem:ingotRedAlloy>, [<enderio:item_alloy_ingot:3>]);
//Misc
//<ore:lvcef>.add(<meta_tile_entity:cef.lv.4>);
//<ore:lvcef>.add(<meta_tile_entity:cef.lv.16>);
<ore:wireGtSinglePulsatingIron>.add(<contenttweaker:pulsatingwire>);
<ore:dustEndstone>.add(<contenttweaker:endstonedust>);
//<ore:wireGtSinglePulsatingIron>.add(<contenttweaker:pulsatingwire>);
//<ore:dustEndstone>.add(<contenttweaker:endstonedust>);
//Removals
//<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>]);
// Temporary recipe to convert endstone dusts
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("Please use the GregTech variant of Endstone Dust."));
//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("Please use the GregTech variant of Endstone Dust."));
// Temporary recipe to convert pulsating iron wire that is probably unnecessary anyway.
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("Please use the GregTech variant of Pulsating Iron Wire."));
//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("Please use the GregTech variant of Pulsating Iron Wire."));
//neutronium plate exchange
//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(<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_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(<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>]]);

View File

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

View File

@ -440,15 +440,15 @@ fluid_extractor.recipeBuilder()
.fluidOutputs([<liquid:plutonium2> * 16])
.duration(20).EUt(16).buildAndRegister();
fluid_extractor.recipeBuilder()
.inputs([<metaitem:ingotPlutonium>])
.fluidOutputs([<liquid:plutonium> * 144])
.duration(180).EUt(16).buildAndRegister();
//fluid_extractor.recipeBuilder()
// .inputs([<metaitem:ingotPlutonium>])
// .fluidOutputs([<liquid:plutonium> * 144])
// .duration(180).EUt(16).buildAndRegister();
fluid_extractor.recipeBuilder()
.inputs([<metaitem:nuggetPlutonium>])
.fluidOutputs([<liquid:plutonium> * 16])
.duration(20).EUt(16).buildAndRegister();
//fluid_extractor.recipeBuilder()
// .inputs([<metaitem:nuggetPlutonium>])
// .fluidOutputs([<liquid:plutonium> * 16])
// .duration(20).EUt(16).buildAndRegister();
fluid_extractor.recipeBuilder()
.inputs([<nuclearcraft:curium>])
@ -580,5 +580,5 @@ fluid_extractor.recipeBuilder()
.fluidOutputs([<liquid:californium> * 16])
.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()
.color(0xa4ff70).iconSet("shiny")
.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])
.cableProperties(512, 1, 0, true)
.build();
@ -183,7 +183,7 @@ var soularium = MaterialBuilder(32024, "soularium")
var end_steel = MaterialBuilder(32025, "end_steel")
.ingot().fluid()
.color(0xd6d980).iconSet("metallic")
.flags("generate_plate", "generate_fine_wire")
.flags("generate_plate")
.cableProperties(2048,1,0,true)
.build();
@ -251,6 +251,8 @@ var iridosmine_8020 = MaterialBuilder(32030, "iridosmine_8020")
<material:stainless_steel>.addFlags(["generate_foil", "generate_fine_wire"]);
<material:naquadah_enriched>.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: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;
// Large Lapidary Dynamo
val LAPIDARY_EUT_FIXED = -4096 as int;
val large_lapidary_dynamo = Builder.start("large_lapidary_dynamo")
.withPattern(function(controller as IControllerTile) as IBlockPattern {
return FactoryBlockPattern.start()
.aisle("CCC", "CCC", "CCC")
.aisle("CCC", "CGC", "CCC")
.aisle("CCC", "CSC", "CCC")
.where('S', controller.self())
.where('G', <blockstate:gregtech:turbine_casing>)
.where('C', CTPredicate.states(<metastate:gregtech:metal_casing:3>)
| CTPredicate.abilities(<mte_ability:IMPORT_ITEMS>).setMinGlobalLimited(1).setPreviewCount(1)
| CTPredicate.abilities(<mte_ability:OUTPUT_ENERGY>).setMinGlobalLimited(1).setMaxGlobalLimited(4)
)
.build();
} as IPatternBuilderFunction)
.withRecipeMap(
FactoryRecipeMap.start("large_lapidary_dynamo")
.minInputs(1)
.maxInputs(1)
.build())
.withBaseTexture(<metastate:gregtech:metal_casing:3>)
.buildAndRegister();
large_lapidary_dynamo.hasMufflerMechanics = false;
large_lapidary_dynamo.hasMaintenanceMechanics = false;
//val LAPIDARY_EUT_FIXED = -4096 as int;
//
//val large_lapidary_dynamo = Builder.start("large_lapidary_dynamo")
// .withPattern(function(controller as IControllerTile) as IBlockPattern {
// return FactoryBlockPattern.start()
// .aisle("CCC", "CCC", "CCC")
// .aisle("CCC", "CGC", "CCC")
// .aisle("CCC", "CSC", "CCC")
// .where('S', controller.self())
// .where('G', <blockstate:gregtech:turbine_casing>)
// .where('C', CTPredicate.states(<metastate:gregtech:metal_casing:3>)
// | CTPredicate.abilities(<mte_ability:IMPORT_ITEMS>).setMinGlobalLimited(1).setPreviewCount(1)
// | CTPredicate.abilities(<mte_ability:OUTPUT_ENERGY>).setMinGlobalLimited(1).setMaxGlobalLimited(4)
// )
// .build();
// } as IPatternBuilderFunction)
// .withRecipeMap(
// FactoryRecipeMap.start("large_lapidary_dynamo")
// .minInputs(1)
// .maxInputs(1)
// .build())
// .withBaseTexture(<metastate:gregtech:metal_casing:3>)
// .buildAndRegister();
//
//large_lapidary_dynamo.hasMufflerMechanics = 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[] {
// 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
// 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)
makeShaped("large_lapidary_dynamo", <metaitem:multiblocktweaker:large_lapidary_dynamo>,
["CAC",
"ANA",
"XAX"],
{ C : <ore:circuitBasic>,
A : <gregtech:metal_casing:3>, // Aluminium Casing
X : <metaitem:gemExquisiteDiamond>,
N : dynamo5 });
//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>,
// ["CAC",
// "ANA",
// "XAX"],
// { C : <ore:circuitBasic>,
// A : <gregtech:metal_casing:3>, // Aluminium Casing
// X : <metaitem:gemExquisiteDiamond>,
// N : dynamo5 });
// multiblock recipemap recipes
// basic projector
@ -945,7 +945,7 @@ microverse_projector_advanced_ii.recipeMap
.EUt(1000000)
.inputs(<contenttweaker:tiertenship>,
<contenttweaker:universecreationdata>,
<ore:blockTritanium> * 8)
<ore:blockAwakenedDraconium> * 8)
.outputs(<contenttweaker:heartofauniverse>)
.buildAndRegister();
@ -1006,12 +1006,12 @@ naquadah_reactor_2.recipeMap
.buildAndRegister();
// lapidary dynamo
large_lapidary_dynamo.recipeMap
.recipeBuilder()
.duration(150)
.EUt(-4096)
.inputs(<ore:gemDiamond>)
.buildAndRegister();
//large_lapidary_dynamo.recipeMap
// .recipeBuilder()
// .duration(150)
// .EUt(-4096)
// .inputs(<ore:gemDiamond>)
// .buildAndRegister();
// Lunar Mining Station Rover Missions
//lunar_mining_station.recipeMap