2 new veins
This commit is contained in:
parent
35e1583f10
commit
b93f823442
7 changed files with 302 additions and 4 deletions
6
kubejs/startup_scripts/gregtech/materials.js
Normal file
6
kubejs/startup_scripts/gregtech/materials.js
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
const $OreProperty = Java.loadClass("com.gregtechceu.gtceu.api.data.chemical.material.properties.OreProperty")
|
||||
const $OrePropertyKey = Java.loadClass("com.gregtechceu.gtceu.api.data.chemical.material.properties.PropertyKey")
|
||||
|
||||
GTCEuStartupEvents.registry('gtceu:material', event => {
|
||||
GTMaterials.Bismuth.setProperty($OrePropertyKey.ORE, new $OreProperty());
|
||||
})
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
// priority: 0
|
||||
|
||||
// Replace + Remove Stonetypes
|
||||
// Replace
|
||||
GTCEuStartupEvents.registry('gtceu:tag_prefix', event => {
|
||||
global.allTFCStoneTypeNames.forEach(stoneTypeName => {
|
||||
event.create("tfc_" + stoneTypeName, 'ore')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue