• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • New resources must be posted under Resources tab. A discussion thread will be created automatically, you can't open threads manually anymore.

Monster Azerus Release

Gale

The Crooked Fate
Joined
Jun 7, 2008
Messages
56
Reaction score
0
Couldn't really find the Azerus monster so I decided to make my own. The attacks and such are all based off of tibiawiki~.
Code:
<monster name="Azerus" nameDescription="Azerus" race="blood" experience="6000" speed="400" manacost="0">
	<health now="10000" max="10000"/>
	<look type="309" corpse="3058"/>
	<targetchange interval="10000" chance="20"/>
	<strategy attack="100" defense="0"/>
	<flags>
		<flag summonable="0"/>
		<flag attackable="1"/>
		<flag hostile="1"/>
		<flag illusionable="0"/>
		<flag convinceable="0"/>
		<flag pushable="0"/>
		<flag canpushitems="1"/>
		<flag canpushcreatures="1"/>
		<flag staticattack="98"/>
		<flag targetdistance="1"/>
		<flag runonhealth="0"/>
	</flags>
	<attacks>
		<attack name="melee" interval="1000" min="-350" max="-1200"/>
		<attack name="manadrain" interval="2000" chance="16" radius="6" target="0" min="-500" max="-4000">
			<attribute key="areaEffect" value="redshimmer"/>
		</attack>
		<attack name="holy" interval="2000" chance="50" range="7" min="-100" max="-600">
			<attribute key="shootEffect" value="holy"/>
		</attack>
		<attack name="fire" interval="2000" chance="25" length="8" spread="0" min="-200" max="-1200">
			<attribute key="areaEffect" value="fire"/>
		</attack>
	</attacks>
	<defenses armor="55" defense="65">
		<defense name="healing" interval="3000" chance="35" min="500" max="1200">
			<attribute key="areaEffect" value="blueshimmer"/>
		</defense>
		<defense name="speed" interval="4000" chance="80" speedchange="440" duration="6000">
			<attribute key="areaEffect" value="redshimmer"/>
		</defense>
	</defenses>
	<elements>
		<element firePercent="0"/>
		<element earthPercent="0"/>
		<element energyPercent="60"/>
		<element deathPercent="60"/>
		<element physicalPercent="-10"/>
		<element icePercent="0"/>
	</elements>
	<immunities>
		<immunity paralyze="1"/>
		<immunity invisible="1"/>
	</immunities>
	<summons maxSummons="9">
		<summon name="Rift Worm" interval="2000" chance="17" max="3"/>
		<summon name="War Golem" interval="3000" chance="15" max="1"/>
		<summon name="Rift Brood" interval="2000" chance="13" max="3"/>
		<summon name="Rift Scythe" interval="2000" chance="13" max="3"/>
	</summons>
	<voices interval="5000" chance="30">
		<voice sentence="The ultimate will finally consume this unworthy existence!" yell="1"/>
		<voice sentence="My masters and I will tear down barriers and join the ultimate in its realm!" yell="1"/>
		<voice sentence="The power of the Yalahari will all be mine!" yell="1"/>
		<voice sentence="We will open the rift for a new time to come!" yell="1"/>
		<voice sentence="He who has returned from beyond has taught me secrets you can't even grasp!" yell="1"/>
		<voice sentence="The end of times has come!" yell="1"/>
		<voice sentence="The great machinator will make his entrance soon!" yell="1"/>
		<voice sentence="You might scratch my shields but they will never break!" yell="1"/>
		<voice sentence="You can't hope to penetrate my shields!" yell="1"/>
		<voice sentence="Do you really think you could beat me?" yell="1"/>
	</voices>
	<loot>
	</loot>
</monster>
 
Back
Top