-
Notifications
You must be signed in to change notification settings - Fork 68
Adding Particle Spawner Particles
DaFuqs edited this page Aug 17, 2023
·
4 revisions
The Particle Spawner is a decorational block that emits highly customizable particles when powered via redstone. Players are able to customize position, velocity, gravity and more.
You can specify additional particle types, or edit existing ones, by placing json files in the directory assets/<data_pack_or_mod_name>/particle_spawner_particles/
.
-
(Identifier) particle_type
: The particle type to spawn -
(Identifier) gui_texture
: The texture that will get displayed in the Particle Spawner gui for this entry -
(Identifier) unlock_identifier
: The advancement a player needs to have for this entry to show up. Always available, if omitted -
(boolean) supports_coloring
: Whether the particle can be colored (usually true for particles that are grayscale)
{
"particle_type": "spectrum:azure_dike_runes",
"gui_texture": "spectrum:particle/azure_dike_rune_0",
"unlock_identifier": "spectrum:midgame/get_azure_dike_charge",
"supports_coloring": false
}
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