• 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] Dwarf Miner

poopsiedoodle

Gibe moni plos
Joined
Nov 23, 2011
Messages
2,458
Reaction score
586
Location
Georgia
Dwarf_Miner.gif


I have not been able to find Dwarf Miners anywhere in 8.6- distros or monsterpacks. Does anyone have this?
 
Try:

XML:
  <?xml version="1.0" encoding="UTF-8"?>
<monster name="Dwarf Miner" nameDescription="a dwarf miner" race="blood" experience="60" speed="210" manacost="420">
  <health now="120" max="120"/>
  <look type="160" head="77" body="101" legs="97" feet="115" corpse="6007"/>
  <strategy attack="100" defense="0"/>
  <flags>
    <flag summonable="1"/>
    <flag attackable="1"/>
    <flag hostile="1"/>
    <flag illusionable="1"/>
    <flag convinceable="1"/>
    <flag pushable="1"/>
    <flag canpushitems="0"/>
    <flag canpushcreatures="0"/>
    <flag targetdistance="1"/>
    <flag staticattack="80"/>
    <flag runonhealth="0"/>
  </flags>
    <attacks>
        <attack name="melee" interval="2000" skill="24" attack="15"/>
    </attacks>
    <defenses armor="7" defense="10"/>
    <voices interval="5000" chance="10">
        <voice sentence="Work, work!"/>
        <voice sentence="Intruders in the mines!"/>
        <voice sentence="Mine, all mine!"/>
    </voices>
    <loot>
        <item id="2148" chance="10000" countmax="10"/> --gold
        <item id="2666" chance="4500" countmax="3"/> --meat
        <item id="2553" chance="10000"/> --pick
        <item id="2649" chance="7000"/> --leather legs
        <item id="2484" chance="3000"/> --studded armor
            <item id="1987" chance="100000">
            <inside>
            <item id="2386" chance="13000"/>
            <item id="2213" chance="2000"/>
            <item id="5880" chance="200"/>
            </inside>
        </item>    
    </loot>
</monster>
 
Back
Top