Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
DancingSnow0517 committed May 14, 2024
1 parent f669177 commit e49a67a
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 5 deletions.
4 changes: 3 additions & 1 deletion config/worldstripper/stripper.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@
"minecraft:kelp_plant",
"minecraft:deepslate",
"minecraft:tuff",
"minecraft:glow_lichen"
"minecraft:glow_lichen",
"minecraft:infested_stone",
"minecraft:infested_deepslate"
]
}
37 changes: 33 additions & 4 deletions kubejs/server_scripts/oreveins/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,15 @@ GTCEuServerEvents.oreVeins(event => {
vein.weight(50)
vein.clusterSize(45)
vein.density(0.25)

vein.layer('all')
vein.dimensions(OVERWORLD, TWILIGHT_FOREST, DEIMOS, CERES)
vein.heightRangeUniform(-20, 50)

vein.dikeVeinGenerator(generator => generator
.withBlock(GTMaterials.Lazurite, 3, 20, 50)
.withBlock(GTMaterials.Sodalite, 2, -5, 40)
.withBlock(GTMaterials.Lapis, 2, -20, 20)
.withBlock(GTMaterials.Calcite, 1, -20, 50)
)

vein.surfaceIndicatorGenerator(indicator => indicator
.surfaceRock(GTMaterials.Lapis)
.placement('above')
Expand Down Expand Up @@ -89,5 +86,37 @@ GTCEuServerEvents.oreVeins(event => {
.placement("above")
)
})
// event.add('kubejs:overworld/iron', global.iron('stone', 'minecraft:overworld', 120, 10, 50))
event.add('kubejs:vermiculite', vein => {
vein.weight(80)
vein.clusterSize(35)
vein.density(0.75)
vein.layer('all')
vein.dimensions(OVERWORLD)
vein.heightRangeUniform(80, 200)
vein.dikeVeinGenerator(generator => generator
.withBlock(GTMaterials.Brass, 3, 80, 200)
.withBlock(GTMaterials.get('vermiculite'), 2, 80, 200)
.withBlock(GTMaterials.Cassiterite, 2, 80, 200)
.withBlock(GTMaterials.Alunite, 1, 80, 200)
)
vein.surfaceIndicatorGenerator(indicator => indicator
.surfaceRock(GTMaterials.get('vermiculite'))
.placement("above")
)
})
event.add('kubejs:oil_sand', vein => {
vein.weight(40)
vein.clusterSize(40)
vein.density(0.6)
vein.layer('all')
vein.dimensions(OVERWORLD)
vein.heightRangeUniform(20, 80)
vein.dikeVeinGenerator(generator => generator
.withBlock(GTMaterials.Oilsands, 1, 20, 80)
)
vein.surfaceIndicatorGenerator(indicator => indicator
.surfaceRock(GTMaterials.Oilsands)
.placement("above")
)
})
})
8 changes: 8 additions & 0 deletions kubejs/startup_scripts/gtceu/material/materials.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,12 @@ GTCEuStartupEvents.registry('gtceu:material', event => {
.wood()
.color(0x518539)
.toolStats(ToolProperty.Builder.of(12, 6, 614400, 3, GTToolType.SOFT_MALLET).build())

event.create('alumina')
.dust().color(0xAAB9B9)
.components('2x aluminium', '3x oxygen')

event.create('vermiculite')
.ore().dust().color(0xE7E088)
.components('3x iron', '10x alumina', '4x silicon', '4x water', '6x oxygen', '2x hydrogen')
})

0 comments on commit e49a67a

Please sign in to comment.