-
Notifications
You must be signed in to change notification settings - Fork 65
Adding Crystal Apothecary Harvestables
DaFuqs edited this page Apr 4, 2023
·
7 revisions
The Crystal Apothecary is a functional block that automatically harvests blocks in it's vicinity.
You can specify additional conversions, or edit existing ones, by placing json files in the directory: <data_pack_or_mod_name>/crystal_apothecary_harvestables
. Here you have 2 options:
- Simple Variant: one-liner, that will make the Apothecary detect any block when placed and process it's drops
- Extensive Variant: ore extensive json, that allows the Apothecary to additionally simulate (gemstone cluster) block growth for unloaded chunks
Allowing the Crystal Apothecary to harvest any block when placed (without compensation when unloaded).
-
harvested_block
(Block ID): The id of a block that should be automatically be broken & it's drops collected
{
"harvested_block": "minecraft:oxidized_copper"
}
-
harvested_block
(Block ID): The id of a block that should be automatically be broken & it's drops collected -
budding_block
(Block ID): -
valid_neighbor_blocks
(List of Block IDs): -
ticks_for_compensation_loot_per_valid_neighbor_block
(int): (adjusted to match increase / decrease via randomTickTimes != 3) -
compensated_loot
(Item ID + count):
{
"harvested_block": "minecraft:amethyst_cluster",
"simulated_block_growth": {
"budding_block": "minecraft:budding_amethyst",
"valid_neighbor_blocks": [
"minecraft:small_amethyst_bud",
"minecraft:medium_amethyst_bud",
"minecraft:large_amethyst_bud",
"minecraft:air",
"minecraft:cave_air",
"minecraft:water"
],
"ticks_for_compensation_loot_per_valid_neighbor": 10000,
"compensated_loot": {
"item": "minecraft:amethyst_shard",
"count": 2
}
}
}
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
- 1.7.x: Patchouli Pages
- 1.7.x: Patchouli Recipe Pages
- 1.8.x: Modonomicon Pages
- 1.8.x: Modonomicon Recipe Pages
- Commands
- Type Specific Predicates
- JsonNBT
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
For Contributors