-
-
Notifications
You must be signed in to change notification settings - Fork 112
Customizing Resonance Drops
DaFuqs edited this page Aug 10, 2023
·
13 revisions
Resonance is an enchantment valid for mining tools, which unlocks in the late game tree. When destroying a block with a resonance enchanted tool, all drops of one item type will be converted to a whole other item type.
You can specify additional resonance drops, or edit existing ones, by placing json files in the directory <data_pack_or_mod_name>/resonance_drops/.
-
(Ingredient) input: The item that will be converted -
(Identifier) output: The item that will be dropped instead. Defaults to the original item, if not set. -
(String[]) state_tags_to_copy: Block State to preserve -
(String[]) nbt_to_copy: Block Entity NBT to preserve
{
"input": {
"item": "minecraft:coal"
},
"output": "spectrum:pure_coal"
}When a Respawn Anchor is broken, it retains it's charges.
{
"input": {
"item": "minecraft:respawn_anchor"
},
"state_tags_to_copy": [
"charges"
]
}When a block in the minecraft:signs tag is broken with Resonance, various kinds of block entity data is preserved.
{
"input": {
"tag": "minecraft:signs"
},
"nbt_to_copy": [
"GlowingText",
"Color",
"Text1",
"Text2",
"Text3",
"Text4"
]
}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