• 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!

Berserker Chicken, attacks (Solved)

LucasFerraz

Systems Analyst
Joined
Jun 10, 2010
Messages
2,857
Reaction score
96
Location
Brazil
I made this Berserker Chicken from Isle of Evil, can someone help me with the Attacks?
This is where I need help: Drown Explosion (41-70) on himself, Blood Rage (increases melee in a 40%?)

LUA:
<?xml version="1.0" encoding="utf-8"?>
<monster name="Berserker Chicken" namedescription="a berserker chicken" race="blood" experience="220" speed="250" manacost="220">
	<health now="465" max="465"/>
	<look type="111" corpse="6042"/>
	<targetchange interval="5000" chance="8"/>
	<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 targetdistance="1"/>
		<flag staticattack="90"/>
		<flag runonhealth="0"/>
	</flags>
	<attacks>
		<attack name="melee" interval="1200" min="-0" max="-200"/>
	</attacks>
	<defenses armor="30" defense="35">
		<defense name="speed" interval="1000" chance="40" speedchange="380" duration="8000">
			<attribute key="areaEffect" value="redshimmer"/>
		</defense>
	</defenses>
	<elements>
		<element holyPercent="10"/>
		<element deathPercent="10"/>
		<element firePercent="10"/>
		<element energyPercent="10"/>
		<element icePercent="10"/>
		<element earthPercent="10"/>
		<element physicalPercent="-20"/>
	</elements>
	<voices interval="5000" chance="10">
		<voice sentence="Gokgoooook"/>
		<voice sentence="Cluck Cluck"/>
		<voice sentence="I will fill MY cushion with YOUR hair! CLUCK!"/>
	</voices>
	<loot>
		<item id="2148" countmax="100" chance="50000"/><!-- gold coins -->
	</loot>
</monster>
 
Last edited:
Haha, this reminds me of a raid I had on my OT where a bunch of "flustered" chickens went around town on a rampage attacking people, but they were fairly easy easy to kill, just -SUPER- fast critters. Anyway, when they died, they had a small chance of dropping enchanted chicken wings and you could turn in like 40 of them to get a pair of BoH, haha.
 
something like this
Code:
	<attack name="drown" interval="2000" chance="15" target="0" min="-41" max="-70">
		<attribute key="areaEffect" value="bluebubble"/>
	</attack>
 
Try:
Code:
	<attack name="drown" interval="2000" chance="15" target="0" min="-41" max="-70">
		<attribute key="areaEffect" value="explosionarea"/>
	</attack>
	<attack name="Blood Rage" interval="2000" chance="10" target="1"/>
(I also corrected the effect for the drown explosion)
 
Back
Top