summaryrefslogtreecommitdiffstats
path: root/Server
diff options
context:
space:
mode:
authorMat <mail@mathias.is>2020-04-04 13:44:17 +0200
committerGitHub <noreply@github.com>2020-04-04 13:44:17 +0200
commit60bcc06f43e0c249204149153976e534b239d138 (patch)
treedc3178edca8b8a0ad77b6002621fd5765398d8e6 /Server
parentManage block entity lifetime with unique_ptr (#4080) (diff)
downloadcuberite-60bcc06f43e0c249204149153976e534b239d138.tar
cuberite-60bcc06f43e0c249204149153976e534b239d138.tar.gz
cuberite-60bcc06f43e0c249204149153976e534b239d138.tar.bz2
cuberite-60bcc06f43e0c249204149153976e534b239d138.tar.lz
cuberite-60bcc06f43e0c249204149153976e534b239d138.tar.xz
cuberite-60bcc06f43e0c249204149153976e534b239d138.tar.zst
cuberite-60bcc06f43e0c249204149153976e534b239d138.zip
Diffstat (limited to 'Server')
-rw-r--r--Server/Plugins/APIDump/APIDesc.lua13
-rw-r--r--Server/monsters.ini8
2 files changed, 21 insertions, 0 deletions
diff --git a/Server/Plugins/APIDump/APIDesc.lua b/Server/Plugins/APIDump/APIDesc.lua
index 69e7cd75b..d71a0ccbe 100644
--- a/Server/Plugins/APIDump/APIDesc.lua
+++ b/Server/Plugins/APIDump/APIDesc.lua
@@ -9290,6 +9290,10 @@ a_Player:OpenWindow(Window);
{
Notes = "",
},
+ mtWitherSkeleton =
+ {
+ Notes = "",
+ },
mtWolf =
{
Notes = "",
@@ -16686,6 +16690,10 @@ end
{
Notes = "A flag in the metadata of heads that indicates that the head is a zombie head.",
},
+ E_META_SPAWN_EGG_WITHER_SKELETON =
+ {
+ Notes = ""
+ },
E_META_SPONGE_DRY =
{
Notes = "A flag in the metadata of sponges that indicates that the sponge is dry.",
@@ -16790,6 +16798,10 @@ end
{
Notes = "Something concerning (i.e. reload) is about to happen",
},
+ mtWitherSkeleton =
+ {
+ Notes = ""
+ },
hMain =
{
Notes = "The main hand",
@@ -17049,6 +17061,7 @@ end
"mtVillager",
"mtWitch",
"mtWither",
+ "mtWitherSkeleton",
"mtWolf",
"mtZombie",
"mtZombiePigman",
diff --git a/Server/monsters.ini b/Server/monsters.ini
index bf1fc95a4..31e5b1479 100644
--- a/Server/monsters.ini
+++ b/Server/monsters.ini
@@ -190,6 +190,14 @@ AttackRate=1.0
MaxHealth=26
SightDistance=25.0
+[WitherSkeleton]
+AttackDamage=5.0
+AttackRange=1.0
+AttackRate=1.0
+IsFireproof=1
+MaxHealth=20
+SightDistance=25.0
+
[Wolf]
AttackDamage=8.0
AttackRange=1.0