forked from copygirl/heck
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
632 B
20 lines
632 B
2 years ago
|
// priority: 200
|
||
|
|
||
|
global.unification = global.unification || { };
|
||
|
global.unification.gold = {
|
||
|
nugget: [ "minecraft:gold_nugget" ],
|
||
|
ingot: [ "minecraft:gold_ingot" ],
|
||
|
block: [ "minecraft:gold_block" ],
|
||
|
|
||
|
ore: [ "minecraft:gold_ore" ],
|
||
|
deep_ore: [ "minecraft:deepslate_gold_ore" ],
|
||
|
|
||
|
raw: [ "minecraft:raw_gold" ],
|
||
|
raw_block: [ "minecraft:raw_gold_block" ],
|
||
|
|
||
|
crushed: [ "create:crushed_gold_ore" ],
|
||
|
dust: [ "thermal:gold_dust", "immersiveengineering:dust_gold" ],
|
||
|
plate: [ "create:gold_sheet", "thermal:gold_plate", "immersiveengineering:plate_gold" ],
|
||
|
fluid: [ "tconstruct:molten_gold" ],
|
||
|
};
|