# Jumppads

Throws the player upwards with varying force when stepping on a pressure plate, depending on the block underneath it. Multiple blocks can be specified, and hence multiple accelerations.

<figure><img src="https://2659314113-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F9UifqN2U4R2HCXiT8aMn%2Fuploads%2FGuSJy88WVdRqdOAmXcxy%2Fjumppad.png?alt=media&#x26;token=2199249a-ed8c-4684-9135-52a102ce24e3" alt=""><figcaption><p>Default</p></figcaption></figure>

### Installation <a href="#installation" id="installation"></a>

Look in the config which plate and which blocks are needed. According to the standard, you can take a gold plate and a diamond block.&#x20;

Place the diamond block and the gold plate on top.&#x20;

Step on the plate.

### Main config (config.yml)

```yaml
Default jumppad enable: false #If "false", this mode will not be available
Default jumppad plates: #List of plates that will respond to pressure. [Plate material, Custom model data]
  - ['HEAVY_WEIGHTED_PRESSURE_PLATE', 0]
  - ['LIGHT_WEIGHTED_PRESSURE_PLATE', 0]
Default jumppad blocks: #The block that should be under the plate. Block material: Throwing force
  IRON_BLOCK: 1.2
  GOLD_BLOCK: 1.8
  DIAMOND_BLOCK: 2.5
```
