• 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] Worm the little

Sizaro

Advanced OT User
Joined
Aug 20, 2007
Messages
5,172
Solutions
5
Reaction score
227
Location
Sweden
GitHub
coldensjo
I dont take the credits.

Anyways.

Monsters.xml
Code:
      <monster name="Worm" file="worm.xml" />

Worm.lua
Code:
<?xml version="1.0" encoding="UTF-8"?>
  <monster name="Worm" tp="1" species="undead"  nameDescription="an Worm" race="undead" experience="5400" speed="300" manacost="0">
    <health now="8350" max="8350"/>
    <look typeex="3976" corpse="2365"/>
    <targetchange interval="60000" chance="0"/>
    <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="90" attack="120"/>
      <attack name="fire" interval="1000" chance="10" range="7" radius="4" target="1" min="-80" max="-120">
        <attribute key="shootEffect" value="fire"/>
        <attribute key="areaEffect" value="redspark"/>
      </attack>
      <attack name="drunkness" interval="2000" chance="20" range="7">
        <attribute key="shootEffect" value="energy"/>
        <attribute key="areaEffect" value="rednote"/>
      </attack>
    </attacks>
    <defenses armor="15" defense="15">
    </defenses>
    <immunities>
      <immunity physical="0"/>
      <immunity energy="1"/>
      <immunity fire="1"/>
      <immunity poison="1"/>
      <immunity lifedrain="1"/>
      <immunity paralyze="1"/>
      <immunity outfit="1"/>
      <immunity drunk="1"/>
      <immunity invisible="1"/>
    </immunities>
    <voices interval="5000" chance="10">
      <voice sentence="FEEEED MY ETERNAL HUNGER!"/>
  
    </voices>
  <loot>
  <item id="2148" chance="100000" countmax="100" /> -- gold coin
  <item id="2152" chance="25000" countmax="3" /> -- platinum coin
  <item id="2236" chance="6667" /> -- torn book
  <item id="2413" chance="4000" /> -- broad sword
  <item id="1987" chance="100000" > -- bag
  <inside>
  	<item id="6500" chance="1818" countmax="1" /> -- demonic essence
  	<item id="5944" chance="1538" countmax="1" /> -- soul orb
  	<item id="2547" chance="500" countmax="3" /> -- power bolt
  </inside>
  </item>
  </loot>
  </monster>

:thumbup:
 
lol, a creature called Worm, :O something new to me =) does it exist in the real tibia to?
 
Back
Top