| |
{ "type": "oregrowth:ore_growth", "base": [ "minecraft:pumpkin" ], // blocks the crystal grows on "stages": 4, // number of growth stages the crystal has, max of 4 stages "spawn_chance": 0.2, // chance for a crystal to spawn when the base receives a random tick "growth_chance": 0.3, // chance for a crystal to grow when it receives a random tick "drops": [ { "stage": 4, // growth stage for this drop, one may also specify 'min_stage' and 'max_stage' "chance": 0.9, // optional, chance of obtaining this drop "item": { "id": "minecraft:pumpkin_pie", "count": 2 } }, { "min_stage": 1, // minimum stage for this drop "max_stage": 3, // maximum stage for this drop "chance": 0.3, // optional, chance of obtaining this drop "loot_table": "minecraft:blocks/short_grass" // loot table to obtain items from } ] }
|
|
 |