fertilizer
fertilizer
Component have 2 properties, usable_on
and growth_speedup
. Check example below.
One time usable
# Example
common_fertilizer:
material: DIAMOND
itemname: Common Ferilizer
Components:
fertilizer:
usable_on: # List of furniture on which this fertiliser can be applied
- rose_seed
growth_speedup: 50 # Amount of time to skip growth
Multi time usable
# Example
common_fertilizer:
itemname: "<#D5D6D8>Common Fertilizer"
material: PAPER
Pack:
texture: test:fert/common_fertilizer.png
custom_model_data: 1007
Components:
fertilizer:
usable_on:
- rose_seed
- clover
growth_speedup: 50
max_stack_size: 1
durability: 50 # How many uses
Support Vanilla Blocks
# Example
common_fertilizer:
material: DIAMOND
itemname: Common Ferilizer
Components:
fertilizer:
usable_on:
- _MINECRAFT # Act as bone meal on any vanilla block
- WHEAT # Or just on specific minecraft block
growth_speedup: 50
Cooldown
# Example
common_fertilizer:
itemname: "<#D5D6D8>Common Fertilizer with Cooldown"
material: PAPER
Pack:
texture: test:fert/common_fertilizer.png
custom_model_data: 1007
Components:
fertilizer:
usable_on:
- _MINECRAFT
growth_speedup: 50
max_stack_size: 1
durability: 50 # How many uses
cooldown: 30 # 30 seconds of cooldown
Last updated