forked from copygirl/heck
parent
6df79acc40
commit
63a2447f03
9 changed files with 103 additions and 1 deletions
@ -0,0 +1,11 @@ |
||||
// priority: 200
|
||||
|
||||
global.unification = global.unification || { }; |
||||
global.unification.brass = { |
||||
nugget: [ "create:brass_nugget" ], |
||||
ingot: [ "create:brass_ingot" ], |
||||
block: [ "create:brass_block" ], |
||||
|
||||
plate: [ "create:brass_sheet" ], |
||||
fluid: [ "tconstruct:molten_brass" ], |
||||
}; |
@ -0,0 +1,12 @@ |
||||
// priority: 200
|
||||
|
||||
global.unification = global.unification || { }; |
||||
global.unification.bronze = { |
||||
nugget: [ "thermal:bronze_nugget" ], |
||||
ingot: [ "thermal:bronze_ingot" ], |
||||
block: [ "thermal:bronze_block" ], |
||||
|
||||
dust: [ "thermal:bronze_dust" ], |
||||
plate: [ "thermal:bronze_plate" ], |
||||
fluid: [ "tconstruct:molten_bronze" ], |
||||
}; |
@ -0,0 +1,12 @@ |
||||
// priority: 200
|
||||
|
||||
global.unification = global.unification || { }; |
||||
global.unification.enderium = { |
||||
nugget: [ "thermal:enderium_nugget" ], |
||||
ingot: [ "thermal:enderium_ingot" ], |
||||
block: [ "thermal:enderium_block" ], |
||||
|
||||
dust: [ "thermal:enderium_dust" ], |
||||
plate: [ "thermal:enderium_plate" ], |
||||
fluid: [ "tconstruct:molten_enderium" ], |
||||
}; |
@ -0,0 +1,12 @@ |
||||
// priority: 200
|
||||
|
||||
global.unification = global.unification || { }; |
||||
global.unification.invar = { |
||||
nugget: [ "thermal:invar_nugget" ], |
||||
ingot: [ "thermal:invar_ingot" ], |
||||
block: [ "thermal:invar_block" ], |
||||
|
||||
dust: [ "thermal:invar_dust" ], |
||||
plate: [ "thermal:invar_plate" ], |
||||
fluid: [ "tconstruct:molten_invar" ], |
||||
}; |
@ -0,0 +1,12 @@ |
||||
// priority: 200
|
||||
|
||||
global.unification = global.unification || { }; |
||||
global.unification.lumium = { |
||||
nugget: [ "thermal:lumium_nugget" ], |
||||
ingot: [ "thermal:lumium_ingot" ], |
||||
block: [ "thermal:lumium_block" ], |
||||
|
||||
dust: [ "thermal:lumium_dust" ], |
||||
plate: [ "thermal:lumium_plate" ], |
||||
fluid: [ "tconstruct:molten_lumium" ], |
||||
}; |
@ -0,0 +1,12 @@ |
||||
// priority: 200
|
||||
|
||||
global.unification = global.unification || { }; |
||||
global.unification.rose_gold = { |
||||
nugget: [ "thermal:rose_gold_nugget", "tconstruct:rose_gold_nugget" ], |
||||
ingot: [ "thermal:rose_gold_ingot", "tconstruct:rose_gold_ingot" ], |
||||
block: [ "thermal:rose_gold_block", "tconstruct:rose_gold_block" ], |
||||
|
||||
dust: [ "thermal:rose_gold_dust" ], |
||||
plate: [ "thermal:rose_gold_plate" ], |
||||
fluid: [ "tconstruct:molten_rose_gold" ], |
||||
}; |
@ -0,0 +1,12 @@ |
||||
// priority: 200
|
||||
|
||||
global.unification = global.unification || { }; |
||||
global.unification.signalum = { |
||||
nugget: [ "thermal:signalum_nugget" ], |
||||
ingot: [ "thermal:signalum_ingot" ], |
||||
block: [ "thermal:signalum_block" ], |
||||
|
||||
dust: [ "thermal:signalum_dust" ], |
||||
plate: [ "thermal:signalum_plate" ], |
||||
fluid: [ "tconstruct:molten_signalum" ], |
||||
}; |
@ -0,0 +1,19 @@ |
||||
// priority: 200
|
||||
|
||||
global.unification = global.unification || { }; |
||||
global.unification.uranium = { |
||||
nugget: [ "immersiveengineering:nugget_uranium" ], |
||||
ingot: [ "immersiveengineering:ingot_uranium" ], |
||||
block: [ "immersiveengineering:storage_uranium" ], |
||||
|
||||
ore: [ "immersiveengineering:ore_uranium" ], |
||||
deep_ore: [ "immersiveengineering:deepslate_ore_uranium" ], |
||||
|
||||
raw: [ "immersiveengineering:raw_uranium" ], |
||||
raw_block: [ "immersiveengineering:raw_block_uranium" ], |
||||
|
||||
crushed: [ "create:crushed_uranium_ore" ], |
||||
dust: [ "immersiveengineering:dust_uranium" ], |
||||
plate: [ "immersiveengineering:plate_uranium" ], |
||||
fluid: [ "tconstruct:molten_uranium" ], |
||||
}; |
Loading…
Reference in new issue