* - Fix typo "torse" -> "torso" * - Added "main_hand" as an equipment location * - Added support for "beta" version of script modules * - Update point lights to local light * - Added precipitation_interactions * - Added control flags field to more goals * - Update fire_resistant to not accept direct values * - Added swing_duration component * - Added emissive block rendering * - Added emit_vibrations field to use_modifiers * - Added underwater ambient sounds - Added chance field to ambient sound addition * - Added alpha_masked_tint * - Added apply_knockback_to_blocking_targets field to projectile
16 lines
631 B
JSON
16 lines
631 B
JSON
{
|
|
"$id": "blockception.minecraft.behavior.blocks.minecraft.precipitation_interactions",
|
|
"title": "Precipitation Interactions",
|
|
"description": "Component that determines how the block will interact with rain and snow",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [ "precipitation_behavior" ],
|
|
"properties": {
|
|
"precipitation_behavior": {
|
|
"title": "Precipitation Behavior",
|
|
"description": "What behavior should the block have.",
|
|
"type": "string",
|
|
"enum": [ "obstruct_rain", "obstruct_rain_accumulate_snow", "none" ]
|
|
}
|
|
}
|
|
} |