0
0
mirror of https://github.com/Pumpkin-MC/Pumpkin-Website.git synced 2025-05-06 07:01:41 +00:00
Files
Pumpkin-Website/docs/nl/config/pvp.md
Khalaor 6d855c9c68 Add multi-lingual (translation) support (#17)
* Change VitePress config to add locales

* Move English documentation into new Directory

* Started Dutch translations

* Add Translation instructions

* Set cleanUrls (Removes .html in URLs)

* Ignore typo's for files containing translations

* Add Dutch translations

* Simplify config structure

* Fix main page redirects for Dutch translation

* Updated small indent issue

---------

Co-authored-by: khalaor-gh <khalaor4@gmail.com>
2025-03-04 19:04:30 +01:00

69 lines
1.2 KiB
Markdown

# PVP
PVP is een kernonderdeel van de vanillemechanica, waarbij zelfs de kleinste verandering de gameplay beïnvloedt. Pumpkin stelt je in staat om PVP volledig te configureren.
## PVP configureren
#### `enabled`: Boolean
Of PVP is ingeschakeld of niet.
:::code-group
```toml [features.toml] {2}
[pvp]
enabled = true
```
:::
#### `hurt_animation`: Boolean
Of de rode pijnanimatie en FOV-bobbing moeten worden weergegeven of niet.
:::code-group
```toml [features.toml] {2}
[pvp]
hurt_animation = true
```
:::
#### `protect_creative`: Boolean
Of spelers in creatieve modus beschermd moeten worden tegen PVP of niet.
:::code-group
```toml [features.toml] {2}
[pvp]
protect_creative = true
```
:::
#### `knockback`: Boolean
Of aanvallen terugslag moeten hebben of niet.
:::code-group
```toml [features.toml] {2}
[pvp]
knockback = true
```
:::
#### `swing`: Boolean
Of spelers moeten zwaaien bij het aanvallen of niet.
:::code-group
```toml [features.toml] {2}
[pvp]
swing = true
```
:::
## Standaardconfiguratie
Standaard zijn alle PVP-opties ingeschakeld om het vanillegedrag te evenaren.
:::code-group
```toml [features.toml]
[pvp]
enabled = true
hurt_animation = true
protect_creative = true
knockback = true
swing = true
```
:::