-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathymlModelConfig.txt
More file actions
77 lines (66 loc) · 1.96 KB
/
ymlModelConfig.txt
File metadata and controls
77 lines (66 loc) · 1.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# AngryMobs Configuration
#
# Each file only affects the world named in the filename.
#
# World Settings
worldOptions:
# Debug
# This can activate debug output messages for if you
# understand the source code and want to find the origin
# of an issue.
debug: false
# Alert Frequency
# Here you set the frequency (in seconds) at which a
# monster within the alert range will decide that it
# wants to kill you.
alertFrequency: 5
# Monster Spawn Distance
# The minimum distance (in blocks) that a monster can spawn
# from a player.
monsterSpawnDistance: 24
# disableNormalMonsters
# Here you can turn off the normal monsters spawning of a
# world. Thus making all monsters spawned only from this
# plugin.
disableNormalMonsters: false
# Monsters List
# Here you list the monsters which will be able to spawn in
# this world (separated by commas). You can also stack monsters
# by using "<". Example: "Spider<Skeleton" results in a skeleton
# riding a spider.
monsters: Creeper, Skeleton, Spider, Zombie, Spider<Skeleton
#
# Monster-specific settings
mobs:
# speed
# This is the multiplier for the monster's movement speed.
# A multiplier of 1 will leave the monster at normal speed.
# ratio
# Here you set the ratio in which this monster will spawn
# in relation to other monsters.
# spawnMaxLight
# This option lets you choose the maximum light level in
# which a monster will be able to spawn in. (0 - 15)
# alertRange
# Here you set the distance (in blocks) at which a monster
# entity will target your players.
Creeper:
speed: 1
ratio: 1
spawnMaxLight: 7
alertRange: 16
Skeleton:
speed: 1
ratio: 1
spawnMaxLight: 7
alertRange: 16
Spider:
speed: 1
ratio: 1
spawnMaxLight: 7
alertRange: 16
Zombie:
speed: 1
ratio: 1
spawnMaxLight: 7
alertRange: 16