-
-
Notifications
You must be signed in to change notification settings - Fork 112
Geode Ores
DaFuqs edited this page Jul 13, 2026
·
2 revisions
Spectrum adds ores around geodes - the vanilla Amethyst one, plus all Spectrum ones. The amount of ores, the ores themselves and the geodes they generate in are fully data driven. You can even specify your own ores to generate around geodes from other mods!
You can specify additional ores for geodes by placing json files in the directory <data_pack_or_mod_name>/data/spectrum/spectrum/geode_ores.
-
(BrokenBlockPredicate) geode_inner_layer_block_predicate: -
(int) min_distance_from_center: -
(int) max_distance_from_center: -
(int) tries_per_range_increment: -
(OreConfiguration.TargetBlockState) ore_configuration:
{
"geode_inner_layer_block_predicate": {
"blocks": "minecraft:amethyst_block"
},
"min_distance_from_center": 5,
"max_distance_from_center": 15,
"tries_per_range_increment": 24,
"ore_configuration": [
{
"state": {
"Name": "spectrum:amethyst_ore"
},
"target": {
"predicate_type": "minecraft:tag_match",
"tag": "minecraft:stone_ore_replaceables"
}
},
{
"state": {
"Name": "spectrum:deepslate_amethyst_ore"
},
"target": {
"predicate_type": "minecraft:tag_match",
"tag": "minecraft:deepslate_ore_replaceables"
}
},
{
"target": {
"predicate_type": "minecraft:tag_match",
"tag": "spectrum:blackslag_ore_replaceables"
},
"state": {
"Name": "spectrum:blackslag_amethyst_ore"
}
}
]
}General
For Players
- Getting Started
- Mixing Colors
- Stuck on how to progress?
- Main Progression Steps (MAJOR SPOILERS)
For Server Admins / Modpack Creators
- Integrating into Modpacks
- Adjusting Progression
- Advancement Criteria
- Modonomicon Pages
- Modonomicon Recipe Pages
- Commands
- Type Specific Predicates
For Map Makers
Recipe Types
- Custom Pigment Pedestal Recipes
- Custom Anvil Crushing Recipes
- Custom Fusion Shrine Recipes
- Custom Enchanter Recipes
- Custom Enchantment Upgrade Recipes
- Custom Potion Workshop Brewing Recipes
- Custom Potion Workshop Crafting Recipes
- Custom Potion Workshop Reagents
- Custom Spirit Instiller Recipes
- Custom Liquid Dipping Recipes
- Custom Ink Converting Recipes
- Custom Crystallarieum Recipes
- Custom Cinderhearth Recipes
- Custom Titration Barrel Recipes
- Fluid Ingredients
Loot Tables
More Customisation
- Adding Nature's Staff Conversions
- Adding Entity Fishing Entries
- Adding Resonance Drops
- Adding Crystal Apothecary Harvestables
- Adding Particle Spawner Particles
- Adding Color Mappings
- Adding Geode Ores
For Contributors