mirror of
https://github.com/ErikasKontenis/SabrehavenServer.git
synced 2025-05-02 18:49:21 +02:00
introduce hall of the four ways and fix every new monster speed and speedchange
This commit is contained in:
parent
870b7df973
commit
38d5850f43
@ -1 +1 @@
|
|||||||
next: 17653
|
next: 17657
|
@ -87,6 +87,7 @@
|
|||||||
|
|
||||||
<!-- Pits of Inferno -->
|
<!-- Pits of Inferno -->
|
||||||
<action actionid="17642" script="pits_of_inferno/oil.lua" />
|
<action actionid="17642" script="pits_of_inferno/oil.lua" />
|
||||||
|
<action fromaid="17653" toaid="17656" script="pits_of_inferno/hall_of_the_four_ways.lua" />
|
||||||
|
|
||||||
<!-- Serpentine Tower -->
|
<!-- Serpentine Tower -->
|
||||||
<action actionid="17597" script="serpentine_tower/release_fire_elemental.lua" />
|
<action actionid="17597" script="serpentine_tower/release_fire_elemental.lua" />
|
||||||
|
@ -0,0 +1,37 @@
|
|||||||
|
local config = {
|
||||||
|
[17653] = { doorPosition = {x = 32833, y = 32333, z = 11}, vocationIds = {4, 8} },
|
||||||
|
[17656] = { doorPosition = {x = 32835, y = 32333, z = 11}, vocationIds = {1, 5} },
|
||||||
|
[17655] = { doorPosition = {x = 32831, y = 32333, z = 11}, vocationIds = {3, 7} },
|
||||||
|
[17654] = { doorPosition = {x = 32837, y = 32333, z = 11}, vocationIds = {2, 6} }
|
||||||
|
}
|
||||||
|
|
||||||
|
local function doTransformDoors(position)
|
||||||
|
local tile = Tile(Position(position))
|
||||||
|
if tile then
|
||||||
|
local lockedDoor = tile:getItemById(1628)
|
||||||
|
local closedDoor = tile:getItemById(1629)
|
||||||
|
local openDoor = tile:getItemById(1630)
|
||||||
|
if lockedDoor then
|
||||||
|
lockedDoor:transform(1629, 1)
|
||||||
|
lockedDoor:decay()
|
||||||
|
elseif closedDoor then
|
||||||
|
closedDoor:transform(1628, 1)
|
||||||
|
closedDoor:decay()
|
||||||
|
elseif openDoor then
|
||||||
|
openDoor:transform(1628, 1)
|
||||||
|
openDoor:decay()
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
function onUse(player, item, fromPosition, target, toPosition, isHotkey)
|
||||||
|
local configValue = config[item:getActionId()];
|
||||||
|
if isInArray(configValue.vocationIds, player:getVocation():getId()) then
|
||||||
|
doTransformDoors(configValue.doorPosition)
|
||||||
|
Position(configValue.doorPosition):sendMagicEffect(CONST_ME_FIREAREA)
|
||||||
|
item:transform(item.itemid == 2772 and 2773 or 2772)
|
||||||
|
return true
|
||||||
|
end
|
||||||
|
|
||||||
|
return false
|
||||||
|
end
|
@ -26,7 +26,7 @@
|
|||||||
<attack name="physical" chance="17" range="7" radius="1" target="1" min="-70" max="-185">
|
<attack name="physical" chance="17" range="7" radius="1" target="1" min="-70" max="-185">
|
||||||
<attribute key="shootEffect" value="energy" />
|
<attribute key="shootEffect" value="energy" />
|
||||||
</attack>
|
</attack>
|
||||||
<attack name="speed" chance="10" range="7" speedchange="-220" duration="5000">
|
<attack name="speed" chance="10" range="7" speedchange="-80" duration="5000">
|
||||||
</attack>
|
</attack>
|
||||||
</attacks>
|
</attacks>
|
||||||
<defenses armor="15" defense="20">
|
<defenses armor="15" defense="20">
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
<attack name="physical" chance="25" length="8" spread="0" min="-0" max="-580">
|
<attack name="physical" chance="25" length="8" spread="0" min="-0" max="-580">
|
||||||
<attribute key="areaEffect" value="mortarea" />
|
<attribute key="areaEffect" value="mortarea" />
|
||||||
</attack>
|
</attack>
|
||||||
<attack name="speed" chance="15" range="7" speedchange="-850" duration="50000">
|
<attack name="speed" chance="15" range="7" speedchange="-400" duration="50000">
|
||||||
<attribute key="areaEffect" value="whitenote" />
|
<attribute key="areaEffect" value="whitenote" />
|
||||||
</attack>
|
</attack>
|
||||||
<attack name="physical" chance="20" target="0" radius="7" min="-500" max="-800">
|
<attack name="physical" chance="20" target="0" radius="7" min="-500" max="-800">
|
||||||
@ -34,7 +34,7 @@
|
|||||||
<defense name="healing" chance="20" min="250" max="750">
|
<defense name="healing" chance="20" min="250" max="750">
|
||||||
<attribute key="areaEffect" value="blueshimmer" />
|
<attribute key="areaEffect" value="blueshimmer" />
|
||||||
</defense>
|
</defense>
|
||||||
<defense name="speed" chance="80" speedchange="808" duration="6000">
|
<defense name="speed" chance="80" speedchange="404" duration="6000">
|
||||||
<attribute key="areaEffect" value="redshimmer" />
|
<attribute key="areaEffect" value="redshimmer" />
|
||||||
</defense>
|
</defense>
|
||||||
</defenses>
|
</defenses>
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
<attack name="lifedrain" chance="8" range="7" target="1" min="-45" max="-170">
|
<attack name="lifedrain" chance="8" range="7" target="1" min="-45" max="-170">
|
||||||
<attribute key="areaEffect" value="redshimmer" />
|
<attribute key="areaEffect" value="redshimmer" />
|
||||||
</attack>
|
</attack>
|
||||||
<attack name="speed" chance="10" range="7" speedchange="-600" duration="5000">
|
<attack name="speed" chance="10" range="7" speedchange="-100" duration="5000">
|
||||||
</attack>
|
</attack>
|
||||||
</attacks>
|
</attacks>
|
||||||
<defenses armor="15" defense="18">
|
<defenses armor="15" defense="18">
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
<attack name="lifedrain" chance="8" range="7" target="1" min="-0" max="-170">
|
<attack name="lifedrain" chance="8" range="7" target="1" min="-0" max="-170">
|
||||||
<attribute key="areaEffect" value="redshimmer" />
|
<attribute key="areaEffect" value="redshimmer" />
|
||||||
</attack>
|
</attack>
|
||||||
<attack name="speed" chance="10" range="7" speedchange="-600" duration="5000">
|
<attack name="speed" chance="10" range="7" speedchange="-100" duration="5000">
|
||||||
</attack>
|
</attack>
|
||||||
</attacks>
|
</attacks>
|
||||||
<defenses armor="15" defense="18">
|
<defenses armor="15" defense="18">
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
<defense name="invisible" chance="25" duration="2000">
|
<defense name="invisible" chance="25" duration="2000">
|
||||||
<attribute key="areaEffect" value="redshimmer" />
|
<attribute key="areaEffect" value="redshimmer" />
|
||||||
</defense>
|
</defense>
|
||||||
<defense name="speed" chance="10" speedchange="800" duration="5000">
|
<defense name="speed" chance="10" speedchange="65" duration="5000">
|
||||||
<attribute key="areaEffect" value="redshimmer" />
|
<attribute key="areaEffect" value="redshimmer" />
|
||||||
</defense>
|
</defense>
|
||||||
</defenses>
|
</defenses>
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
<flag runonhealth="0" />
|
<flag runonhealth="0" />
|
||||||
</flags>
|
</flags>
|
||||||
<attacks skill="50" attack="80">
|
<attacks skill="50" attack="80">
|
||||||
<attack name="speed" chance="10" range="1" speedchange="-600" duration="3000">
|
<attack name="speed" chance="10" range="1" speedchange="-100" duration="3000">
|
||||||
<attribute key="areaEffect" value="redshimmer" />
|
<attribute key="areaEffect" value="redshimmer" />
|
||||||
</attack>
|
</attack>
|
||||||
</attacks>
|
</attacks>
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
<flag runonhealth="0" />
|
<flag runonhealth="0" />
|
||||||
</flags>
|
</flags>
|
||||||
<attacks skill="75" attack="80">
|
<attacks skill="75" attack="80">
|
||||||
<attack name="speed" chance="12" range="1" speedchange="-600" duration="3000">
|
<attack name="speed" chance="12" range="1" speedchange="-100" duration="3000">
|
||||||
<attribute key="areaEffect" value="redshimmer" />
|
<attribute key="areaEffect" value="redshimmer" />
|
||||||
</attack>
|
</attack>
|
||||||
</attacks>
|
</attacks>
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
<attacks skill="30" attack="235">
|
<attacks skill="30" attack="235">
|
||||||
</attacks>
|
</attacks>
|
||||||
<defenses armor="40" defense="45">
|
<defenses armor="40" defense="45">
|
||||||
<defense name="speed" chance="15" speedchange="210">
|
<defense name="speed" chance="15" speedchange="75">
|
||||||
<attribute key="areaEffect" value="greenshimmer" />
|
<attribute key="areaEffect" value="greenshimmer" />
|
||||||
</defense>
|
</defense>
|
||||||
<defense name="healing" chance="12" min="200" max="240">
|
<defense name="healing" chance="12" min="200" max="240">
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
<attack name="poisonfield" chance="19" range="7" radius="3" target="0">
|
<attack name="poisonfield" chance="19" range="7" radius="3" target="0">
|
||||||
<attribute key="shootEffect" value="poison" />
|
<attribute key="shootEffect" value="poison" />
|
||||||
</attack>
|
</attack>
|
||||||
<attack name="speed" chance="10" range="7" target="1" speedchange="-600" duration="20000">
|
<attack name="speed" chance="10" range="7" target="1" speedchange="-100" duration="20000">
|
||||||
<attribute key="shootEffect" value="snowball" />
|
<attribute key="shootEffect" value="snowball" />
|
||||||
</attack>
|
</attack>
|
||||||
<attack name="lifedrain" chance="20" range="7" target="1" min="-108" max="-137">
|
<attack name="lifedrain" chance="20" range="7" target="1" min="-108" max="-137">
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
<attribute key="shootEffect" value="poison" />
|
<attribute key="shootEffect" value="poison" />
|
||||||
<attribute key="areaEffect" value="poison" />
|
<attribute key="areaEffect" value="poison" />
|
||||||
</attack>
|
</attack>
|
||||||
<attack name="speed" chance="20" range="7" target="1" speedchange="-850" duration="30000">
|
<attack name="speed" chance="20" range="7" target="1" speedchange="-100" duration="30000">
|
||||||
<attribute key="shootEffect" value="poison" />
|
<attribute key="shootEffect" value="poison" />
|
||||||
<attribute key="areaEffect" value="greenspark" />
|
<attribute key="areaEffect" value="greenspark" />
|
||||||
</attack>
|
</attack>
|
||||||
@ -30,7 +30,7 @@
|
|||||||
</attacks>
|
</attacks>
|
||||||
<defenses armor="30" defense="31">
|
<defenses armor="30" defense="31">
|
||||||
<defense name="ultimate healing" chance="35" min="600" max="800" />
|
<defense name="ultimate healing" chance="35" min="600" max="800" />
|
||||||
<defense name="speed" chance="10" speedchange="800" duration="5000">
|
<defense name="speed" chance="10" speedchange="80" duration="5000">
|
||||||
<attribute key="areaEffect" value="redshimmer" />
|
<attribute key="areaEffect" value="redshimmer" />
|
||||||
</defense>
|
</defense>
|
||||||
</defenses>
|
</defenses>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<monster name="Apprentice Sheng" nameDescription="Apprentice Sheng" race="blood" experience="150" speed="170" manacost="0">
|
<monster name="Apprentice Sheng" nameDescription="Apprentice Sheng" race="blood" experience="150" speed="45" manacost="0">
|
||||||
<health now="95" max="95" />
|
<health now="95" max="95" />
|
||||||
<look type="23" corpse="5981" />
|
<look type="23" corpse="5981" />
|
||||||
<targetchange interval="5000" chance="8" />
|
<targetchange interval="5000" chance="8" />
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<monster name="Betrayed Wraith" nameDescription="a betrayed wraith" race="undead" experience="3500" speed="230" manacost="0">
|
<monster name="Betrayed Wraith" nameDescription="a betrayed wraith" race="undead" experience="3500" speed="115" manacost="0">
|
||||||
<health now="4200" max="4200" />
|
<health now="4200" max="4200" />
|
||||||
<look type="233" corpse="6315" />
|
<look type="233" corpse="6315" />
|
||||||
<targetchange interval="4000" chance="15" />
|
<targetchange interval="4000" chance="15" />
|
||||||
@ -18,7 +18,7 @@
|
|||||||
<attacks>
|
<attacks>
|
||||||
<attack name="melee" interval="2000" min="0" max="-455" />
|
<attack name="melee" interval="2000" min="0" max="-455" />
|
||||||
<attack name="betrayed wraith skill reducer" chance="10" />
|
<attack name="betrayed wraith skill reducer" chance="10" />
|
||||||
<attack name="speed" interval="2000" chance="20" range="7" target="1" speedchange="-300" duration="3000">
|
<attack name="speed" interval="2000" chance="20" range="7" target="1" speedchange="-100" duration="3000">
|
||||||
<attribute key="shootEffect" value="suddendeath" />
|
<attribute key="shootEffect" value="suddendeath" />
|
||||||
<attribute key="areaEffect" value="mortarea" />
|
<attribute key="areaEffect" value="mortarea" />
|
||||||
</attack>
|
</attack>
|
||||||
@ -30,7 +30,7 @@
|
|||||||
<defense name="invisible" interval="2000" chance="10" duration="5000">
|
<defense name="invisible" interval="2000" chance="10" duration="5000">
|
||||||
<attribute key="areaEffect" value="redspark" />
|
<attribute key="areaEffect" value="redspark" />
|
||||||
</defense>
|
</defense>
|
||||||
<defense name="speed" interval="2000" chance="15" speedchange="260" duration="5000">
|
<defense name="speed" interval="2000" chance="15" speedchange="57" duration="5000">
|
||||||
<attribute key="areaEffect" value="redshimmer" />
|
<attribute key="areaEffect" value="redshimmer" />
|
||||||
</defense>
|
</defense>
|
||||||
</defenses>
|
</defenses>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<monster name="Blightwalker" nameDescription="a blightwalker" race="undead" experience="5850" speed="250" manacost="0">
|
<monster name="Blightwalker" nameDescription="a blightwalker" race="undead" experience="5850" speed="125" manacost="0">
|
||||||
<health now="8900" max="8900" />
|
<health now="8900" max="8900" />
|
||||||
<look type="246" corpse="6353" />
|
<look type="246" corpse="6353" />
|
||||||
<targetchange interval="4000" chance="10" />
|
<targetchange interval="4000" chance="10" />
|
||||||
@ -27,7 +27,7 @@
|
|||||||
<attribute key="areaEffect" value="greenspark" />
|
<attribute key="areaEffect" value="greenspark" />
|
||||||
</attack>
|
</attack>
|
||||||
<attack name="blightwalker curse" interval="2000" chance="15" />
|
<attack name="blightwalker curse" interval="2000" chance="15" />
|
||||||
<attack name="speed" interval="2000" chance="15" range="7" speedchange="-300" duration="30000">
|
<attack name="speed" interval="2000" chance="15" range="7" speedchange="-100" duration="30000">
|
||||||
<attribute key="shootEffect" value="poison" />
|
<attribute key="shootEffect" value="poison" />
|
||||||
</attack>
|
</attack>
|
||||||
</attacks>
|
</attacks>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<monster name="Countess Sorrow" nameDescription="Countess Sorrow" race="undead" experience="5150" speed="250" manacost="0">
|
<monster name="Countess Sorrow" nameDescription="Countess Sorrow" race="undead" experience="5150" speed="125" manacost="0">
|
||||||
<health now="7200" max="7200" />
|
<health now="7200" max="7200" />
|
||||||
<look type="241" head="20" corpse="6343" />
|
<look type="241" head="20" corpse="6343" />
|
||||||
<targetchange interval="60000" chance="0" />
|
<targetchange interval="60000" chance="0" />
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<monster name="Dark Torturer" nameDescription="a dark torturer" race="undead" experience="4650" speed="240" manacost="0">
|
<monster name="Dark Torturer" nameDescription="a dark torturer" race="undead" experience="4650" speed="120" manacost="0">
|
||||||
<health now="7350" max="7350" />
|
<health now="7350" max="7350" />
|
||||||
<look type="234" corpse="6330" />
|
<look type="234" corpse="6330" />
|
||||||
<targetchange interval="4000" chance="10" />
|
<targetchange interval="4000" chance="10" />
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<monster name="Defiler" nameDescription="a defiler" race="venom" experience="3700" speed="230" manacost="0">
|
<monster name="Defiler" nameDescription="a defiler" race="venom" experience="3700" speed="115" manacost="0">
|
||||||
<health now="3650" max="3650" />
|
<health now="3650" max="3650" />
|
||||||
<look type="238" corpse="6532" />
|
<look type="238" corpse="6532" />
|
||||||
<targetchange interval="4000" chance="10" />
|
<targetchange interval="4000" chance="10" />
|
||||||
@ -29,7 +29,7 @@
|
|||||||
<attack name="poisoncondition" interval="2000" chance="10" length="8" spread="3" min="-500" max="-1000">
|
<attack name="poisoncondition" interval="2000" chance="10" length="8" spread="3" min="-500" max="-1000">
|
||||||
<attribute key="areaEffect" value="smallplants" />
|
<attribute key="areaEffect" value="smallplants" />
|
||||||
</attack>
|
</attack>
|
||||||
<attack name="speed" interval="2000" chance="15" length="8" spread="3" speedchange="-700" duration="15000">
|
<attack name="speed" interval="2000" chance="15" length="8" spread="3" speedchange="-100" duration="15000">
|
||||||
<attribute key="areaEffect" value="smallclouds" />
|
<attribute key="areaEffect" value="smallclouds" />
|
||||||
</attack>
|
</attack>
|
||||||
</attacks>
|
</attacks>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<monster name="Destroyer" nameDescription="a destroyer" race="undead" experience="2500" speed="270" manacost="0">
|
<monster name="Destroyer" nameDescription="a destroyer" race="undead" experience="2500" speed="135" manacost="0">
|
||||||
<health now="3700" max="3700" />
|
<health now="3700" max="3700" />
|
||||||
<look type="236" corpse="6319" />
|
<look type="236" corpse="6319" />
|
||||||
<targetchange interval="4000" chance="10" />
|
<targetchange interval="4000" chance="10" />
|
||||||
@ -22,7 +22,7 @@
|
|||||||
</attack>
|
</attack>
|
||||||
</attacks>
|
</attacks>
|
||||||
<defenses armor="30" defense="30">
|
<defenses armor="30" defense="30">
|
||||||
<defense name="speed" interval="2000" chance="15" speedchange="420" duration="5000">
|
<defense name="speed" interval="2000" chance="15" speedchange="70" duration="5000">
|
||||||
<attribute key="areaEffect" value="redshimmer" />
|
<attribute key="areaEffect" value="redshimmer" />
|
||||||
</defense>
|
</defense>
|
||||||
</defenses>
|
</defenses>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<monster name="Diabolic Imp" nameDescription="a diabolic imp" race="fire" experience="1950" speed="220" manacost="0">
|
<monster name="Diabolic Imp" nameDescription="a diabolic imp" race="fire" experience="1950" speed="110" manacost="0">
|
||||||
<health now="2900" max="2900" />
|
<health now="2900" max="2900" />
|
||||||
<look type="237" corpse="6363" />
|
<look type="237" corpse="6363" />
|
||||||
<targetchange interval="4000" chance="10" />
|
<targetchange interval="4000" chance="10" />
|
||||||
@ -31,7 +31,7 @@
|
|||||||
<defense name="healing" interval="2000" chance="10" min="650" max="800">
|
<defense name="healing" interval="2000" chance="10" min="650" max="800">
|
||||||
<attribute key="areaEffect" value="blueshimmer" />
|
<attribute key="areaEffect" value="blueshimmer" />
|
||||||
</defense>
|
</defense>
|
||||||
<defense name="speed" interval="2000" chance="15" speedchange="800" duration="2000">
|
<defense name="speed" interval="2000" chance="15" speedchange="50" duration="2000">
|
||||||
<attribute key="areaEffect" value="redshimmer" />
|
<attribute key="areaEffect" value="redshimmer" />
|
||||||
</defense>
|
</defense>
|
||||||
<defense name="invisible" interval="2000" chance="10" duration="1000">
|
<defense name="invisible" interval="2000" chance="10" duration="1000">
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<monster name="Dracola" nameDescription="Dracola" race="undead" experience="11000" speed="410" manacost="0">
|
<monster name="Dracola" nameDescription="Dracola" race="undead" experience="11000" speed="205" manacost="0">
|
||||||
<health now="16200" max="16200" />
|
<health now="16200" max="16200" />
|
||||||
<look type="231" corpse="6305" />
|
<look type="231" corpse="6305" />
|
||||||
<targetchange interval="2000" chance="5" />
|
<targetchange interval="2000" chance="5" />
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<monster name="Fury" nameDescription="a fury" race="blood" experience="4500" speed="250" manacost="0">
|
<monster name="Fury" nameDescription="a fury" race="blood" experience="4500" speed="125" manacost="0">
|
||||||
<health now="4100" max="4100" />
|
<health now="4100" max="4100" />
|
||||||
<look type="149" head="94" body="77" legs="96" feet="0" addons="3" corpse="6081" />
|
<look type="149" head="94" body="77" legs="96" feet="0" addons="3" corpse="6081" />
|
||||||
<targetchange interval="4000" chance="10" />
|
<targetchange interval="4000" chance="10" />
|
||||||
@ -34,13 +34,13 @@
|
|||||||
<attribute key="shootEffect" value="suddendeath" />
|
<attribute key="shootEffect" value="suddendeath" />
|
||||||
<attribute key="areaEffect" value="smallclouds" />
|
<attribute key="areaEffect" value="smallclouds" />
|
||||||
</attack>
|
</attack>
|
||||||
<attack name="speed" interval="2000" chance="15" range="7" speedchange="-800" duration="30000">
|
<attack name="speed" interval="2000" chance="15" range="7" speedchange="-100" duration="30000">
|
||||||
<attribute key="shootEffect" value="suddendeath" />
|
<attribute key="shootEffect" value="suddendeath" />
|
||||||
<attribute key="areaEffect" value="smallclouds" />
|
<attribute key="areaEffect" value="smallclouds" />
|
||||||
</attack>
|
</attack>
|
||||||
</attacks>
|
</attacks>
|
||||||
<defenses armor="20" defense="20">
|
<defenses armor="20" defense="20">
|
||||||
<defense name="speed" interval="2000" chance="15" speedchange="800" duration="5000">
|
<defense name="speed" interval="2000" chance="15" speedchange="60" duration="5000">
|
||||||
<attribute key="areaEffect" value="redshimmer" />
|
<attribute key="areaEffect" value="redshimmer" />
|
||||||
</defense>
|
</defense>
|
||||||
</defenses>
|
</defenses>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<monster name="Grynch Clan Goblin" nameDescription="a Grynch Clan Goblin" race="blood" experience="4" speed="870" manacost="0">
|
<monster name="Grynch Clan Goblin" nameDescription="a Grynch Clan Goblin" race="blood" experience="4" speed="435" manacost="0">
|
||||||
<health now="80" max="80" />
|
<health now="80" max="80" />
|
||||||
<look type="61" corpse="6002" />
|
<look type="61" corpse="6002" />
|
||||||
<targetchange interval="5000" chance="0" />
|
<targetchange interval="5000" chance="0" />
|
||||||
@ -18,7 +18,7 @@
|
|||||||
<attacks>
|
<attacks>
|
||||||
</attacks>
|
</attacks>
|
||||||
<defenses armor="10" defense="12">
|
<defenses armor="10" defense="12">
|
||||||
<defense name="speed" interval="1000" chance="15" speedchange="500" duration="5000">
|
<defense name="speed" interval="1000" chance="15" speedchange="100" duration="5000">
|
||||||
<attribute key="areaEffect" value="redshimmer" />
|
<attribute key="areaEffect" value="redshimmer" />
|
||||||
</defense>
|
</defense>
|
||||||
</defenses>
|
</defenses>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<monster name="Hand Of Cursed Fate" nameDescription="a hand of cursed fate" race="blood" experience="5000" speed="260" manacost="0">
|
<monster name="Hand Of Cursed Fate" nameDescription="a hand of cursed fate" race="blood" experience="5000" speed="130" manacost="0">
|
||||||
<health now="7500" max="7500" />
|
<health now="7500" max="7500" />
|
||||||
<look type="230" corpse="6311" />
|
<look type="230" corpse="6311" />
|
||||||
<targetchange interval="4000" chance="10" />
|
<targetchange interval="4000" chance="10" />
|
||||||
@ -26,7 +26,7 @@
|
|||||||
</attack>
|
</attack>
|
||||||
</attacks>
|
</attacks>
|
||||||
<defenses armor="25" defense="25">
|
<defenses armor="25" defense="25">
|
||||||
<defense name="speed" interval="2000" chance="15" speedchange="1000" duration="5000">
|
<defense name="speed" interval="2000" chance="15" speedchange="70" duration="5000">
|
||||||
<attribute key="areaEffect" value="redshimmer" />
|
<attribute key="areaEffect" value="redshimmer" />
|
||||||
</defense>
|
</defense>
|
||||||
<defense name="invisible" interval="2000" chance="10" duration="8000">
|
<defense name="invisible" interval="2000" chance="10" duration="8000">
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<monster name="Hellfire Fighter" nameDescription="a hellfire fighter" race="fire" experience="3900" speed="220" manacost="0">
|
<monster name="Hellfire Fighter" nameDescription="a hellfire fighter" race="fire" experience="3900" speed="110" manacost="0">
|
||||||
<health now="3800" max="3800" />
|
<health now="3800" max="3800" />
|
||||||
<look type="243" corpse="6323" />
|
<look type="243" corpse="6323" />
|
||||||
<targetchange interval="4000" chance="10" />
|
<targetchange interval="4000" chance="10" />
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<monster name="Hellhound" nameDescription="a hellhound" race="blood" experience="6800" speed="280" manacost="0">
|
<monster name="Hellhound" nameDescription="a hellhound" race="blood" experience="6800" speed="140" manacost="0">
|
||||||
<health now="7500" max="7500" />
|
<health now="7500" max="7500" />
|
||||||
<look type="240" corpse="6331" />
|
<look type="240" corpse="6331" />
|
||||||
<targetchange interval="4000" chance="10" />
|
<targetchange interval="4000" chance="10" />
|
||||||
@ -39,7 +39,7 @@
|
|||||||
</attack>
|
</attack>
|
||||||
</attacks>
|
</attacks>
|
||||||
<defenses armor="40" defense="40">
|
<defenses armor="40" defense="40">
|
||||||
<defense name="speed" interval="2000" chance="15" speedchange="320" duration="5000">
|
<defense name="speed" interval="2000" chance="15" speedchange="70" duration="5000">
|
||||||
<attribute key="areaEffect" value="redshimmer" />
|
<attribute key="areaEffect" value="redshimmer" />
|
||||||
</defense>
|
</defense>
|
||||||
<defense name="healing" interval="2000" chance="20" min="220" max="425">
|
<defense name="healing" interval="2000" chance="20" min="220" max="425">
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<monster name="Juggernaut" nameDescription="a juggernaut" race="blood" experience="14000" speed="290" manacost="0">
|
<monster name="Juggernaut" nameDescription="a juggernaut" race="blood" experience="14000" speed="145" manacost="0">
|
||||||
<health now="20000" max="20000" />
|
<health now="20000" max="20000" />
|
||||||
<look type="244" corpse="6335" />
|
<look type="244" corpse="6335" />
|
||||||
<targetchange interval="4000" chance="10" />
|
<targetchange interval="4000" chance="10" />
|
||||||
@ -22,7 +22,7 @@
|
|||||||
</attack>
|
</attack>
|
||||||
</attacks>
|
</attacks>
|
||||||
<defenses armor="60" defense="60">
|
<defenses armor="60" defense="60">
|
||||||
<defense name="speed" interval="2000" chance="15" speedchange="520" duration="5000">
|
<defense name="speed" interval="2000" chance="15" speedchange="72" duration="5000">
|
||||||
<attribute key="areaEffect" value="redshimmer" />
|
<attribute key="areaEffect" value="redshimmer" />
|
||||||
</defense>
|
</defense>
|
||||||
<defense name="healing" interval="2000" chance="15" min="400" max="900">
|
<defense name="healing" interval="2000" chance="15" min="400" max="900">
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<monster name="Lost Soul" nameDescription="a lost soul" race="undead" experience="4000" speed="220" manacost="0">
|
<monster name="Lost Soul" nameDescription="a lost soul" race="undead" experience="4000" speed="110" manacost="0">
|
||||||
<health now="5800" max="5800" />
|
<health now="5800" max="5800" />
|
||||||
<look type="232" corpse="6310" />
|
<look type="232" corpse="6310" />
|
||||||
<targetchange interval="4000" chance="15" />
|
<targetchange interval="4000" chance="15" />
|
||||||
@ -20,7 +20,7 @@
|
|||||||
<attack name="death" interval="2000" chance="10" length="3" spread="0" target="0" min="-40" max="-210">
|
<attack name="death" interval="2000" chance="10" length="3" spread="0" target="0" min="-40" max="-210">
|
||||||
<attribute key="areaEffect" value="redshimmer" />
|
<attribute key="areaEffect" value="redshimmer" />
|
||||||
</attack>
|
</attack>
|
||||||
<attack name="speed" interval="2000" chance="20" radius="6" target="0" speedchange="-400" duration="4000">
|
<attack name="speed" interval="2000" chance="20" radius="6" target="0" speedchange="-100" duration="4000">
|
||||||
<attribute key="areaEffect" value="smallclouds" />
|
<attribute key="areaEffect" value="smallclouds" />
|
||||||
</attack>
|
</attack>
|
||||||
</attacks>
|
</attacks>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<monster name="Massacre" nameDescription="Massacre" race="blood" experience="9800" speed="390" manacost="0">
|
<monster name="Massacre" nameDescription="Massacre" race="blood" experience="9800" speed="195" manacost="0">
|
||||||
<health now="30000" max="30000" />
|
<health now="30000" max="30000" />
|
||||||
<look type="244" corpse="6335" />
|
<look type="244" corpse="6335" />
|
||||||
<targetchange interval="60000" chance="0" />
|
<targetchange interval="60000" chance="0" />
|
||||||
@ -22,7 +22,7 @@
|
|||||||
</attack>
|
</attack>
|
||||||
</attacks>
|
</attacks>
|
||||||
<defenses armor="15" defense="15">
|
<defenses armor="15" defense="15">
|
||||||
<defense name="speed" interval="2000" chance="12" speedchange="380" duration="4000">
|
<defense name="speed" interval="2000" chance="12" speedchange="90" duration="4000">
|
||||||
<attribute key="areaEffect" value="redshimmer" />
|
<attribute key="areaEffect" value="redshimmer" />
|
||||||
</defense>
|
</defense>
|
||||||
</defenses>
|
</defenses>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<monster name="Mr. Punish" nameDescription="Mr. Punish" race="undead" experience="5500" speed="470" manacost="0">
|
<monster name="Mr. Punish" nameDescription="Mr. Punish" race="undead" experience="5500" speed="235" manacost="0">
|
||||||
<health now="12000" max="12000" />
|
<health now="12000" max="12000" />
|
||||||
<look type="234" corpse="6330" />
|
<look type="234" corpse="6330" />
|
||||||
<targetchange interval="2000" chance="5" />
|
<targetchange interval="2000" chance="5" />
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<monster name="Munster" nameDescription="Munster" race="blood" experience="35" speed="200" manacost="0">
|
<monster name="Munster" nameDescription="Munster" race="blood" experience="35" speed="100" manacost="0">
|
||||||
<health now="58" max="58" />
|
<health now="58" max="58" />
|
||||||
<look type="56" corpse="5964" />
|
<look type="56" corpse="5964" />
|
||||||
<targetchange interval="10000" chance="5" />
|
<targetchange interval="10000" chance="5" />
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<monster name="Nightmare" nameDescription="a nightmare" race="blood" experience="2150" speed="240" manacost="0">
|
<monster name="Nightmare" nameDescription="a nightmare" race="blood" experience="2150" speed="120" manacost="0">
|
||||||
<health now="2700" max="2700" />
|
<health now="2700" max="2700" />
|
||||||
<look type="245" corpse="6339" />
|
<look type="245" corpse="6339" />
|
||||||
<targetchange interval="4000" chance="10" />
|
<targetchange interval="4000" chance="10" />
|
||||||
@ -30,7 +30,7 @@
|
|||||||
<defense name="healing" interval="2000" chance="10" min="60" max="100">
|
<defense name="healing" interval="2000" chance="10" min="60" max="100">
|
||||||
<attribute key="areaEffect" value="blueshimmer" />
|
<attribute key="areaEffect" value="blueshimmer" />
|
||||||
</defense>
|
</defense>
|
||||||
<defense name="speed" interval="2000" chance="15" speedchange="420" duration="5000">
|
<defense name="speed" interval="2000" chance="15" speedchange="60" duration="5000">
|
||||||
<attribute key="areaEffect" value="redshimmer" />
|
<attribute key="areaEffect" value="redshimmer" />
|
||||||
</defense>
|
</defense>
|
||||||
</defenses>
|
</defenses>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<monster name="Nomad" nameDescription="a nomad" race="blood" experience="60" speed="205" manacost="420">
|
<monster name="Nomad" nameDescription="a nomad" race="blood" experience="60" speed="100" manacost="420">
|
||||||
<health now="160" max="160" />
|
<health now="160" max="160" />
|
||||||
<look type="146" head="114" body="20" legs="22" feet="2" addons="2" corpse="6080" />
|
<look type="146" head="114" body="20" legs="22" feet="2" addons="2" corpse="6080" />
|
||||||
<targetchange interval="4000" chance="10" />
|
<targetchange interval="4000" chance="10" />
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<monster name="Phantasm" nameDescription="a phantasm" race="undead" experience="0" speed="240" manacost="0">
|
<monster name="Phantasm" nameDescription="a phantasm" race="undead" experience="0" speed="120" manacost="0">
|
||||||
<health now="65" max="65" />
|
<health now="65" max="65" />
|
||||||
<look type="241" head="20" corpse="6343" />
|
<look type="241" head="20" corpse="6343" />
|
||||||
<targetchange interval="4000" chance="10" />
|
<targetchange interval="4000" chance="10" />
|
||||||
@ -33,7 +33,7 @@
|
|||||||
<defense name="healing" interval="2000" chance="30" min="40" max="65">
|
<defense name="healing" interval="2000" chance="30" min="40" max="65">
|
||||||
<attribute key="areaEffect" value="blueshimmer" />
|
<attribute key="areaEffect" value="blueshimmer" />
|
||||||
</defense>
|
</defense>
|
||||||
<defense name="speed" interval="2000" chance="10" speedchange="500" duration="6000">
|
<defense name="speed" interval="2000" chance="10" speedchange="60" duration="6000">
|
||||||
<attribute key="areaEffect" value="redshimmer" />
|
<attribute key="areaEffect" value="redshimmer" />
|
||||||
</defense>
|
</defense>
|
||||||
<defense name="invisible" interval="2000" chance="25" duration="8000">
|
<defense name="invisible" interval="2000" chance="25" duration="8000">
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<monster name="Phantasm" nameDescription="a phantasm" race="undead" experience="4400" speed="240" manacost="0">
|
<monster name="Phantasm" nameDescription="a phantasm" race="undead" experience="4400" speed="120" manacost="0">
|
||||||
<health now="3950" max="3950" />
|
<health now="3950" max="3950" />
|
||||||
<look type="241" head="20" corpse="6343" />
|
<look type="241" head="20" corpse="6343" />
|
||||||
<targetchange interval="4000" chance="10" />
|
<targetchange interval="4000" chance="10" />
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<monster name="Plaguesmith" nameDescription="a plaguesmith" race="venom" experience="4500" speed="240" manacost="0">
|
<monster name="Plaguesmith" nameDescription="a plaguesmith" race="venom" experience="4500" speed="120" manacost="0">
|
||||||
<health now="8250" max="8250" />
|
<health now="8250" max="8250" />
|
||||||
<look type="247" corpse="6515" />
|
<look type="247" corpse="6515" />
|
||||||
<targetchange interval="4000" chance="10" />
|
<targetchange interval="4000" chance="10" />
|
||||||
@ -23,7 +23,7 @@
|
|||||||
<attack name="poison" interval="2000" chance="10" length="5" spread="3" min="-100" max="-350">
|
<attack name="poison" interval="2000" chance="10" length="5" spread="3" min="-100" max="-350">
|
||||||
<attribute key="areaEffect" value="yellowbubble" />
|
<attribute key="areaEffect" value="yellowbubble" />
|
||||||
</attack>
|
</attack>
|
||||||
<attack name="speed" interval="2000" chance="15" radius="4" target="0" speedchange="-800" duration="30000">
|
<attack name="speed" interval="2000" chance="15" radius="4" target="0" speedchange="-100" duration="30000">
|
||||||
<attribute key="areaEffect" value="poison" />
|
<attribute key="areaEffect" value="poison" />
|
||||||
</attack>
|
</attack>
|
||||||
</attacks>
|
</attacks>
|
||||||
@ -31,7 +31,7 @@
|
|||||||
<defense name="healing" interval="2000" chance="10" min="200" max="280">
|
<defense name="healing" interval="2000" chance="10" min="200" max="280">
|
||||||
<attribute key="areaEffect" value="blueshimmer" />
|
<attribute key="areaEffect" value="blueshimmer" />
|
||||||
</defense>
|
</defense>
|
||||||
<defense name="speed" interval="2000" chance="15" speedchange="440" duration="5000">
|
<defense name="speed" interval="2000" chance="15" speedchange="60" duration="5000">
|
||||||
<attribute key="areaEffect" value="redshimmer" />
|
<attribute key="areaEffect" value="redshimmer" />
|
||||||
</defense>
|
</defense>
|
||||||
</defenses>
|
</defenses>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<monster name="Son Of Verminor" nameDescription="a son of verminor" race="venom" experience="5900" speed="240" manacost="0">
|
<monster name="Son Of Verminor" nameDescription="a son of verminor" race="venom" experience="5900" speed="120" manacost="0">
|
||||||
<health now="8500" max="8500" />
|
<health now="8500" max="8500" />
|
||||||
<look type="19" corpse="2121" />
|
<look type="19" corpse="2121" />
|
||||||
<targetchange interval="4000" chance="10" />
|
<targetchange interval="4000" chance="10" />
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<monster name="Spectre" nameDescription="a spectre" race="undead" experience="2100" speed="230" manacost="0">
|
<monster name="Spectre" nameDescription="a spectre" race="undead" experience="2100" speed="115" manacost="0">
|
||||||
<health now="1350" max="1350" />
|
<health now="1350" max="1350" />
|
||||||
<look type="235" head="20" corpse="6347" />
|
<look type="235" head="20" corpse="6347" />
|
||||||
<targetchange interval="4000" chance="10" />
|
<targetchange interval="4000" chance="10" />
|
||||||
@ -33,7 +33,7 @@
|
|||||||
<defense name="healing" interval="2000" chance="10" min="370" max="700">
|
<defense name="healing" interval="2000" chance="10" min="370" max="700">
|
||||||
<attribute key="areaEffect" value="blueshimmer" />
|
<attribute key="areaEffect" value="blueshimmer" />
|
||||||
</defense>
|
</defense>
|
||||||
<defense name="speed" interval="2000" chance="15" speedchange="290" duration="5000">
|
<defense name="speed" interval="2000" chance="15" speedchange="60" duration="5000">
|
||||||
<attribute key="areaEffect" value="redshimmer" />
|
<attribute key="areaEffect" value="redshimmer" />
|
||||||
</defense>
|
</defense>
|
||||||
</defenses>
|
</defenses>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<monster name="The Handmaiden" nameDescription="the Handmaiden" race="blood" experience="3850" speed="450" manacost="0">
|
<monster name="The Handmaiden" nameDescription="the Handmaiden" race="blood" experience="3850" speed="225" manacost="0">
|
||||||
<health now="14500" max="14500" />
|
<health now="14500" max="14500" />
|
||||||
<look type="230" corpse="6311" />
|
<look type="230" corpse="6311" />
|
||||||
<targetchange interval="5000" chance="8" />
|
<targetchange interval="5000" chance="8" />
|
||||||
@ -23,7 +23,7 @@
|
|||||||
<attack name="drunk" interval="1000" chance="12" range="1" target="1" />
|
<attack name="drunk" interval="1000" chance="12" range="1" target="1" />
|
||||||
</attacks>
|
</attacks>
|
||||||
<defenses armor="25" defense="35">
|
<defenses armor="25" defense="35">
|
||||||
<defense name="speed" interval="3000" chance="12" speedchange="380" duration="8000">
|
<defense name="speed" interval="3000" chance="12" speedchange="100" duration="8000">
|
||||||
<attribute key="areaEffect" value="redshimmer" />
|
<attribute key="areaEffect" value="redshimmer" />
|
||||||
</defense>
|
</defense>
|
||||||
<defense name="invisible" interval="4000" chance="50" duration="6000">
|
<defense name="invisible" interval="4000" chance="50" duration="6000">
|
||||||
@ -32,7 +32,7 @@
|
|||||||
<defense name="healing" interval="2000" chance="50" min="100" max="250">
|
<defense name="healing" interval="2000" chance="50" min="100" max="250">
|
||||||
<attribute key="areaEffect" value="blueshimmer" />
|
<attribute key="areaEffect" value="blueshimmer" />
|
||||||
</defense>
|
</defense>
|
||||||
<defense name="speed" interval="1000" chance="35" speedchange="370" duration="30000">
|
<defense name="speed" interval="1000" chance="35" speedchange="100" duration="30000">
|
||||||
<attribute key="areaEffect" value="redshimmer" />
|
<attribute key="areaEffect" value="redshimmer" />
|
||||||
</defense>
|
</defense>
|
||||||
</defenses>
|
</defenses>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<monster name="The Imperor" nameDescription="The Imperor" race="fire" experience="8000" speed="330" manacost="0">
|
<monster name="The Imperor" nameDescription="The Imperor" race="fire" experience="8000" speed="165" manacost="0">
|
||||||
<health now="15000" max="15000" />
|
<health now="15000" max="15000" />
|
||||||
<look type="237" corpse="6363" />
|
<look type="237" corpse="6363" />
|
||||||
<targetchange interval="5000" chance="5" />
|
<targetchange interval="5000" chance="5" />
|
||||||
@ -34,7 +34,7 @@
|
|||||||
<defense name="healing" interval="2000" chance="50" min="175" max="505">
|
<defense name="healing" interval="2000" chance="50" min="175" max="505">
|
||||||
<attribute key="areaEffect" value="blueshimmer" />
|
<attribute key="areaEffect" value="blueshimmer" />
|
||||||
</defense>
|
</defense>
|
||||||
<defense name="speed" interval="2000" chance="12" speedchange="380" duration="4000">
|
<defense name="speed" interval="2000" chance="12" speedchange="80" duration="4000">
|
||||||
<attribute key="areaEffect" value="redshimmer" />
|
<attribute key="areaEffect" value="redshimmer" />
|
||||||
</defense>
|
</defense>
|
||||||
<defense name="invisible" interval="3000" chance="20" duration="5000">
|
<defense name="invisible" interval="3000" chance="20" duration="5000">
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<monster name="The Plasmother" nameDescription="The Plasmother" race="venom" experience="8900" speed="310" manacost="0">
|
<monster name="The Plasmother" nameDescription="The Plasmother" race="venom" experience="8900" speed="155" manacost="0">
|
||||||
<health now="7500" max="7500" />
|
<health now="7500" max="7500" />
|
||||||
<look type="238" corpse="6532" />
|
<look type="238" corpse="6532" />
|
||||||
<targetchange interval="5500" chance="10" />
|
<targetchange interval="5500" chance="10" />
|
||||||
@ -17,7 +17,7 @@
|
|||||||
</flags>
|
</flags>
|
||||||
<attacks>
|
<attacks>
|
||||||
<attack name="melee" interval="2000" skill="30" attack="50" />
|
<attack name="melee" interval="2000" skill="30" attack="50" />
|
||||||
<attack name="speed" interval="1000" chance="8" radius="6" target="0" speedchange="-800" duration="10000">
|
<attack name="speed" interval="1000" chance="8" radius="6" target="0" speedchange="-100" duration="10000">
|
||||||
<attribute key="areaEffect" value="poison" />
|
<attribute key="areaEffect" value="poison" />
|
||||||
</attack>
|
</attack>
|
||||||
<attack name="earth" interval="2000" chance="15" target="0" radius="4" min="-200" max="-350">
|
<attack name="earth" interval="2000" chance="15" target="0" radius="4" min="-200" max="-350">
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<monster name="Undead Dragon" nameDescription="an undead dragon" race="undead" experience="7200" speed="250" manacost="0">
|
<monster name="Undead Dragon" nameDescription="an undead dragon" race="undead" experience="7200" speed="125" manacost="0">
|
||||||
<health now="8350" max="8350" />
|
<health now="8350" max="8350" />
|
||||||
<look type="231" corpse="6305" />
|
<look type="231" corpse="6305" />
|
||||||
<targetchange interval="4000" chance="10" />
|
<targetchange interval="4000" chance="10" />
|
||||||
|
@ -209,7 +209,7 @@
|
|||||||
<monster name="tortoise" file="781/tortoise.xml" />
|
<monster name="tortoise" file="781/tortoise.xml" />
|
||||||
<monster name="magic pillar" file="781/magic pillar.xml" />
|
<monster name="magic pillar" file="781/magic pillar.xml" />
|
||||||
|
|
||||||
<!-- 790
|
<!-- 790 -->
|
||||||
<monster name="apprentice sheng" file="790/apprentice sheng.xml" />
|
<monster name="apprentice sheng" file="790/apprentice sheng.xml" />
|
||||||
<monster name="betrayed wraith" file="790/betrayed wraith.xml" />
|
<monster name="betrayed wraith" file="790/betrayed wraith.xml" />
|
||||||
<monster name="blightwalker" file="790/blightwalker.xml" />
|
<monster name="blightwalker" file="790/blightwalker.xml" />
|
||||||
@ -239,6 +239,6 @@
|
|||||||
<monster name="the handmaiden" file="790/the handmaiden.xml" />
|
<monster name="the handmaiden" file="790/the handmaiden.xml" />
|
||||||
<monster name="the imperor" file="790/the imperor.xml" />
|
<monster name="the imperor" file="790/the imperor.xml" />
|
||||||
<monster name="the plasmother" file="790/the plasmother.xml" />
|
<monster name="the plasmother" file="790/the plasmother.xml" />
|
||||||
<monster name="undead dragon" file="790/undead dragon.xml" /> -->
|
<monster name="undead dragon" file="790/undead dragon.xml" />
|
||||||
<monster name="wyvern" file="790/wyvern.xml" />
|
<monster name="wyvern" file="790/wyvern.xml" />
|
||||||
</monsters>
|
</monsters>
|
Binary file not shown.
@ -30423,35 +30423,36 @@
|
|||||||
<monster name="scorpion" x="0" y="0" z="10" spawntime="600" />
|
<monster name="scorpion" x="0" y="0" z="10" spawntime="600" />
|
||||||
<monster name="scorpion" x="3" y="3" z="10" spawntime="600" />
|
<monster name="scorpion" x="3" y="3" z="10" spawntime="600" />
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn centerx="32824" centery="32320" centerz="10" radius="4">
|
<spawn centerx="32822" centery="32320" centerz="10" radius="1">
|
||||||
<monster name="demon skeleton" x="-3" y="0" z="10" spawntime="600" />
|
<monster name="diabolic imp" x="0" y="0" z="10" spawntime="60" />
|
||||||
<monster name="demon skeleton" x="0" y="0" z="10" spawntime="600" />
|
|
||||||
<monster name="ghoul" x="3" y="1" z="10" spawntime="600" />
|
|
||||||
<monster name="demon skeleton" x="1" y="2" z="10" spawntime="600" />
|
|
||||||
<monster name="ghoul" x="2" y="3" z="10" spawntime="600" />
|
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn centerx="32826" centery="32323" centerz="10" radius="3" />
|
<spawn centerx="32828" centery="32320" centerz="10" radius="1">
|
||||||
<spawn centerx="32843" centery="32326" centerz="10" radius="4">
|
<monster name="spectre" x="0" y="0" z="10" spawntime="60" />
|
||||||
<monster name="demon skeleton" x="-1" y="0" z="10" spawntime="600" />
|
</spawn>
|
||||||
<monster name="demon skeleton" x="0" y="0" z="10" spawntime="600" />
|
<spawn centerx="32821" centery="32322" centerz="10" radius="1">
|
||||||
<monster name="demon skeleton" x="2" y="0" z="10" spawntime="600" />
|
<monster name="diabolic imp" x="0" y="0" z="10" spawntime="60" />
|
||||||
<monster name="ghoul" x="1" y="1" z="10" spawntime="600" />
|
</spawn>
|
||||||
<monster name="ghoul" x="-1" y="3" z="10" spawntime="600" />
|
<spawn centerx="32842" centery="32325" centerz="10" radius="1">
|
||||||
|
<monster name="spectre" x="0" y="0" z="10" spawntime="60" />
|
||||||
|
</spawn>
|
||||||
|
<spawn centerx="32845" centery="32328" centerz="10" radius="1">
|
||||||
|
<monster name="diabolic imp" x="0" y="0" z="10" spawntime="60" />
|
||||||
|
</spawn>
|
||||||
|
<spawn centerx="32841" centery="32329" centerz="10" radius="1">
|
||||||
|
<monster name="nightmare" x="0" y="0" z="10" spawntime="60" />
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn centerx="32842" centery="32329" centerz="10" radius="3" />
|
|
||||||
<spawn centerx="32765" centery="32332" centerz="10" radius="4">
|
<spawn centerx="32765" centery="32332" centerz="10" radius="4">
|
||||||
<monster name="demon skeleton" x="0" y="0" z="10" spawntime="600" />
|
<monster name="demon skeleton" x="0" y="0" z="10" spawntime="600" />
|
||||||
<monster name="demon skeleton" x="0" y="1" z="10" spawntime="600" />
|
<monster name="demon skeleton" x="0" y="1" z="10" spawntime="600" />
|
||||||
<monster name="demon skeleton" x="3" y="3" z="10" spawntime="600" />
|
<monster name="demon skeleton" x="3" y="3" z="10" spawntime="600" />
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn centerx="32843" centery="32338" centerz="10" radius="4">
|
<spawn centerx="32843" centery="32338" centerz="10" radius="1">
|
||||||
<monster name="demon skeleton" x="0" y="0" z="10" spawntime="600" />
|
<monster name="nightmare" x="0" y="0" z="10" spawntime="60" />
|
||||||
<monster name="ghoul" x="-3" y="2" z="10" spawntime="600" />
|
</spawn>
|
||||||
<monster name="demon skeleton" x="1" y="2" z="10" spawntime="600" />
|
<spawn centerx="32842" centery="32341" centerz="10" radius="1">
|
||||||
<monster name="ghoul" x="-1" y="3" z="10" spawntime="600" />
|
<monster name="nightmare" x="1" y="-1" z="10" spawntime="60" />
|
||||||
<monster name="demon skeleton" x="1" y="3" z="10" spawntime="600" />
|
<monster name="spectre" x="0" y="0" z="10" spawntime="60" />
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn centerx="32842" centery="32341" centerz="10" radius="3" />
|
|
||||||
<spawn centerx="32781" centery="32342" centerz="10" radius="4">
|
<spawn centerx="32781" centery="32342" centerz="10" radius="4">
|
||||||
<monster name="demon skeleton" x="-2" y="-2" z="10" spawntime="600" />
|
<monster name="demon skeleton" x="-2" y="-2" z="10" spawntime="600" />
|
||||||
<monster name="demon skeleton" x="0" y="0" z="10" spawntime="600" />
|
<monster name="demon skeleton" x="0" y="0" z="10" spawntime="600" />
|
||||||
@ -30463,18 +30464,17 @@
|
|||||||
<monster name="scorpion" x="0" y="0" z="10" spawntime="600" />
|
<monster name="scorpion" x="0" y="0" z="10" spawntime="600" />
|
||||||
<monster name="scorpion" x="1" y="1" z="10" spawntime="600" />
|
<monster name="scorpion" x="1" y="1" z="10" spawntime="600" />
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn centerx="32824" centery="32344" centerz="10" radius="4">
|
|
||||||
<monster name="demon skeleton" x="0" y="-1" z="10" spawntime="600" />
|
|
||||||
<monster name="demon skeleton" x="0" y="0" z="10" spawntime="600" />
|
|
||||||
<monster name="demon skeleton" x="-2" y="2" z="10" spawntime="600" />
|
|
||||||
<monster name="ghoul" x="1" y="2" z="10" spawntime="600" />
|
|
||||||
<monster name="ghoul" x="2" y="3" z="10" spawntime="600" />
|
|
||||||
</spawn>
|
|
||||||
<spawn centerx="32770" centery="32345" centerz="10" radius="3">
|
<spawn centerx="32770" centery="32345" centerz="10" radius="3">
|
||||||
<monster name="demon skeleton" x="-1" y="0" z="10" spawntime="600" />
|
<monster name="demon skeleton" x="-1" y="0" z="10" spawntime="600" />
|
||||||
<monster name="demon skeleton" x="0" y="0" z="10" spawntime="600" />
|
<monster name="demon skeleton" x="0" y="0" z="10" spawntime="600" />
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn centerx="32826" centery="32347" centerz="10" radius="3" />
|
<spawn centerx="32823" centery="32345" centerz="10" radius="1">
|
||||||
|
<monster name="nightmare" x="0" y="-1" z="10" spawntime="60" />
|
||||||
|
<monster name="nightmare" x="0" y="0" z="10" spawntime="60" />
|
||||||
|
</spawn>
|
||||||
|
<spawn centerx="32823" centery="32347" centerz="10" radius="1">
|
||||||
|
<monster name="spectre" x="0" y="0" z="10" spawntime="60" />
|
||||||
|
</spawn>
|
||||||
<spawn centerx="32756" centery="32349" centerz="10" radius="5">
|
<spawn centerx="32756" centery="32349" centerz="10" radius="5">
|
||||||
<monster name="demon skeleton" x="-1" y="-3" z="10" spawntime="600" />
|
<monster name="demon skeleton" x="-1" y="-3" z="10" spawntime="600" />
|
||||||
<monster name="demon skeleton" x="1" y="-2" z="10" spawntime="600" />
|
<monster name="demon skeleton" x="1" y="-2" z="10" spawntime="600" />
|
||||||
|
Loading…
x
Reference in New Issue
Block a user