init
This commit is contained in:
commit
d8d0e9d536
2567 changed files with 167778 additions and 0 deletions
|
|
@ -0,0 +1,25 @@
|
|||
/**
|
||||
* Registration of hardmode-only materials
|
||||
*/
|
||||
|
||||
GTCEuStartupEvents.registry("gtceu:material", event => {
|
||||
// if (doCreativeTank) {
|
||||
// return;
|
||||
// }
|
||||
|
||||
event.create("darmstadtite") // Hardmode only
|
||||
.dust().ore(2, 1)
|
||||
.iconSet("dull")
|
||||
.color(0x99AA87)
|
||||
.components("2x darmstadtium", "3x sulfur")
|
||||
.addOreByproducts("rare_earth", "rhodium_sulfate", "darmstadtium")
|
||||
|
||||
event.create("dulysite") // Hardmode only
|
||||
.gem().ore(2, 1)
|
||||
.iconSet(GTMaterialIconSet.DIAMOND)
|
||||
.color(0xF5EFC0)
|
||||
.components("duranium", "3x chlorine")
|
||||
.addOreByproducts("sphalerite", "duranium", "europium")
|
||||
|
||||
// Snowchestite is in naqline.js
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue