Update Options authored by Lxlp's avatar Lxlp
...@@ -422,7 +422,7 @@ different mob type. ...@@ -422,7 +422,7 @@ different mob type.
### Armor Stands ### Armor Stands
#### CanMove: \[true/false\]** #### CanMove
Sets whether an armor stand can move. Defaults to `true` and requires PaperSpigot Sets whether an armor stand can move. Defaults to `true` and requires PaperSpigot
```yml ```yml
Dummy: Dummy:
...@@ -455,7 +455,7 @@ Sets whether an armor stand has a baseplate. Defaults to `true` ...@@ -455,7 +455,7 @@ Sets whether an armor stand has a baseplate. Defaults to `true`
Dummy: Dummy:
Type: ARMOR_STAND Type: ARMOR_STAND
Options: Options:
HasBasePlate: true HasBasePlate: false
``` ```
#### HasGravity #### HasGravity
...@@ -598,33 +598,49 @@ Mob: ...@@ -598,33 +598,49 @@ Mob:
### Bees ### Bees
**Anger: \[number\]** #### Anger
Sets the time in ticks until bee anger ends.
* Sets the time in ticks until bee anger ends. If set to 0 the bee will not be angry.
* If set to 0 the bee will not be angry. Defaults to `0`.
* Defaults to 0. ```yaml
Options:
**HasNectar: \[true/false\]** Anger: 200
```
* Whether the bee is carrying pollen. #### HasNectar
* Defaults to false. Whether the bee is carrying pollen.
Defaults to `false`.
```yaml
Options:
HasNectar: true
```
**HasStung: \[true/false\]**
* Whether the bee has stung an entity. #### HasStung
* Defaults to false. Whether the bee has stung an entity.
Defaults to false.
```yaml
Options:
HasStung: true
```
### Cat ### Cat
**CatType: \[type\]** #### CatType
Sets the type of cat
* Sets the type of cat Types can be ALL_BLACK, BLACK, BRITISH_SHORTHAIR, CALICO, PERSIAN, JELLIE, RAGDOLL, RED, SIAMESE, TABBY or WHITE.
* Types can be ALL_BLACK, BLACK, BRITISH_SHORTHAIR, CALICO, PERSIAN, JELLIE, RAGDOLL, RED, SIAMESE, TABBY or WHITE. ```yaml
Options:
**CollarColor: \[color\]** CatType: BLACK
```
* Sets the color of the cat's collar. #### CollarColor
* Available colors are: BLACK, BLUE, BROWN, CYAN, GRAY, GREEN, LIGHT_BLUE, LIGHT_GRAY, LIME, MAGENTA, ORANGE, PINK, PURPLE, RED, WHITE, or YELLOW. Sets the color of the cat's collar.
Available colors are: BLACK, BLUE, BROWN, CYAN, GRAY, GREEN, LIGHT_BLUE, LIGHT_GRAY, LIME, MAGENTA, ORANGE, PINK, PURPLE, RED, WHITE, or YELLOW.
```yaml
Options:
CollarColor: GREEN
```
### Chicken ### Chicken
... ...
......