-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #645 from last8kings/Sulfur-Deposit-Vein
Sulfur deposit vein (requires susycore 0.1.11)
- Loading branch information
Showing
8 changed files
with
239 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"weight": 40, | ||
"density": 1, | ||
"dimension_filter": ["dimension_id:10"], | ||
"max_height": 255, | ||
"min_height": 0, | ||
"generator": { | ||
"type": "layered", | ||
"radius": [ | ||
8, | ||
8 | ||
] | ||
}, | ||
"filler": { | ||
"type": "layered", | ||
"values": [ | ||
{ | ||
"primary": "ore:graphite" | ||
}, | ||
{ | ||
"secondary": "ore:graphite" | ||
}, | ||
{ | ||
"between": "ore:graphite" | ||
}, | ||
{ | ||
"sporadic": "ore:graphite" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"weight": 40, | ||
"density": 1, | ||
"dimension_filter":[ | ||
"dimension_id:-1" | ||
], | ||
"max_height": 255, | ||
"min_height": 0, | ||
"generator": { | ||
"type": "layered", | ||
"radius": [ | ||
8, | ||
8 | ||
] | ||
}, | ||
"filler": { | ||
"type": "layered", | ||
"values": [ | ||
{ | ||
"primary": "ore:graphite" | ||
}, | ||
{ | ||
"secondary": "ore:graphite" | ||
}, | ||
{ | ||
"between": "ore:graphite" | ||
}, | ||
{ | ||
"sporadic": "ore:graphite" | ||
} | ||
] | ||
} | ||
} |
45 changes: 45 additions & 0 deletions
45
config/gregtech/worldgen/vein/nether/sulfur_deposit_vein.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"weight": 120, | ||
"density": 0.8, | ||
"dimension_filter":[ | ||
"dimension_id:-1" | ||
], | ||
"max_height":120, | ||
"min_height":0, | ||
"generator": { | ||
"type": "layered", | ||
"radius": [ | ||
16, | ||
16 | ||
] | ||
}, | ||
"filler": { | ||
"type": "layered", | ||
"values": [ | ||
{ | ||
"primary": { | ||
"block":"susy:resource_block", | ||
"variant":"sulfur" | ||
} | ||
}, | ||
{ | ||
"secondary": { | ||
"block":"susy:resource_block", | ||
"variant":"sulfur" | ||
} | ||
}, | ||
{ | ||
"between": { | ||
"block":"susy:resource_block", | ||
"variant":"sulfur" | ||
} | ||
}, | ||
{ | ||
"sporadic": { | ||
"block":"susy:resource_block", | ||
"variant":"sulfur" | ||
} | ||
} | ||
] | ||
} | ||
} |
34 changes: 34 additions & 0 deletions
34
config/gregtech/worldgen/vein/overworld/garnierite_vein.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"weight": 60, | ||
"density": 0.75, | ||
"max_height": 80, | ||
"min_height": 0, | ||
"vein_populator": { | ||
"type": "surface_rock", | ||
"material": "garnierite" | ||
}, | ||
"generator": { | ||
"type": "layered", | ||
"radius": [ | ||
20, | ||
20 | ||
] | ||
}, | ||
"filler": { | ||
"type": "layered", | ||
"values": [ | ||
{ | ||
"primary": "ore:garnierite" | ||
}, | ||
{ | ||
"secondary": "ore:garnierite" | ||
}, | ||
{ | ||
"between": "ore:garnierite" | ||
}, | ||
{ | ||
"sporadic": "ore:garnierite" | ||
} | ||
] | ||
} | ||
} |
34 changes: 34 additions & 0 deletions
34
config/gregtech/worldgen/vein/overworld/pentlandite_vein.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"weight": 80, | ||
"density": 0.75, | ||
"max_height": 80, | ||
"min_height": 0, | ||
"vein_populator": { | ||
"type": "surface_rock", | ||
"material": "pentlandite" | ||
}, | ||
"generator": { | ||
"type": "layered", | ||
"radius": [ | ||
20, | ||
20 | ||
] | ||
}, | ||
"filler": { | ||
"type": "layered", | ||
"values": [ | ||
{ | ||
"primary": "ore:pentlandite" | ||
}, | ||
{ | ||
"secondary": "ore:chalcopyrite" | ||
}, | ||
{ | ||
"between": "ore:pyrite" | ||
}, | ||
{ | ||
"sporadic": "ore:pyrite" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 51 additions & 0 deletions
51
config/gregtech/worldgen/vein/overworld/sulfur_deposit_vein.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
{ | ||
"weight": -1, | ||
"density": 0.75, | ||
"max_height": 170, | ||
"min_height": 62, | ||
"block": "minecraft:sand", | ||
"vein_populator": { | ||
"type": "surface_rock", | ||
"material": "sulfur" | ||
}, | ||
"biome_modifier": { | ||
"type": "biome_map", | ||
"biomesoplenty:volcanic_island": 400 | ||
}, | ||
"generator": { | ||
"type": "layered", | ||
"radius": [ | ||
16, | ||
16 | ||
] | ||
}, | ||
"filler": { | ||
"type": "layered", | ||
"values": [ | ||
{ | ||
"primary": { | ||
"block":"susy:resource_block", | ||
"variant":"sulfur" | ||
} | ||
}, | ||
{ | ||
"secondary": { | ||
"block":"susy:resource_block", | ||
"variant":"sulfur" | ||
} | ||
}, | ||
{ | ||
"between": { | ||
"block":"susy:resource_block", | ||
"variant":"sulfur" | ||
} | ||
}, | ||
{ | ||
"sporadic": { | ||
"block":"susy:resource_block", | ||
"variant":"sulfur" | ||
} | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters