⬜️ Pressure Plate Block
Pressure Plate Block is a redstone power source triggered by entities standing on it. When an entity steps on the plate, it outputs a full-strength 15 signal and stays pressed for pressed_time ticks after the entity leaves.
The sensitivity controls which entities can activate it:
all(default): any entity.mob: only living entities.
The plate requires a rigid or center-supporting block beneath it.
| Property Name | Property Type | Required |
|---|---|---|
| powered | boolean | yes |
Example
blocks:
default:palm_pressure_plate:
behavior:
type: pressure_plate_block
sensitivity: all # "all" or "mob" (default all)
pressed_time: 20 # ticks to stay pressed after entity leaves (default 20)
sounds:
on: minecraft:block.wooden_pressure_plate.click_on # sound played when pressed (optional)
off: minecraft:block.wooden_pressure_plate.click_off # sound played when released (optional)

info
The signal is always 15 — it is an on/off signal, not pressure-sensitive like vanilla weighted pressure plates.