Robeloto
Refugee
I am trying to make a zombie that can spawn in water.
I tried with this code to make this zed spawn in the water biome.
entitygroups.xml
spawning.xml
So after many tries the zombie does not seem to spawn near or in the water.
What I really want is to make a zombie that can walk on top of water surface, but I am already having problems with getting it to spawn in the water biome. Maybe it cannot be done with just xml?
Anyone know anything about how to do this?
I tried with this code to make this zed spawn in the water biome.
entitygroups.xml
Code:
<configs>
<append xpath="/entitygroups">
<entitygroup name="ZombiesWater">
<entity name="zombieWaterZed" prob="1"/>
</entitygroup>
</append>
</configs>
Code:
<configs>
<append xpath="/spawning">
<biome name="water">
<spawn maxcount="2" respawndelay="1" time="Any" entitygroup="ZombiesWater" />
</biome>
</append>
</configs>
What I really want is to make a zombie that can walk on top of water surface, but I am already having problems with getting it to spawn in the water biome. Maybe it cannot be done with just xml?
Anyone know anything about how to do this?