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

Monster Massive fire elemental RL tibia loot

MadMOOK

Hoo
Joined
Apr 20, 2011
Messages
802
Reaction score
43
I found this monster to have no loot in my datapack so i wiki'd and added the loot.. hope someone finds this useful..
Code:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Massive Fire Elemental" nameDescription="a massive fire elemental" race="fire" experience="950" speed="260" manacost="0">
    <health now="1200" max="1200"/>
    <look type="242" corpse="8964"/>
    <targetchange interval="5000" chance="8"/>
    <strategy attack="100" defense="0"/>
    <flags>
        <flag summonable="0"/>
        <flag attackable="1"/>
        <flag hostile="1"/>
        <flag illusionable="1"/>
        <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="2000" skill="40" attack="100" fire="200"/>
        <attack name="firefield" interval="2000" chance="16" range="7" radius="3" target="0">
            <attribute key="shootEffect" value="fire"/>
        </attack>
        <attack name="fire" interval="2000" chance="13" length="7" spread="3" min="-200" max="-700"/>
        <attack name="fire" interval="2000" chance="11" radius="3" target="0" min="-60" max="-250">
            <attribute key="areaEffect" value="firearea"/>
        </attack>
    </attacks>
    <defenses armor="25" defense="25"/>
    <elements>
        <element icePercent="-15"/>
        <element physicalPercent="40"/>
        <element energyPercent="30"/>
        <element deathPercent="20"/>
    </elements>
    <immunities>
        <immunity fire="1"/>
        <immunity lifedrain="1"/>
        <immunity paralyze="1"/>
        <immunity invisible="1"/>
    </immunities>
        <loot>
        <item id="2148" countmax="100" chance="40850" /><!-- gold coin -->
        <item id="2148" countmax="100" chance="40850" /><!-- gold coin -->
        <item id="2148" countmax="12" chance="40850" /><!-- gold coin -->
        <item id="2152" countmax="1" chance="4000" /><!-- plat coin -->
        <item id="2147" countmax="1" chance="2250" /><!-- small ruby -->
        <item id="9810" chance="6500" /><!-- rusty armor -->
        <item id="7894" chance="1225" /><!-- magma legs -->
        <item id="7899" chance="1150" /><!-- magma coat -->
        <item id="7890" chance="2250" /><!-- magma amulet -->
        </loot>
</monster>
 
Back
Top