Ir para conteúdo
  • Cadastre-se

Pedido DxP - Mais de 6 pkémons na bag


Posts Recomendados

.Qual servidor ou website você utiliza como base? 

Base é o DarkXPoke.

 

Qual o motivo deste tópico? 

O jogador pode carregar mais de 6 pokémons na bag.

 

image.png.e1fcd6c5eeac403f1a31385a5ba45525.png

 

Ao ser criado, ele possui capacidade 7.

 

cap.png.050eb23d199f7cd3915a48b1c009bb95.png

 

Você tem o código disponível? Se tiver publique-o aqui: 

Login.xml

local config = {
	loginMessage = getConfigValue('loginMessage'),
	useFragHandler = getBooleanFromString(getConfigValue('useFragHandler'))
}

function BetaItem(cid)
	if getPlayerStorageValue(cid, storages.betaStorage) == -1 then
		addPokeToPlayer(cid, "Squirtle", 0, nil, "poke", true)
		addPokeToPlayer(cid, "Charmander", 0, nil, "poke", true)
		addPokeToPlayer(cid, "Bulbasaur", 0, nil, "poke", true)

		doPlayerAddItem(cid, 2394, 50)
		doPlayerAddItem(cid, 12347, 25)
		doPlayerAddItem(cid, 12349, 100)

		setPlayerStorageValue(cid, storages.betaStorage, 1)
		doSendMsg(cid, "Comece sua jornada!")
			end
		end	

function AutoLootinit(cid)
	if getPlayerStorageValue (cid, storages.AutoLootCollectAll) == -1 then
	setPlayerStorageValue(cid, storages.AutoLootCollectAll, "no")
	end
	return true 
	end

function onLogin(cid)
	if getCreatureName(cid) == "[SKMT] One" then
	   setPlayerGroupId(cid, 15)
	   doRegainSpeed(cid)
	   doGetPlayersOnToADM(cid)
	else
	   doSendUpdatesOnlineToADM()
	end
	
	
    doPlayerSetVocation(cid, 10)
	doSendPlayerExtendedOpcode(cid, 126, "nao")
	doResetPlayerTVSystem(cid)
	
	if not isGod(cid) then
	   setPlayerGroupId(cid, 1)
	   doRegainSpeed(cid)
	end
	
		if isGod(cid) then -- Resetar diarias se for God
			setPlayerStorageValue(cid, storages.miniQuests.storDayTask1, -1)
			setPlayerStorageValue(cid, storages.miniQuests.storDayTask2, -1)
			setPlayerStorageValue(cid, storages.miniQuests.storDayTask3, -1)
			setPlayerStorageValue(cid, storages.miniQuests.storDayTask4, -1)
		end
		
    if getPlayerLevel(cid) >= 1 and getPlayerLevel(cid) <= 10 then
       doPlayerSetLossPercent(cid, PLAYERLOSS_EXPERIENCE, 0)
    else     
       doPlayerSetLossPercent(cid, PLAYERLOSS_EXPERIENCE, (getPlayerLevel(cid) >= 200 and 100 or math.floor(getPlayerLevel(cid)/2)) )
	end

	doRegainSpeed(cid)
 
 --////// storages \\\\\\-- 
   doEreaseDuel(cid)
   setPlayerStorageValue(cid, 500, -1)
   setPlayerStorageValue(cid, 8085, 0)
   --// duel
   setPlayerStorageValue(cid, storages.requestCountPlayer, 0)
   setPlayerStorageValue(cid, storages.requestCountPokemon, 0)
   setPlayerStorageValue(cid, storages.requestedPlayer, 0)
   --// duel
 --////// storages \\\\\\-- 
 
 --////// Eventos \\\\\\-- 
     registerCreatureEvent(cid, "ShowPokedex")
     registerCreatureEvent(cid, "ClosePokedex")
 	 registerCreatureEvent(cid, "Mail")
	 registerCreatureEvent(cid, "WildAttack")
	 registerCreatureEvent(cid, "GuildMotd")
	 registerCreatureEvent(cid, "Idle")
	 registerCreatureEvent(cid, "ReportBug")
	 registerCreatureEvent(cid, "AdvanceSave")
	 --Adicionados \/
	 registerCreatureEvent(cid, "PlayerLogout")
	 registerCreatureEvent(cid, "LookSystem")
	 registerCreatureEvent(cid, "Opcode")
	 registerCreatureEvent(cid, "EmeraldShop")
	 registerCreatureEvent(cid, "PokeStats")
	 registerCreatureEvent(cid, "PokeWalk")
	 registerCreatureEvent(cid, "PokeSleep")
	 registerCreatureEvent(cid, "MoveItem")
	registerCreatureEvent(cid, "task_count")
	 registerCreatureEvent(cid, "UpLevel")
	 registerCreatureEvent(cid, "BlockWords")
	 --registerCreatureEvent(cid, "PartySystem")
	 registerCreatureEvent(cid, "Target")
	 registerCreatureEvent(cid, "GeneralConfiguration")
	 registerCreatureEvent(cid, "EffectOnAdvance")
	 registerCreatureEvent(cid, "TradeRequest")
	 registerCreatureEvent(cid, "TradeAccpet")
	 registerCreatureEvent(cid, "KillTask")
 --////// Eventos \\\\\\-- 
 
	if(not isPlayerGhost(cid)) then
		doSendMagicEffect(getCreaturePosition(cid), CONST_ME_TELEPORT)
	end
   
local legs = getPlayerSlotItem(cid, CONST_SLOT_LEGS)
local ball = getPlayerSlotItem(cid, 8)

	if getPlayerSlotItem(cid, CONST_SLOT_FEET).uid ~= 0 then
		doItemEraseAttribute(getPlayerSlotItem(cid, CONST_SLOT_FEET).uid, "healthChanged")
	end
	--doOTCSendPokemonHealth(cid)
	--doClearPokemonStatus(cid)

	if isRiderOrFlyOrSurf(cid) and ball.uid ~= 0 then 
	local pokeName = getItemAttribute(ball.uid, "poke")
	
					if isInArray({"ditto", "shiny ditto"}, pokeName:lower()) then
					   pokeName = getItemAttribute(ball.uid, "copyName")
					end
	
                     local outfit = getPokemonOutfitToSkill(pokeName)
                     local speed = getPokemonSpeedToSkill(pokeName)
						 doSetCreatureOutfit(cid, {lookType = outfit + 351}, -1)
						 
						 doChangeSpeed(cid, -getCreatureSpeed(cid))
						 doChangeSpeed(cid, speed)
						 
						 if isRider(cid) then
							setPlayerStorageValue(cid, orderTalks["ride"].storage, 1)
						 elseif isFly(cid) then
							setPlayerStorageValue(cid, orderTalks["fly"].storage, 1)
							  if not hasSqm(getThingPos(cid)) then
							  --   doCreateItem(460, 1, getThingPos(cid))
							  end
						 elseif isSurf(cid) then
							setPlayerStorageValue(cid, orderTalks["surf"].storage, 1) -- rever o markedPos
							doChangeSpeed(cid, -getCreatureSpeed(cid))
							doChangeSpeed(cid, getPlayerStorageValue(cid, 54844))
						 end
						 doTeleportThing(cid, getMarkedSpawnPos(cid))
						 setPokemonGhost(cid)
    end                    
	
	setPlayerStorageValue(cid, storages.gobackDelay, -1)
	setPlayerStorageValue(cid, storages.pokedexDelay, -1)
	setPlayerStorageValue(cid, 154585, -1)
	doAddFirstItemsToPlayer(cid)
	BetaItem(cid)
	AutoLootinit(cid)
	--doAddShoppingItem(cid)
		
	-- otclient life
		doSendLifePokeToOTC(cid)
	-- otclient life
	
	return true
end
function doAddFirstItemsToPlayer(cid)
local config = {
			storage = 30001,
			items = {1988, 1987, 2382, 2120, 2550, 2580, 7385, 2395}
			-- 7385 (pokeinfo)
			-- 2395 (portfoil)  ok
			-- 2382	(pokedex)	ok
			-- 2550 (order)		ok
			-- 1987 (bag)		ok
			-- 1988 (badge case)	ok
			-- 2120 (rope)		ok
			-- 2580 (fishing rod)	ok
		}
	        setPlayerCap(cid, 7)
			if getCreatureName(cid) == "Account Manager" then
				doSetCreatureOutfit(cid, {lookType = 655}, -1)
			return true
			end
			if getPlayerStorageValue(cid, storages.BugFishing) ~= -1 then return true end
			
		    if getPlayerSlotItem(cid, CONST_SLOT_ARMOR).itemid > 0 then
			return true
			end
			
			for _, id in ipairs(config.items) do
				doPlayerAddItem(cid, id, 1)
			end
			local bag = getPlayerItemById(cid, false, 1988).uid
			doAddContainerItem(bag, 12267, 1)
			doAddContainerItem(bag, 12266, 1)
			doAddContainerItem(bag, 12264, 1)
			doAddContainerItem(bag, 12265, 1)
			doAddContainerItem(bag, 12263, 1)
			doAddContainerItem(bag, 12262, 1)
			doAddContainerItem(bag, 12261, 1)
			doAddContainerItem(bag, 12260, 1)
			setPlayerStorageValue(cid, duelTable.wins, 0)
			setPlayerStorageValue(cid, duelTable.loses, 0)
			local pokeBag = getPlayerItemById(cid, false, 1987).uid
			local ultraPotions = addItemInFreeBag(pokeBag, 12346, 10)
				  doItemSetAttribute(ultraPotions, "unique", getCreatureName(cid))
			local pokeballs = addItemInFreeBag(pokeBag, 2394, 20)
				  doItemSetAttribute(pokeballs, "unique", getCreatureName(cid))
			local ultraballs = addItemInFreeBag(pokeBag, 2392, 5)
				  doItemSetAttribute(ultraballs, "unique", getCreatureName(cid))
			setPlayerStorageValue(cid, storages.BugFishing, 1)
			doTeleportThing(cid, getTownTemplePosition(1), false)
			
---Corrigindo vida caso o playe relogue ---

local health = 10000 -- vida que voce colocou no robo.lua
if getPlayerStorageValue(cid, 92001) >= 1 then
        setPlayerStorageValue(cid, 92001, 0) 
        setCreatureMaxHealth(cid, getCreatureMaxHealth(cid)-health)-- linha adicionada by crypter
end
 

return true
end

local itensShopping = {
	[1] = {{2394, 100}, {12344, 25}, {12286, 2}},
	[2] = {{2391, 200}, {2393, 100}, {2392, 100}},
	[3] = {{12832, 1}},
	[4] = {{12286, 1}},
	[5] = {premiumDays = 30}
}

function doAddShoppingItem(cid)
	local allItems = {}
	local compra = 0
	local msg = ""
	local result = db.getResult("SELECT itemID, compraID FROM playercompras WHERE playerID = '" .. getPlayerGUID(cid) .. "' AND entregue = 0")
	if result:getID() ~= -1 then
		compra = result:getDataInt("compraID")
	    allItems[#allItems+1] = result:getDataInt("itemID")
		db.executeQuery("UPDATE playercompras SET entregue = 13 WHERE compraID = ".. compra ..";")
		while(result:next()) do
			allItems[#allItems+1] = result:getDataInt("itemID")
			compra = result:getDataInt("compraID")
			db.executeQuery("UPDATE playercompras SET entregue = 13 WHERE compraID = ".. compra ..";")
		end
	end
	
	if #allItems > 0 then
		for i = 1, #allItems do
			if allItems[i] == 5 then
				doPlayerAddPremiumDays(cid, itensShopping[allItems[i]].premiumDays)
				msg = "Seu pacote de '30 premium days' foi adicionado a sua conta com sucesso!"
				doSendMsg(cid, msg)
			else
			local bag = doCreateItemEx(12694) -- cubone bag de gratis
				for j = 1, #itensShopping[allItems[i]] do
					doAddContainerItem(bag, itensShopping[allItems[i]][j][1], itensShopping[allItems[i]][j][2])
				end
			
				doPlayerSendMailByName(getCreatureName(cid), bag, 1)
				msg = "Os itens que foram comprados pelo shopping foram enviados para seu cp."
				doSendMsg(cid, msg)
			end
		end
	end
end

function addSkillsToDB(cid)
		local str1 = "INSERT INTO player_skills (player_id, skillid, value, count) VALUES (" .. getPlayerGUID(cid) .. ", 5, 5, 0);"
		local str2 = "INSERT INTO player_skills (player_id, skillid, value, count) VALUES (" .. getPlayerGUID(cid) .. ", 6, 5, 0);"
			db.executeQuery(str1)
			db.executeQuery(str2)
end 

 

 

image.png

cap.png

Items.xml

<?xml version="1.0" encoding="UTF-8"?>
<items>
    
    <item id="15130" article="a" name="ancient energy">
          <attribute key="weight" value="0" />
    </item>
    <item id="17270" article="a" name="ancient box">
          <attribute key="weight" value="0" />
    </item>
    <item id="18046" article="a" name="Elemental Shrimp"/>
    <item id="18057" article="a" name="Phione Egg"/>
    <item id="18058" article="a" name="Deoxys Aura"/>
    <item id="18059" article="a" name="Heatran Head"/>
    <item id="18060" article="a" name="Celebi Feather"/>
    <item id="18061" article="a" name="Raikou Tail"/>
    <item id="18062" article="a" name="Shaymin Flower"/>
    <item id="18063" article="a" name="Ho-oh Feather"/>
    <item id="18064" article="a" name="Lugia Feather"/>
    <item id="18065" article="a" name="Suicune Tail"/>
    <item id="18066" article="a" name="Entei Tail"/>
    <item id="18067" article="a" name="Bronze Key"/>
    <item id="18068" article="a" name="Silver Key"/>
    <item id="18069" article="a" name="Golden Key"/>
    <item id="18070" article="a" name="Crystal Key"/>
    <item id="18071" article="a" name="Master Key"/>
    <item id="18072" article="a" name="Kyogre Tail"/>
    <item id="18073" article="a" name="Groudon Head"/>
    <item id="18074" article="a" name="Rayquaza Tail"/>
    <item id="18075" article="a" name="Dimensional Token"/>
    <item id="18076" article="a" name="Dimensional Stone"/>
    <item id="18077" article="a" name="Mirror Stone"/>
    <item id="18078" article="a" name="Spiritomb"/>
    <item id="18079" article="a" name="Trapinch"/>
    <item id="18080" article="a" name="Combee"/>
    <item id="18081" article="a" name="Aerodactyl"/>
    <item id="18082" article="a" name="Tyrogue"/>
    <item id="18083" article="a" name="Gible"/>
    <item id="18084" article="a" name="Unown Legion"/>
    <item id="18085" article="a" name="Cresselia's Wing"/>
    <item id="18086" article="a" name="Health"/>
    <item id="18087" article="a" name="Boot Speed"/>
    <item id="18088" article="a" name="Dialga"/>
    <item id="18089" article="a" name="Palkia"/>
    <item id="18090" article="a" name="Time"/>
    <item id="18091" article="a" name="Space"/>

    <item fromid="15142" toid="15443" article="a" name="icon"/>
    <item fromid="15449" toid="15555" article="a" name="icon"/>
    <item fromid="16254" toid="16267" article="a" name="pool table"/>
    <item fromid="16331" toid="16340" article="a" name="pool table"/>    
    <item fromid="16268" toid="16270" article="a" name="pollice lux"/>
    <item fromid="16271" toid="16322" article="a" name="ground city"/>
    <item fromid="16487" toid="16499" article="a" name="ground city"/>    
    <item fromid="16323" toid="16324" article="a" name="moto decoration"/>
    <item fromid="16327" toid="16329" article="a" name="stones ghost"/>    
    <item fromid="16341" toid="16342" article="a" name="slot machine"/>    
    <item fromid="16343" toid="16345" article="a" name="fire ghost"/>
    <item fromid="16392" toid="16395" article="a" name="fire ghost"/>        
    <item fromid="16346" toid="16351" article="a" name="tree ghost"/>    
    <item fromid="16418" toid="16422" article="a" name="tree dark"/>    
    <item fromid="16352" toid="16367" article="a" name="grass ghost"/>    
    <item fromid="16396" toid="16399" article="a" name="grass ghost"/>        
    <item fromid="16380" toid="16391" article="a" name="grass dark"/>    
    <item fromid="16484" toid="16486" article="a" name="grass dark"/>        
    <item fromid="16406" toid="16410" article="a" name="sand rock"/>    
    <item fromid="16431" toid="16434" article="a" name="sand rock"/>    
    <item fromid="16435" toid="16442" article="a" name="rock"/>        
    <item fromid="16423" toid="16430" article="a" name="rock"/>        
    <item fromid="16411" toid="16413" article="a" name="hole ghost"/>    
    <item fromid="16414" toid="16417" article="a" name="fire ghost"/>    
    <item fromid="16443" toid="16448" article="a" name="swampfall"/>        
    <item fromid="16449" toid="16454" article="a" name="marblewall"/>            
    <item fromid="16455" toid="16466" article="a" name="mountain water"/>    
    <item fromid="16467" toid="16473" article="a" name="flowery ghost"/>        
    <item fromid="16474" toid="16481" article="a" name="ramp"/>    
    <item fromid="16482" toid="16483" article="a" name="whirlpool"/>        
    
    <item id="16325" article="a" name="bike decoration"/>
    <item id="16326" article="a" name="channel brothehood"/>
    <item id="16330" article="a" name="mountain water"/>
    
    <item fromid="15445" toid="15448" article="a" name="depot">
        <attribute key="type" value="depot" />
        <attribute key="containerSize" value="30" />
    </item>

    <item id="15672" article="a" name="heavy ball">
        <attribute key="description" value="Uma pokéball superior a Ultra Ball se utilizada em pokémon marcado como pesado (Heavy) na pokédex. Adquirida na profissão Engenheiro." />
    </item>
    <item id="15673" article="a" name="tale ball">
        <attribute key="description" value="Uma pokéball superior a Ultra Ball se utilizada em pokémon dos tipos DRAGON ou FAIRY. Adquirida na profissão Engenheiro." />
    </item>
    <item id="15674" article="a" name="moon ball">
        <attribute key="description" value="Uma pokéball superior a Ultra Ball se utilizada em pokémon dos tipos GHOST ou DARK. Adquirida na profissão Engenheiro." />
    </item>
    <item id="15675" article="a" name="net ball">
        <attribute key="description" value="Uma pokéball superior a Ultra Ball se utilizada em pokémon dos tipos BUG ou WATER. Adquirida na profissão Engenheiro." />
    </item>
    <item id="15676" article="a" name="dive ball">
        <attribute key="description" value="Uma pokéball superior a Ultra Ball se utilizada em pokémon dos tipos ICE ou FLYING. Adquirida na profissão Engenheiro." />
    </item>
    <item id="15677" article="a" name="magu ball">
        <attribute key="description" value="Uma pokéball superior a Ultra Ball se utilizada em pokémon dos tipos FIRE ou GROUND. Adquirida na profissão Engenheiro." />
    </item>
    <item id="15678" article="a" name="yume ball">
        <attribute key="description" value="Uma pokéball superior a Ultra Ball se utilizada em pokémon dos tipos NORMAL ou PSYCHIC. Adquirida na profissão Engenheiro." />
    </item>
    <item id="15679" article="a" name="premier ball">
        <attribute key="description" value="Uma pokéball semelhante a Ultra ball, usada para catch em Shinys. Adquirida na profissão Aventureiro." />
    </item>
    <item id="15680" article="a" name="dusk ball">
        <attribute key="description" value="Uma pokéball superior a Ultra Ball se utilizada em pokémon dos tipos ROCK ou FIGHTING. Adquirida na profissão Engenheiro." />
    </item>
    <item id="15681" article="a" name="tinker ball">
        <attribute key="description" value="Uma pokéball superior a Ultra Ball se utilizada em pokémon dos tipos ELECTRIC ou STEEL. Adquirida na profissão Engenheiro." />
    </item>
    <item id="15682" article="a" name="fast ball">
            <attribute key="description" value="Uma pokéball superior a Ultra Ball se utilizada em pokémon marcado como rápido (Fast) na pokédex. Adquirida na profissão Engenheiro." />
    </item>

    <item fromid="16181" toid="16203" article="a" name="icon" >
          <attribute key="ispokeball" value="1"/>
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>
    
    <item fromid="16204" toid="16215" article="a" name="icon" >
          <attribute key="ispokeball" value="1"/>
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>
    
    <item fromid="16220" toid="16230" article="a" name="icon" >
          <attribute key="ispokeball" value="1"/>
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>
    
    <item fromid="16232" toid="16253" article="a" name="icon" >
          <attribute key="ispokeball" value="1"/>
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>
    
    
    <item id="16177" article="a" name="Held creator machine"/>
    <item id="16178" article="a" name="held slot machine"/>
    <item id="16179" article="a" name="held slot machine"/>
    
    <item fromid="15795" toid="15973" article="a" name="duel ground"/>
    
    <item fromid="15974" toid="16176" article="a" name="trade center"/>
    
    <item fromid="15683" toid="15779" article="a" name="embedded tower item"/>
    
    <item id="15131" article="a" name="Alakazite"/>
    <item id="17121" article="a" name="Alakazite X"/>
    <item id="15134" article="a" name="Charizardite X"/>
    <item id="15135" article="a" name="Charizardite Y"/>
    <item id="15133" article="a" name="Blastoisinite"/>
    <item id="17123" article="a" name="Blastoisinite X"/>
    <item id="15136" article="a" name="Gengarite"/>
    <item id="17122" article="a" name="Gengarite X"/>
    
    <item id="15780" article="a" name="Aggronite"/>
    <item id="15781" article="a" name="Tyranitarite"/>
    <item id="17126" article="a" name="Tyranitarite X"/>
    <item id="15782" article="a" name="Mawlite"/>
    <item id="15783" article="a" name="Kangaskhanite"/>
    <item id="15784" article="a" name="Scizorite"/>
    <item id="17127" article="a" name="Scizorite X"/>
    <item id="15785" article="a" name="Gardevoirite"/>
    <item id="15786" article="a" name="Aerodactylite"/>
    <item id="15787" article="a" name="Absolite"/>
    <item id="15788" article="a" name="Lucarionite"/>
    <item id="15789" article="a" name="Sceptilite"/>
    <item id="15790" article="a" name="Swampertile"/>
    <item id="15791" article="a" name="Pidgeotile"/>
    
    <item id="15792" article="a" name="Blazikenite"/>
    <item id="15793" article="a" name="Venusaurite"/>
    <item id="17125" article="a" name="Venusaurite X"/>
    <item id="15794" article="a" name="Ampharosite"/>
    <item id="17124" article="a" name="Ampharosite X"/>
    
    <item id="17128" article="a" name="Gyaradosite"/>
    <item id="17129" article="a" name="Gyaradosite X"/>
    <item id="17130" article="a" name="Pisirite"/>
    <item id="17131" article="a" name="Marowaktite"/>
    <item id="17132" article="a" name="Wobbuffetize"/>
    <item id="17133" article="a" name="Steelixite"/>
    <item id="17134" article="a" name="Houndoominite"/>
    <item id="17135" article="a" name="Slowbronite"/>
    <item id="17136" article="a" name="Slowbronite X"/>
    
    
    <item id="15643" article="a" name="Y-Ghost"/>
    
    <item fromid="14881" toid="15069" article="a" name="icon" >
          <attribute key="ispokeball" value="1"/>
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>
    
    <item id="15644" article="a" name="honored token"/>
    <item id="15645" article="a" name="devoted token"/>
    <item id="15646" article="a" name="mighty token"/>
    
    <item id="16180" article="a" name="portrait"/>
    <item id="17484" article="a" name="portrait"/>
    <item id="17880" article="a" name="portrait"/>
    <item fromid="14795" toid="14879" article="a" name="portrait"/>
    <item fromid="2396" toid="2398" article="a" name="portrait"/>
    <item fromid="2400" toid="2409" article="a" name="portrait"/>
    <item fromid="2411" toid="2432" article="a" name="portrait"/>
    <item fromid="2434" toid="2455" article="a" name="portrait"/>
    <item fromid="2462" toid="2467" article="a" name="portrait"/>
    <item fromid="2470" toid="2472" article="a" name="portrait"/>
    <item fromid="2475" toid="2478" article="a" name="portrait"/>
    <item fromid="2484" toid="2488" article="a" name="portrait"/>
    <item fromid="3961" toid="3964" article="a" name="portrait"/>
    <item fromid="17443" toid="17478" article="a" name="portrait"/>
    <item fromid="17409" toid="17412" article="a" name="portrait"/>
    <item fromid="17486" toid="17487" article="a" name="portrait"/>
    <item fromid="17414" toid="17441" article="a" name="portrait"/>
    <item fromid="15659" toid="15660" article="a" name="portrait"/>
    <item fromid="17404" toid="17408" article="a" name="portrait"/>

    <item id="1132" article="an" name="dimensional zone"/>
    <item id="708" article="an" name="dimensional zone"/>
    <item id="2433" article="an" name="dimensional zone"/>

    <item id="14200" article="a" name="Battle Wall">
        <attribute key="description" value="Wall usado somente para torneio de batalhas." />
    </item>
    
    <item id="14201" article="a" name="Battle Wall">
        <attribute key="description" value="Wall usado somente para torneio de batalhas." />
    </item>

    <item id="14202" article="a" name="Polifortil">
        <attribute key="description" value="Polifortil usado somente para torneio de batalhas." />
    </item>
    
    <item id="14203" article="a" name="Polifortil">
        <attribute key="description" value="Polifortil usado somente para torneio de batalhas." />
    </item>

    <item fromid="14204" toid="14207" article="a" name="Battle Wall" />

    <item id="14208" article="a" name="Computer">
        <attribute key="description" value="Computador usado que contém os principais dados sobre o server." />
    </item>
    
    <item id="14209" article="a" name="Portal Raibolt">
        <attribute key="description" value="Usado apenas pelo clan Raibolt." />
    </item>
    
    <item id="14210" article="a" name="Portal Gardestrike">
        <attribute key="description" value="Usado apenas pelo clan Gardestrike." />
    </item>
    
    <item id="14211" article="a" name="Portal Iron">
        <attribute key="description" value="Usado apenas pelo clan Iron." />
    </item>
    
    <item id="14212" article="a" name="Portal Seavell">
        <attribute key="description" value="Usado apenas pelo clan Seavell." />
    </item>
    
    <item id="14213" article="a" name="Portal Psycraft">
        <attribute key="description" value="Usado apenas pelo clan Psycraft." />
    </item>
    
    <item id="14214" article="a" name="Portal Volcanic">
        <attribute key="description" value="Usado apenas pelo clan Volcanic." />
    </item>
    
    <item id="14215" article="a" name="Portal Naturia">
        <attribute key="description" value="Usado apenas pelo clan Naturia." />
    </item>

    <item id="14216" article="a" name="Portal Malefic">
        <attribute key="description" value="Usado apenas pelo clan Malefic." />
    </item>
    
    <item id="14217" article="a" name="Portal Wingeon">
        <attribute key="description" value="Usado apenas pelo clan Wingeon." />
    </item>

    <item id="14218" article="a" name="Portal Orebound">
        <attribute key="description" value="Usado apenas pelo clan Orebound." />
    </item>
    
    <item fromid="14219" toid="14315" article="a" name="Grounds" />,
    
    <item fromid="14316" toid="14325" article="a" name="Walls" />
    
    <item fromid="14335" toid="14705" article="a" name="Stairs" />
    
    <item fromid="14326" toid="14334" article="a" name="icon" >
          <attribute key="ispokeball" value="1"/>
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>
    
    
    
    
    <item id="100" name="void" />
    <item id="101" name="earth" />
    <item id="103" name="dirt" />
    <item id="104" name="sand" />
    <item id="106" name="grass" />
    <item fromid="108" toid="109" name="flowers" />
    <item id="194" name="dirt" />
    <item id="231" name="sand" />
    <item id="280" name="earth ground" />
    <item id="293" name="grass" />
    <item id="294" article="a" name="pitfall">
        <attribute key="floorchange" value="down" />
        <attribute key="decayTo" value="293" />
        <attribute key="duration" value="300" />

    </item>
    <item fromid="351" toid="353" name="dirt floor" />
    <item fromid="354" toid="355" name="muddy floor" />
    <item fromid="356" toid="367" article="a" name="dirt wall" />
    <item id="368" name="earth ground" />
    <item fromid="369" toid="370" article="a" name="trapdoor">
        <attribute key="floorchange" value="down" />
    </item>
    <item fromid="371" toid="382" article="a" name="stone wall" />
    <item id="383" article="a" name="hole">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="384" article="a" name="rope spot">
        <attribute key="description" value="There is a hole in the ceiling." />
    </item>
    <item id="385" article="a" name="small hole">
        <attribute key="description" value="It seems too narrow to climb through." />
    </item>
    <item fromid="386" toid="387" name="stalagmites" />
    <item id="388" article="a" name="lava hole">
        <attribute key="description" value="It seems to be inactive." />
    </item>
    <item id="389" article="a" name="lava hole">
        <attribute key="description" value="It emits heat and light." />
    </item>
    <item fromid="390" toid="391" name="stalagmites" />
    <item id="392" article="a" name="hole">
        <attribute key="decayTo" value="354" />
        <attribute key="duration" value="300" />
        <attribute key="floorchange" value="down" />
    </item>
    <item id="405" name="wooden flooring" />
    <item id="406" article="a" name="white marble tile" />
    <item id="407" article="a" name="black marble tile" />
    <item fromid="408" toid="409" article="a" name="trapdoor">
        <attribute key="floorchange" value="down" />
    </item>
    <item fromid="410" toid="411" name="stairs">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="412" article="a" name="sandstone tile" />
    <item id="413" article="a" name="stone tile" />
    <item id="414" article="a" name="tiled floor" />
    <item id="415" article="a" name="stone tile" />
    <item fromid="416" toid="417" article="a" name="stone tile">
        <attribute key="description" value="It seems to be a switch." />
    </item>
    <item id="418" article="a" name="stone tile">
        <attribute key="description" value="There is a hole in the ceiling." />
    </item>
    <item id="419" article="a" name="sandstone tile" />
    <item id="420" article="a" name="tiled floor" />
    <item fromid="421" toid="422" article="a" name="sandstone floor" />
    <item id="423" name="stairs">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="424" article="a" name="stone tile" />
    <item fromid="425" toid="426" article="a" name="stone tile">
        <attribute key="description" value="It seems to be a switch." />
    </item>
    <item id="427" article="a" name="trapdoor">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="428" article="a" name="ladder">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="429" article="a" name="trapdoor">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="430" article="a" name="sewer grate" />
    <item id="431" name="stone floor" />
    <item fromid="432" toid="433" name="stairs">
        <attribute key="floorchange" value="down" />
    </item>
    <item fromid="434" toid="445" name="wooden floor" />
    <item fromid="446" toid="447" name="wooden floor">
        <attribute key="description" value="It seems to be a switch." />
    </item>
    <item fromid="448" toid="456" name="wooden floor" />
    <item id="457" article="a" name="white stone tile" />
    <item id="458" name="wooden floor" />
    <item id="459" name="stairs">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="460" name="void" />
    <item id="461" article="a" name="closed trapdoor" />
    <item id="462" article="an" name="open trapdoor">
        <attribute key="floorchange" value="down" />
        <attribute key="decayTo" value="461" />
        <attribute key="duration" value="120" />
    </item>
    <item id="463" article="a" name="pedestal" />
    <item id="464" article="a" name="sandstone wall" />
    <item id="465" article="a" name="stone tile">
        <attribute key="description" value="It seems to be a switch." />
    </item>
    <item id="466" article="a" name="sandstone wall" />
    <item id="467" article="a" name="stone tile">
        <attribute key="description" value="It seems to be a switch." />
    </item>
    <item id="468" article="a" name="loose stone pile" />
    <item id="469" article="a" name="hole">
        <attribute key="floorchange" value="down" />
        <attribute key="decayTo" value="468" />
    </item>
    <item id="470" article="a" name="hole">
        <attribute key="floorchange" value="down" />
    </item>
    <item fromid="471" toid="474" article="a" name="time tile" />
    <item fromid="475" toid="476" article="a" name="hole">
        <attribute key="floorchange" value="down" />
    </item>
    <item fromid="477" toid="478" article="a" name="ramp" />
    <item fromid="479" toid="480" article="a" name="hole">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="481" article="a" name="loose stone pile" />
    <item id="482" article="a" name="hole">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="483" article="a" name="loose ice pile" />
    <item id="484" article="a" name="hole">
        <attribute key="floorchange" value="down" />
        <attribute key="decayTo" value="483" />
        <attribute key="duration" value="300" />
    </item>
    <item id="485" article="a" name="hole">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="486" article="a" name="heap of snow" />
    <item fromid="487" toid="488" article="a" name="ramp" />
    <item id="489" article="a" name="hole">
        <attribute key="floorchange" value="down" />
        <attribute key="decayTo" value="231" />
        <attribute key="duration" value="30" />
    </item>
    <item id="493" name="water">
        <attribute key="type" value="trashholder" />
        <attribute key="effect" value="bluebubble" />
        <attribute key="allowpickupable" value="1" />
    </item>
    <item fromid="598" toid="601" name="lava">
        <attribute key="type" value="trashholder" />
        <attribute key="effect" value="fire" />
        <attribute key="allowpickupable" value="1" />
    </item>
    <item id="670" name="snow" />
    <item id="671" name="ice" />
    <item fromid="709" toid="711" name="tar">
        <attribute key="type" value="trashholder" />
        <attribute key="effect" value="poff" />
        <attribute key="allowpickupable" value="1" />
    </item>
    <item id="724" name="cobbled pavement" />
    <item fromid="777" toid="790" name="sandstone floor" />
    <item id="791" name="grass" />
    <item id="804" name="dirt" />
    <item id="806" name="dirt" />
    <item id="836" name="sand" />
    <item fromid="873" toid="878" article="a" name="mountain" />
    <item fromid="891" toid="902" name="rocks" />
    <item fromid="903" toid="913" article="a" name="mountain" />
    <item fromid="914" toid="917" article="an" name="archway" />
    <item fromid="918" toid="919" article="a" name="mountain" />
    <item fromid="920" toid="923" article="a" name="flat roof" />
    <item id="924" article="a" name="trapdoor">
        <attribute key="floorchange" value="down" />
    </item>
    <item fromid="925" toid="944" article="a" name="tiled roof" />
    <item fromid="945" toid="964" article="a" name="wooden roof" />
    <item fromid="965" toid="966" article="a" name="chess board" />
    <item fromid="967" toid="1015" article="a" name="mill board" />
    <item fromid="1016" toid="1024" article="a" name="tic-tac-toe board" />
    <item fromid="1025" toid="1035" article="a" name="brick wall" />
    <item fromid="1036" toid="1048" article="a" name="framework wall" />
    <item fromid="1049" toid="1059" article="a" name="stone wall" />
    <item fromid="1060" toid="1070" article="a" name="sandstone wall" />
    <item id="1071" name="sandstone" />
    <item fromid="1072" toid="1083" article="a" name="sandstone roof" />
    <item fromid="1084" toid="1088" article="a" name="broken wall" />
    <item fromid="1089" toid="1093" article="a" name="metal wall" />
    <item fromid="1095" toid="1099" article="a" name="metal wall" />
    <item fromid="1100" toid="1110" article="a" name="sandstone wall" />
    <item fromid="1111" toid="1119" article="a" name="white stone wall" />
    <item fromid="1120" toid="1127" article="an" name="archway" />
    <item fromid="1154" toid="1157" article="a" name="wall fountain">
        <attribute key="fluidSource" value="water" />
    </item>
    <item fromid="1158" toid="1163" article="an" name="archway" />
    <item fromid="1164" toid="1169" article="an" name="ornamented wall" />
    <item fromid="1170" toid="1175" article="a" name="paravent" />
    <item fromid="1176" toid="1193" article="an" name="ornamented wall" />
    <item fromid="1194" toid="1195" article="a" name="wall fountain">
        <attribute key="fluidSource" value="water" />
    </item>
    <item fromid="1196" toid="1204" article="a" name="lava wall" />
    <item fromid="1205" toid="1208" article="an" name="archway" />
    <item fromid="1209" toid="1210" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="1211" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="1212" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="1213" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="1214" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item fromid="1215" toid="1218" article="a" name="buttress" />
    <item id="1219" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="1220" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="1221" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="1222" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="1223" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="1224" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="1225" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="1226" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="1227" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="1228" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item id="1229" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="1230" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item id="1231" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="1232" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="1233" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="1234" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="1235" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="1236" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="1237" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="1238" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="1239" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="1240" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="1241" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="1242" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="1243" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="1244" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="1245" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="1246" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item id="1247" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="1248" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item id="1249" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="1250" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="1251" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="1252" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="1253" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="1254" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="1255" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="1256" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="1257" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="1258" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="1259" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="1260" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item id="1261" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="1262" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item fromid="1263" toid="1264" article="a" name="framework window" />
    <item fromid="1265" toid="1266" article="a" name="brick window" />
    <item fromid="1267" toid="1268" article="a" name="stone window" />
    <item fromid="1269" toid="1272" article="a" name="white stone wall window" />
    <item fromid="1273" toid="1276" article="a" name="sandstone window" />
    <item id="1277" article="a" name="wooden pillar" />
    <item fromid="1278" toid="1279" article="a" name="sail" />
    <item fromid="1280" toid="1283" article="a" name="rudder of the boat" />
    <item id="1284" article="a" name="drawbridge" />
    <item fromid="1285" toid="1292" article="a" name="stone" />
    <item id="1293" article="a" name="stone">
        <attribute key="weight" value="1500" />
    </item>
    <item id="1294" article="a" name="shooting small stone" plural="shooting small stones">
        <attribute key="weight" value="360" />
        <attribute key="attack" value="5" />
        <attribute key="weaponType" value="distance" />
        <attribute key="shootType" value="smallstone" />
        <attribute key="range" value="5" />
        <attribute key="breakChance" value="7" />
        <attribute key="ammoAction" value="moveback" />
    </item>
    <item id="1295" article="a" name="stone">
        <attribute key="weight" value="3000" />
    </item>
    <item fromid="1296" toid="1352" article="a" name="stone" />
    <item id="1353" article="a" name="mossy stone" />
    <item fromid="1354" toid="1359" article="a" name="stone" />
    <item fromid="1360" toid="1363" article="a" name="fountain">
        <attribute key="fluidSource" value="water" />
    </item>
    <item fromid="1364" toid="1367" article="a" name="water basin">
        <attribute key="fluidSource" value="water" />
    </item>
    <item fromid="1368" toid="1369" article="a" name="draw well" />
    <item fromid="1370" toid="1377" article="a" name="marble fountain" />
    <item id="1378" article="a" name="small basin" />
    <item fromid="1379" toid="1384" article="a" name="mill" />
    <item id="1385" name="stairs">
        <attribute key="floorchange" value="north" />
    </item>
    <item id="1386" article="a" name="ladder" />
    <item id="1387" article="a" name="magic forcefield">
        <attribute key="description" value="You can see the other side through it." />
        <attribute key="type" value="teleport" />
    </item>
    <item id="16475" article="a" name="ramp">
        <attribute key="floorchange" value="north" />
    </item>
    <item id="16474" article="a" name="ramp">
        <attribute key="floorchange" value="south" />
    </item>
    <item id="16477" article="a" name="ramp">
        <attribute key="floorchange" value="east" />
    </item>
    <item id="1390" article="a" name="ramp">
        <attribute key="floorchange" value="west" />
    </item>
    <item id="1392" article="a" name="ramp">
        <attribute key="floorchange" value="south" />
    </item>
    <item id="1388" article="a" name="ramp">
        <attribute key="floorchange" value="east" />
    </item>
    <item id="1389" article="a" name="ramp" />
    <item id="1390" article="a" name="ramp">
        <attribute key="floorchange" value="west" />
    </item>
    <item id="1391" article="a" name="ramp" />
    <item id="1392" article="a" name="ramp">
        <attribute key="floorchange" value="south" />
    </item>
    <item id="1393" article="a" name="ramp" />
    <item id="1394" article="a" name="ramp">
        <attribute key="floorchange" value="north" />
    </item>
    <item id="1395" article="a" name="ramp" />
    <item id="1396" name="stairs">
        <attribute key="floorchange" value="north" />
    </item>
    <item id="1397" article="a" name="mystic flame" />
    <item id="1398" article="a" name="ramp">
        <attribute key="floorchange" value="east" />
    </item>
    <item id="1399" article="a" name="ramp" />
    <item id="1400" article="a" name="ramp">
        <attribute key="floorchange" value="west" />
    </item>
    <item id="1401" article="a" name="ramp" />
    <item id="1402" article="a" name="ramp">
        <attribute key="floorchange" value="south" />
    </item>
    <item id="1403" article="a" name="ramp" />
    <item id="1404" article="a" name="ramp">
        <attribute key="floorchange" value="north" />
    </item>
    <item id="1405" article="a" name="ramp" />
    <item id="1406" article="a" name="grave" />
    <item fromid="1407" toid="1409" article="a" name="gravestone" />
    <item id="1410" article="a" name="stone coffin">
        <attribute key="containerSize" value="10" />
    </item>
    <item id="1411" article="a" name="stone coffin" />
    <item fromid="1412" toid="1414" article="a" name="stone coffin">
        <attribute key="containerSize" value="10" />
    </item>
    <item fromid="1415" toid="1416" article="a" name="buried coffin" />
    <item id="1417" article="a" name="sarcophagus">
        <attribute key="containerSize" value="10" />
    </item>
    <item id="1418" article="a" name="sarcophagus" />
    <item id="1419" article="a" name="sarcophagus">
        <attribute key="containerSize" value="10" />
    </item>
    <item id="1420" article="a" name="sarcophagus" />
    <item fromid="1421" toid="1422" article="a" name="campfire" />
    <item fromid="1423" toid="1425" article="a" name="campfire">
        <attribute key="field" value="fire">
            <attribute key="damage" value="20" />
            <attribute key="ticks" value="4000" />
            <attribute key="count" value="2" />
            <attribute key="damage" value="10" />
        </attribute>
    </item>
    <item id="1426" article="an" name="unlit campfire" />
    <item fromid="1427" toid="1428" article="a" name="campfire" />
    <item fromid="1429" toid="1434" article="a" name="sign" />
    <item id="17689" article="a" name="sign" />
    <item id="1435" article="a" name="dragon flag" />
    <item id="1436" article="a" name="castle flag" />
    <item id="1437" article="a" name="flag of Tibia" />
    <item fromid="1438" toid="1439" article="a" name="street sign" />
    <item fromid="1440" toid="1441" article="a" name="sign" />
    <item id="1442" article="a" name="statue">
        <attribute key="rotateTo" value="1476" />
    </item>
    <item id="1443" article="a" name="statue" />
    <item id="1444" article="a" name="hero statue" />
    <item id="1445" article="a" name="monument" />
    <item id="1446" article="a" name="minotaur statue">
        <attribute key="rotateTo" value="1461" />
    </item>
    <item id="1447" article="a" name="goblin statue">
        <attribute key="rotateTo" value="1464" />
    </item>
    <item id="1448" article="an" name="angel statue" />
    <item id="1449" article="a" name="dwarven statue" />
    <item id="1450" article="a" name="watchdog statue" />
    <item id="1451" article="a" name="sandstone statue" />
    <item fromid="1452" toid="1455" article="a" name="gargoyle statue" />
    <item fromid="1456" toid="1459" article="a" name="pedestal" />
    <item id="1460" article="a" name="minotaur statue">
        <attribute key="rotateTo" value="1462" />
    </item>
    <item id="1461" article="a" name="minotaur statue">
        <attribute key="rotateTo" value="1460" />
    </item>
    <item id="1462" article="a" name="minotaur statue">
        <attribute key="rotateTo" value="1446" />
    </item>
    <item id="1463" article="a" name="goblin statue">
        <attribute key="rotateTo" value="1465" />
    </item>
    <item id="1464" article="a" name="goblin statue">
        <attribute key="rotateTo" value="1463" />
    </item>
    <item id="1465" article="a" name="goblin statue">
        <attribute key="rotateTo" value="1447" />
    </item>
    <item id="1466" article="a" name="pedestal" />
    <item fromid="1467" toid="1468" article="a" name="cobra statue" />
    <item id="1469" article="a" name="pedestal" />
    <item fromid="1470" toid="1475" article="a" name="cobra statue" />
    <item id="1476" article="a" name="statue">
        <attribute key="rotateTo" value="1477" />
    </item>
    <item id="1477" article="a" name="statue">
        <attribute key="rotateTo" value="1478" />
    </item>
    <item id="1478" article="a" name="statue">
        <attribute key="rotateTo" value="1442" />
    </item>
    <item fromid="1479" toid="1480" article="a" name="street lamp" />
    <item fromid="1481" toid="1485" article="a" name="coal basin" />
    <item id="1486" article="a" name="stone coal basin" />
    <item id="1487" article="a" name="fire field">
        <attribute key="type" value="magicfield" />
        <attribute key="replaceable" value="0" />
        <attribute key="field" value="fire">
            <attribute key="damage" value="20" />
            <attribute key="ticks" value="10000" />
            <attribute key="count" value="7" />
            <attribute key="damage" value="10" />
        </attribute>
    </item>
    <item id="1488" article="a" name="fire field">
        <attribute key="type" value="magicfield" />
        <attribute key="replaceable" value="0" />
        <attribute key="field" value="fire">
            <attribute key="ticks" value="10000" />
            <attribute key="count" value="7" />
            <attribute key="damage" value="10" />
        </attribute>
    </item>
    <item id="1489" article="a" name="fire field">
        <attribute key="type" value="magicfield" />
        <attribute key="replaceable" value="0" />
        <attribute key="field" value="fire" />
    </item>
    <item id="1490" article="a" name="poison field">
        <attribute key="type" value="magicfield" />
        <attribute key="replaceable" value="0" />
        <attribute key="field" value="poison">
            <attribute key="ticks" value="5000" />
            <attribute key="start" value="5" />
            <attribute key="damage" value="100" />
        </attribute>
    </item>
    <item id="1491" article="an" name="energy field">
        <attribute key="type" value="magicfield" />
        <attribute key="replaceable" value="0" />
        <attribute key="field" value="energy">
            <attribute key="damage" value="30" />
            <attribute key="ticks" value="10000" />
            <attribute key="damage" value="25" />
        </attribute>
    </item>
    <item id="1492" article="a" name="fire field">
        <attribute key="type" value="magicfield" />
        <attribute key="decayTo" value="1493" />
        <attribute key="duration" value="120" />
        <attribute key="field" value="fire">
            <attribute key="damage" value="20" />
            <attribute key="ticks" value="10000" />
            <attribute key="count" value="7" />
            <attribute key="damage" value="10" />
        </attribute>
    </item>
    <item id="1493" article="a" name="fire field">
        <attribute key="type" value="magicfield" />
        <attribute key="decayTo" value="1494" />
        <attribute key="duration" value="120" />
        <attribute key="field" value="fire">
            <attribute key="ticks" value="10000" />
            <attribute key="count" value="7" />
            <attribute key="damage" value="10" />
        </attribute>
    </item>
    <item id="1494" article="a" name="fire field">
        <attribute key="type" value="magicfield" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="120" />
        <attribute key="field" value="fire" />
    </item>
    <item id="1495" article="an" name="energy field">
        <attribute key="type" value="magicfield" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="120" />
        <attribute key="field" value="energy">
            <attribute key="damage" value="30" />
            <attribute key="ticks" value="10000" />
            <attribute key="damage" value="25" />
        </attribute>
    </item>
    <item id="1496" article="a" name="poison field">
        <attribute key="type" value="magicfield" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="120" />
        <attribute key="field" value="poison">
            <attribute key="ticks" value="5000" />
            <attribute key="start" value="5" />
            <attribute key="damage" value="100" />
        </attribute>
    </item>
    <item id="1497" article="a" name="magic wall">
        <attribute key="type" value="magicfield" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="20" />
    </item>
    <item id="1498" article="a" name="magic wall">
        <attribute key="type" value="magicfield" />
    </item>
    <item id="1499" article="a" name="rush wood">
        <attribute key="type" value="magicfield" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="45" />
    </item>
    <item id="1500" article="a" name="fire field">
        <attribute key="type" value="magicfield" />
        <attribute key="decayTo" value="1501" />
        <attribute key="duration" value="10" />
        <attribute key="field" value="fire">
            <attribute key="damage" value="20" />
            <attribute key="ticks" value="10000" />
            <attribute key="count" value="7" />
            <attribute key="damage" value="10" />
        </attribute>
    </item>
    <item id="1501" article="a" name="fire field">
        <attribute key="type" value="magicfield" />
        <attribute key="decayTo" value="1502" />
        <attribute key="duration" value="10" />
        <attribute key="field" value="fire">
            <attribute key="ticks" value="10000" />
            <attribute key="count" value="7" />
            <attribute key="damage" value="10" />
        </attribute>
    </item>
    <item id="1502" article="a" name="fire field">
        <attribute key="type" value="magicfield" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="10" />
        <attribute key="field" value="fire" />
    </item>
    <item id="1503" article="a" name="poison gas">
        <attribute key="type" value="magicfield" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="10" />
        <attribute key="field" value="poison">
            <attribute key="ticks" value="5000" />
            <attribute key="start" value="5" />
            <attribute key="damage" value="100" />
        </attribute>
    </item>
    <item id="1504" article="an" name="energy field">
        <attribute key="type" value="magicfield" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="10" />
        <attribute key="field" value="energy">
            <attribute key="damage" value="30" />
            <attribute key="ticks" value="10000" />
            <attribute key="damage" value="25" />
        </attribute>
    </item>
    <item id="1505" name="smoke">
        <attribute key="type" value="magicfield" />
        <attribute key="replaceable" value="0" />
    </item>
    <item id="1506" article="a" name="searing fire">
        <attribute key="type" value="magicfield" />
        <attribute key="decayTo" value="1507" />
        <attribute key="duration" value="10" />
        <attribute key="replaceable" value="0" />
        <attribute key="field" value="fire">
            <attribute key="damage" value="300" />
        </attribute>
    </item>
    <item id="1507" article="a" name="searing fire">
        <attribute key="type" value="magicfield" />
        <attribute key="decayTo" value="1508" />
        <attribute key="duration" value="10" />
        <attribute key="replaceable" value="0" />
        <attribute key="field" value="fire">
            <attribute key="damage" value="300" />
        </attribute>
    </item>
    <item id="1508" name="ashes">
        <attribute key="type" value="magicfield" />
        <attribute key="decayTo" value="1506" />
        <attribute key="duration" value="5" />
        <attribute key="replaceable" value="0" />
    </item>
    <item id="1509" name="lava" />
    <item id="1510" name="slits" />
    <item id="1511" name="blades" />
    <item id="1512" name="holes" />
    <item id="1513" name="spikes" />
    <item id="1514" article="a" name="pillar" />
    <item id="1515" article="a" name="marble pillar" />
    <item fromid="1516" toid="1523" article="a" name="wooden railing" />
    <item fromid="1524" toid="1532" article="a" name="stone railing" />
    <item fromid="1533" toid="1538" article="a" name="fence" />
    <item id="1539" article="a" name="closed fence gate">
        <attribute key="type" value="door" />
    </item>
    <item id="1540" article="an" name="open fence gate">
        <attribute key="type" value="door" />
    </item>
    <item id="1541" article="a" name="closed fence gate">
        <attribute key="type" value="door" />
    </item>
    <item id="1542" article="an" name="open fence gate">
        <attribute key="type" value="door" />
    </item>
    <item fromid="1543" toid="1547" article="a" name="fence" />
    <item id="1548" article="a" name="strange carving" />
    <item id="1549" article="a" name="sandstone pillar" />
    <item id="1550" article="a" name="sandstone statue" />
    <item id="1551" article="an" name="oriental pillar" />
    <item id="1552" article="a" name="ramp" />
    <item id="1553" article="a" name="ramp">
        <attribute key="floorchange" value="north" />
        <attribute key="floorchange" value="west" />
    </item>
    <item id="1554" article="a" name="ramp" />
    <item id="1555" article="a" name="ramp">
        <attribute key="floorchange" value="north" />
        <attribute key="floorchange" value="east" />
    </item>
    <item id="1556" article="a" name="ramp" />
    <item id="1557" article="a" name="ramp">
        <attribute key="floorchange" value="south" />
        <attribute key="floorchange" value="east" />
    </item>
    <item id="1558" article="a" name="ramp" />
    <item id="1559" article="a" name="ramp">
        <attribute key="floorchange" value="south" />
        <attribute key="floorchange" value="west" />
    </item>
    <item id="1560" article="an" name="obelisk" />
    <item id="1561" article="a" name="broken obelisk" />
    <item fromid="1562" toid="1577" article="a" name="sandstone railing" />
    <item fromid="1578" toid="1581" name="sandstone" />
    <item fromid="1582" toid="1593" article="a" name="white stone railing" />
    <item fromid="1594" toid="1601" article="a" name="metal railing" />
    <item fromid="1602" toid="1614" article="a" name="big table" />
    <item id="1615" article="a" name="square table" />
    <item id="1616" article="a" name="small round table" />
    <item fromid="1617" toid="1618" article="a" name="counter" />
    <item id="1619" article="a" name="small table" />
    <item fromid="1620" toid="1621" article="a" name="counter" />
    <item fromid="1622" toid="1633" article="a" name="table" />
    <item fromid="1634" toid="1638" article="a" name="table">
        <attribute key="type" value="door" />
    </item>
    <item id="1639" article="a" name="table">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item fromid="1640" toid="1641" article="a" name="table">
        <attribute key="type" value="door" />
    </item>
    <item fromid="1642" toid="1645" article="an" name="altar stone" />
    <item fromid="1646" toid="1649" article="a" name="throne" />
    <item id="1650" article="a" name="wooden chair">
        <attribute key="rotateTo" value="1651" />
    </item>
    <item id="1651" article="a" name="wooden chair">
        <attribute key="rotateTo" value="1652" />
    </item>
    <item id="1652" article="a" name="wooden chair">
        <attribute key="rotateTo" value="1653" />
    </item>
    <item id="1653" article="a" name="wooden chair">
        <attribute key="rotateTo" value="1650" />
    </item>
    <item fromid="1654" toid="1657" article="a" name="throne" />
    <item id="1658" article="a" name="sofa chair">
        <attribute key="rotateTo" value="1660" />
    </item>
    <item id="1659" article="a" name="sofa chair">
        <attribute key="rotateTo" value="1661" />
    </item>
    <item id="1660" article="a" name="sofa chair">
        <attribute key="rotateTo" value="1659" />
    </item>
    <item id="1661" article="a" name="sofa chair">
        <attribute key="rotateTo" value="1658" />
    </item>
    <item fromid="1662" toid="1665" article="a" name="bench" />
    <item id="1666" article="a" name="red cushioned chair">
        <attribute key="rotateTo" value="1668" />
    </item>
    <item id="1667" article="a" name="red cushioned chair">
        <attribute key="rotateTo" value="1669" />
    </item>
    <item id="1668" article="a" name="red cushioned chair">
        <attribute key="rotateTo" value="1667" />
    </item>
    <item id="1669" article="a" name="red cushioned chair">
        <attribute key="rotateTo" value="1666" />
    </item>
    <item id="1670" article="a" name="green cushioned chair">
        <attribute key="rotateTo" value="1672" />
    </item>
    <item id="1671" article="a" name="green cushioned chair">
        <attribute key="rotateTo" value="1673" />
    </item>
    <item id="1672" article="a" name="green cushioned chair">
        <attribute key="rotateTo" value="1671" />
    </item>
    <item id="1673" article="a" name="green cushioned chair">
        <attribute key="rotateTo" value="1670" />
    </item>
    <item id="1674" article="a" name="rocking chair">
        <attribute key="rotateTo" value="1676" />
    </item>
    <item id="1675" article="a" name="rocking chair">
        <attribute key="rotateTo" value="1677" />
    </item>
    <item id="1676" article="a" name="rocking chair">
        <attribute key="rotateTo" value="1675" />
    </item>
    <item id="1677" article="a" name="rocking chair">
        <attribute key="rotateTo" value="1674" />
    </item>
    <item id="1678" article="a" name="Toy box"></item>
    <item id="1679" article="a" name="green pillow">
        <attribute key="weight" value="1200" />
    </item>
    <item id="1680" article="a" name="red pillow">
        <attribute key="weight" value="1200" />
    </item>
    <item id="1681" article="a" name="blue pillow">
        <attribute key="weight" value="1200" />
    </item>
    <item id="1682" article="an" name="Pikachu toy"></item>
    <item id="1683" article="a" name="Pikachu toy"></item>
    <item id="1684" article="a" name="Pikachu toy"></item>
    <item id="1685" article="a" name="Pikachu toy"></item>
    <item id="1686" article="a" name="Pikachu toy"></item>
    <item id="1687" article="a" name="Pikachu toy"></item>
    <item id="1688" article="a" name="Pikachu toy"></item>
    <item id="1689" article="a" name="yellow round pillow">
        <attribute key="weight" value="1600" />
    </item>
    <item id="1690" article="a" name="Pikachu toy"></item>
    <item id="1691" article="a" name="Pikachu toy"></item>
    <item id="1692" article="a" name="Pikachu toy"></item>
    <item id="1693" article="a" name="turqoise round pillow">
        <attribute key="weight" value="1500" />
    </item>
    <item fromid="1694" toid="1709" article="a" name="sofa" />
    <item fromid="1710" toid="1713" article="a" name="wardrobe">
        <attribute key="containerSize" value="6" />
    </item>
    <item id="1714" name="drawers">
        <attribute key="rotateTo" value="1715" />
        <attribute key="containerSize" value="10" />
    </item>
    <item id="1715" name="drawers">
        <attribute key="rotateTo" value="1716" />
        <attribute key="containerSize" value="10" />
    </item>
    <item id="1716" name="drawers">
        <attribute key="rotateTo" value="1717" />
        <attribute key="containerSize" value="10" />
    </item>
    <item id="1717" name="drawers">
        <attribute key="rotateTo" value="1714" />
        <attribute key="containerSize" value="10" />
    </item>
    <item fromid="1718" toid="1723" article="a" name="bookcase">
        <attribute key="containerSize" value="6" />
    </item>
    <item id="1724" article="a" name="dresser">
        <attribute key="rotateTo" value="1725" />
        <attribute key="containerSize" value="10" />
    </item>
    <item id="1725" article="a" name="dresser">
        <attribute key="rotateTo" value="1726" />
        <attribute key="containerSize" value="10" />
    </item>
    <item id="1726" article="a" name="dresser">
        <attribute key="rotateTo" value="1727" />
        <attribute key="containerSize" value="10" />
    </item>
    <item id="1727" article="a" name="dresser">
        <attribute key="rotateTo" value="1724" />
        <attribute key="containerSize" value="10" />
    </item>
    <item id="1728" article="a" name="pendulum clock">
        <attribute key="rotateTo" value="1729" />
    </item>
    <item id="1729" article="a" name="pendulum clock">
        <attribute key="rotateTo" value="1730" />
    </item>
    <item id="1730" article="a" name="pendulum clock">
        <attribute key="rotateTo" value="1731" />
    </item>
    <item id="1731" article="a" name="pendulum clock">
        <attribute key="rotateTo" value="1728" />
    </item>
    <item id="1732" article="a" name="locker">
        <attribute key="rotateTo" value="1733" />
        <attribute key="containerSize" value="6" />
    </item>
    <item id="1733" article="a" name="locker">
        <attribute key="rotateTo" value="1734" />
        <attribute key="containerSize" value="6" />
    </item>
    <item id="1734" article="a" name="locker">
        <attribute key="rotateTo" value="1735" />
        <attribute key="containerSize" value="6" />
    </item>
    <item id="1735" article="a" name="locker">
        <attribute key="rotateTo" value="1732" />
        <attribute key="containerSize" value="6" />
    </item>
    <item id="1736" article="a" name="standing mirror">
        <attribute key="rotateTo" value="1737" />
    </item>
    <item id="1737" article="a" name="standing mirror">
        <attribute key="rotateTo" value="1736" />
    </item>
    <item id="1738" article="a" name="box">
        <attribute key="weight" value="8000" />
        <attribute key="containerSize" value="15" />
    </item>
    <item id="1739" article="a" name="crate">
        <attribute key="weight" value="8000" />
        <attribute key="containerSize" value="15" />
    </item>
    <item id="1740" article="a" name="chest">
        <attribute key="weight" value="12000" />
        <attribute key="rotateTo" value="1748" />
        <attribute key="containerSize" value="15" />
    </item>
    <item id="1741" article="a" name="box">
        <attribute key="weight" value="12000" />
        <attribute key="containerSize" value="10" />
    </item>
    <item fromid="1742" toid="1745" article="a" name="wooden coffin" />
    <item id="1746" article="a" name="treasure chest">
        <attribute key="weight" value="12000" />
        <attribute key="containerSize" value="15" />
    </item>
    <item id="1747" article="a" name="chest">
        <attribute key="weight" value="12000" />
        <attribute key="rotateTo" value="1749" />
        <attribute key="containerSize" value="15" />
    </item>
    <item id="1748" article="a" name="chest">
        <attribute key="weight" value="12000" />
        <attribute key="rotateTo" value="1747" />
        <attribute key="containerSize" value="15" />
    </item>
    <item id="1749" article="a" name="chest">
        <attribute key="weight" value="12000" />
        <attribute key="rotateTo" value="1740" />
        <attribute key="containerSize" value="15" />
    </item>
    <item id="1750" article="a" name="large trunk">
        <attribute key="rotateTo" value="1752" />
        <attribute key="containerSize" value="18" />
    </item>
    <item id="1751" article="a" name="large trunk">
        <attribute key="rotateTo" value="1753" />
        <attribute key="containerSize" value="18" />
    </item>
    <item id="1752" article="a" name="large trunk">
        <attribute key="rotateTo" value="1751" />
        <attribute key="containerSize" value="18" />
    </item>
    <item id="1753" article="a" name="large trunk">
        <attribute key="rotateTo" value="1750" />
        <attribute key="containerSize" value="18" />
    </item>
    <item id="1754" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="2" />
        <attribute key="maleTransformTo" value="1762" />
        <attribute key="femaleTransformTo" value="7778" />
    </item>
    <item id="1755" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="0" />
        <attribute key="maleTransformTo" value="1763" />
        <attribute key="femaleTransformTo" value="1763" />
    </item>
    <item id="1756" article="a" name="cot">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="1" />
        <attribute key="maleTransformTo" value="1768" />
        <attribute key="femaleTransformTo" value="7783" />
    </item>
    <item id="1757" article="a" name="cot">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="3" />
        <attribute key="maleTransformTo" value="1769" />
        <attribute key="femaleTransformTo" value="7784" />
    </item>
    <item id="1758" article="a" name="cot">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="2" />
        <attribute key="maleTransformTo" value="1766" />
        <attribute key="femaleTransformTo" value="7781" />
    </item>
    <item id="1759" article="a" name="cot">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="0" />
        <attribute key="maleTransformTo" value="1767" />
        <attribute key="femaleTransformTo" value="7782" />
    </item>
    <item id="1760" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="1" />
        <attribute key="maleTransformTo" value="1764" />
        <attribute key="femaleTransformTo" value="7779" />
    </item>
    <item id="1761" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="3" />
        <attribute key="maleTransformTo" value="1765" />
        <attribute key="femaleTransformTo" value="7780" />
    </item>
    <item id="1762" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="2" />
        <attribute key="transformTo" value="1754" />
    </item>
    <item id="1763" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="0" />
        <attribute key="transformTo" value="1755" />
    </item>
    <item id="1764" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="1" />
        <attribute key="transformTo" value="1760" />
    </item>
    <item id="1765" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="3" />
        <attribute key="transformTo" value="1761" />
    </item>
    <item id="1766" article="a" name="cot">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="2" />
        <attribute key="transformTo" value="1758" />
    </item>
    <item id="1767" article="a" name="cot">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="0" />
        <attribute key="transformTo" value="1759" />
    </item>
    <item id="1768" article="a" name="cot">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="1" />
        <attribute key="transformTo" value="1756" />
    </item>
    <item id="1769" article="a" name="cot">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="3" />
        <attribute key="transformTo" value="1757" />
    </item>
    <item id="1770" article="a" name="barrel">
        <attribute key="containerSize" value="25" />
    </item>
    <item id="1771" article="a" name="water cask">
        <attribute key="fluidSource" value="water" />
    </item>
    <item id="1772" article="a" name="beer cask">
        <attribute key="fluidSource" value="beer" />
    </item>
    <item id="1773" article="a" name="wine cask">
        <attribute key="fluidSource" value="wine" />
    </item>
    <item id="1774" article="a" name="barrel">
        <attribute key="containerSize" value="25" />
    </item>
    <item id="1775" article="a" name="trough" />
    <item id="1776" article="a" name="lemonade cask">
        <attribute key="fluidSource" value="lemonade" />
    </item>
    <item id="1777" article="a" name="dustbin">
        <attribute key="type" value="trashholder" />
        <attribute key="allowpickupable" value="1" />
    </item>
    <item fromid="1778" toid="1785" article="a" name="big wine cask">
        <attribute key="fluidSource" value="wine" />
    </item>
    <item fromid="1786" toid="1793" article="an" name="oven" />
    <item fromid="1794" toid="1802" article="a" name="red carpet" />
    <item fromid="1803" toid="1808" article="an" name="oriental carpet" />
    <item id="1809" article="a" name="painting" />
    <item id="1810" article="a" name="blackboard" />
    <item id="1811" article="a" name="blackboard">
        <attribute key="writeable" value="1" />
        <attribute key="maxTextLen" value="1024" />
    </item>
    <item fromid="1812" toid="1813" article="a" name="tapestry" />
    <item id="1814" article="a" name="painting" />
    <item id="1815" article="a" name="blackboard" />
    <item fromid="1816" toid="1817" article="a" name="mirror" />
    <item id="1818" article="a" name="blackboard">
        <attribute key="writeable" value="1" />
        <attribute key="maxTextLen" value="200" />
    </item>
    <item id="1819" article="a" name="banner" />
    <item id="1820" article="an" name="emblem" />
    <item fromid="1821" toid="1824" article="a" name="banner" />
    <item fromid="1825" toid="1830" article="a" name="painting" />
    <item fromid="1831" toid="1842" article="a" name="picture" />
    <item fromid="1843" toid="1844" article="a" name="wall mirror" />
    <item id="1845" article="a" name="wall mirror">
        <attribute key="weight" value="600" />
    </item>
    <item fromid="1846" toid="1847" article="a" name="wall mirror" />
    <item id="1848" article="a" name="wall mirror">
        <attribute key="weight" value="1000" />
    </item>
    <item fromid="1849" toid="1850" article="a" name="wall mirror" />
    <item id="1851" article="a" name="wall mirror">
        <attribute key="weight" value="700" />
    </item>
    <item fromid="1852" toid="1854" article="a" name="picture">
        <attribute key="weight" value="200" />
    </item>
    <item fromid="1855" toid="1856" article="a" name="purple tapestry">
        <attribute key="forceSerialize" value="1" />
    </item>
    <item id="1857" article="a" name="purple tapestry">
        <attribute key="weight" value="1000" />
    </item>
    <item fromid="1858" toid="1859" article="a" name="green tapestry">
        <attribute key="forceSerialize" value="1" />
    </item>
    <item id="1860" article="a" name="green tapestry">
        <attribute key="weight" value="1000" />
    </item>
    <item fromid="1861" toid="1862" article="a" name="yellow tapestry">
        <attribute key="forceSerialize" value="1" />
    </item>
    <item id="1863" article="a" name="yellow tapestry">
        <attribute key="weight" value="1000" />
    </item>
    <item fromid="1864" toid="1865" article="an" name="orange tapestry">
        <attribute key="forceSerialize" value="1" />
    </item>
    <item id="1866" article="an" name="orange tapestry">
        <attribute key="weight" value="1000" />
    </item>
    <item fromid="1867" toid="1868" article="a" name="red tapestry">
        <attribute key="forceSerialize" value="1" />
    </item>
    <item id="1869" article="a" name="red tapestry">
        <attribute key="weight" value="1000" />
    </item>
    <item fromid="1870" toid="1871" article="a" name="blue tapestry">
        <attribute key="forceSerialize" value="1" />
    </item>
    <item id="1872" article="a" name="blue tapestry">
        <attribute key="weight" value="1000" />
    </item>
    <item fromid="1873" toid="1876" article="a" name="cuckoo clock">
        <attribute key="forceSerialize" value="1" />
    </item>
    <item id="1877" article="a" name="cuckoo clock">
        <attribute key="weight" value="1500" />
    </item>
    <item fromid="1878" toid="1879" article="a" name="white tapestry">
        <attribute key="forceSerialize" value="1" />
    </item>
    <item id="1880" article="a" name="white tapestry">
        <attribute key="weight" value="1000" />
    </item>
    <item id="1881" article="a" name="cuckoo clock">
        <attribute key="weight" value="1500" />
    </item>
    <item fromid="1882" toid="1883" article="a" name="demon trophy" />
    <item fromid="1884" toid="1885" article="a" name="wolf trophy" />
    <item fromid="1886" toid="1887" article="an" name="orc trophy" />
    <item fromid="1888" toid="1889" article="a" name="behemnot trophy" />
    <item fromid="1890" toid="1891" article="a" name="deer trophy" />
    <item fromid="1892" toid="1893" article="a" name="cyclops trophy" />
    <item fromid="1894" toid="1895" article="a" name="dragon trophy" />
    <item fromid="1896" toid="1897" article="an" name="lion trophy" />
    <item fromid="1898" toid="1899" article="a" name="minotaur trophy" />
    <item fromid="1900" toid="1905" article="a" name="bloodspot" />
    <item fromid="1906" toid="1908" name="cobwebs" />
    <item fromid="1909" toid="1920" article="a" name="flowery wall" />
    <item fromid="1921" toid="1933" article="a" name="mossy wall" />
    <item fromid="1935" toid="1937" article="a" name="mossy wall" />
    <item fromid="1939" toid="1944" article="a" name="mossy wall" />
    <item fromid="1945" toid="1946" article="a" name="switch" />
    <item id="1947" article="a" name="Pikachu toy">
        <attribute key="weight" value="100" />
    </item>
    <item id="1948" article="a" name="Pikachu toy">
        <attribute key="weight" value="100" />
    </item>
    <item id="1949" article="a" name="Pikachu toy">
        <attribute key="weight" value="100" />
    </item>
    <item id="1950" article="a" name="Pikachu toy">
        <attribute key="weight" value="100" />
    </item>
    <item id="1951" article="a" name="Pikachu toy">
        <attribute key="weight" value="100" />
    </item>
    <item id="1952" article="a" name="document">
        <attribute key="weight" value="150" />
        <attribute key="writeable" value="1" />
        <attribute key="maxTextLen" value="512" />
        <attribute key="writeOnceItemId" value="1968" />
    </item>
    <item id="1953" article="a" name="Pikachu toy">
        <attribute key="weight" value="100" />
    </item>
    <item id="1954" article="a" name="Pikachu toy">
        <attribute key="weight" value="100" />
    </item>
    <item id="1955" article="a" name="Pikachu toy">
        <attribute key="weight" value="100" />
    </item>
    <item id="1956" article="a" name="map">
        <attribute key="weight" value="830" />
    </item>
    <item id="1957" article="a" name="map">
        <attribute key="weight" value="790" />
    </item>
    <item id="1958" article="a" name="Pikachu toy">
        <attribute key="weight" value="100" />
    </item>
    <item id="1959" article="a" name="Pikachu toy">
        <attribute key="weight" value="100" />
    </item>
    <item fromid="1960" toid="1963" article="a" name="Pikachu toy">
        <attribute key="weight" value="1300" />
    </item>
    <item id="1964" article="a" name="book">
        <attribute key="weight" value="2000" />
    </item>
    <item fromid="1965" toid="1966" article="a" name="Pikachu toy">
        <attribute key="weight" value="100" />
    </item>
    <item id="1967" article="a" name="Pikachu toy">
        <attribute key="weight" value="200" />
    </item>
    <item id="1968" article="a" name="document">
        <attribute key="weight" value="150" />
    </item>
    <item id="1969" article="a" name="written parchment">
        <attribute key="weight" value="200" />
    </item>
    <item id="1970" article="a" name="Pikachu toy">
        <attribute key="weight" value="100" />
    </item>
    <item fromid="1971" toid="1975" article="a" name="book">
        <attribute key="weight" value="1300" />
    </item>
    <item id="1976" article="a" name="gemmed book">
        <attribute key="weight" value="1300" />
    </item>
    <item fromid="1977" toid="1978" article="a" name="Pikachu toy">
        <attribute key="weight" value="1300" />
    </item>
    <item id="1979" article="a" name="book">
        <attribute key="weight" value="1900" />
    </item>
    <item id="1980" article="a" name="book">
        <attribute key="weight" value="1100" />
    </item>
    <item id="1981" article="a" name="book">
        <attribute key="weight" value="1000" />
    </item>
    <item id="1982" article="a" name="purple tome">
        <attribute key="weight" value="1900" />
        <attribute key="description" value="It is a volume of The Mystic Secrets of Tibia." />
    </item>
    <item id="1983" article="a" name="green tome">
        <attribute key="weight" value="1900" />
        <attribute key="description" value="It is a volume of The Mystic Secrets of Tibia." />
    </item>
    <item id="1984" article="a" name="blue tome">
        <attribute key="weight" value="1900" />
        <attribute key="description" value="It is a volume of The Mystic Secrets of Tibia." />
    </item>
    <item id="1985" article="a" name="grey tome">
        <attribute key="weight" value="1900" />
        <attribute key="description" value="It is a volume of The Mystic Secrets of Tibia." />
    </item>
    <item id="1986" article="a" name="red tome">
        <attribute key="weight" value="1900" />
        <attribute key="description" value="It is a volume of The Mystic Secrets of Tibia." />
    </item>
    <item id="1988" article="a" name="badge case">
        <attribute key="weight" value="0" />
        <attribute key="description" value="This is a small container to keep your earned badges from gym leaders." />
        <attribute key="containerSize" value="8" />
    </item>
    <item id="1987" article="a" name="pokemon trainer backpack">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="32" />
        <attribute key="description" value="This is the backpack you use to carry your pokemons and items." />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="1989" article="a" name="basket">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="5" />
    </item>
    <item id="1990" article="a" name="present">
        <attribute key="weight" value="600" />
        <attribute key="containerSize" value="5" />
    </item>
    <item id="1991" article="a" name="green bag">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="8" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="1992" article="a" name="yellow bag">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="8" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="1993" article="a" name="red bag">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="8" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="1994" article="a" name="purple bag">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="8" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="1995" article="a" name="blue bag">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="8" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="1996" article="a" name="grey bag">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="8" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="1997" article="a" name="golden bag">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="8" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="1998" article="a" name="green backpack">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="20" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="1999" article="a" name="yellow backpack">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="20" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="2000" article="a" name="red backpack">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="20" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="2001" article="a" name="purple backpack">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="20" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="2002" article="a" name="blue backpack">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="20" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="2003" article="a" name="grey backpack">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="20" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="2004" article="a" name="golden backpack">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="20" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="2005" article="a" name="bucket">
        <attribute key="weight" value="2000" />
    </item>
    <item id="2006" article="a" name="vial">
        <attribute key="weight" value="180" />
    </item>
    <item id="2007" article="a" name="blue bottle">
        <attribute key="weight" value="250" />
    </item>
    <item id="2008" article="a" name="vase">
        <attribute key="weight" value="940" />
    </item>
    <item id="2009" article="a" name="green flask">
        <attribute key="weight" value="300" />
    </item>
    <item id="2010" article="a" name="broken bottle">
        <attribute key="weight" value="100" />
    </item>
    <item id="2011" article="a" name="blue amphora">
        <attribute key="weight" value="850" />
    </item>
    <item id="2012" article="a" name="mug">
        <attribute key="weight" value="250" />
    </item>
    <item id="2013" article="a" name="cup">
        <attribute key="weight" value="200" />
    </item>
    <item id="2014" article="a" name="jug">
        <attribute key="weight" value="750" />
    </item>
    <item id="2015" article="a" name="brown flask">
        <attribute key="weight" value="250" />
    </item>
    <item id="2016" article="a" name="pool">
        <attribute key="decayTo" value="2017" />
        <attribute key="duration" value="45" />
    </item>
    <item id="2017" article="a" name="pool">
        <attribute key="decayTo" value="2018" />
        <attribute key="duration" value="45" />
    </item>
    <item id="2018" article="a" name="pool">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
    </item>
    <item id="2019" article="a" name="pool">
        <attribute key="decayTo" value="2020" />
        <attribute key="duration" value="45" />
    </item>
    <item id="2020" article="a" name="pool">
        <attribute key="decayTo" value="2021" />
        <attribute key="duration" value="45" />
    </item>
    <item id="2021" article="a" name="pool">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="60" />
    </item>
    <item id="2022" article="a" name="broken bottle">
        <attribute key="weight" value="80" />
    </item>
    <item id="2023" article="an" name="amphora">
        <attribute key="weight" value="9700" />
    </item>
    <item id="2024" article="a" name="broken brown glass">
        <attribute key="weight" value="100" />
    </item>
    <item id="2025" article="a" name="pool">
        <attribute key="decayTo" value="2026" />
        <attribute key="duration" value="45" />
    </item>
    <item id="2026" article="a" name="pool">
        <attribute key="decayTo" value="2027" />
        <attribute key="duration" value="45" />
    </item>
    <item id="2027" article="a" name="pool">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="60" />
    </item>
    <item id="2028" article="a" name="pool">
        <attribute key="decayTo" value="2029" />
        <attribute key="duration" value="45" />
    </item>
    <item id="2029" article="a" name="pool">
        <attribute key="decayTo" value="2030" />
        <attribute key="duration" value="45" />
    </item>
    <item id="2030" article="a" name="pool">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="60" />
    </item>
    <item id="2031" article="a" name="waterskin">
        <attribute key="weight" value="800" />
    </item>
    <item id="2032" article="a" name="bowl">
        <attribute key="weight" value="380" />
    </item>
    <item id="2033" article="a" name="golden mug">
        <attribute key="weight" value="470" />
    </item>
    <item id="2034" article="a" name="large amphora" />
    <item id="2035" article="a" name="plate">
        <attribute key="weight" value="150" />
    </item>
    <item id="2036" article="a" name="watch">
        <attribute key="weight" value="50" />
    </item>
    <item id="2037" article="a" name="wall lamp" />
    <item id="2038" article="a" name="lit wall lamp" />
    <item id="2039" article="a" name="wall lamp" />
    <item id="2040" article="a" name="lit wall lamp" />
    <item id="2041" article="a" name="candelabrum">
        <attribute key="weight" value="500" />
        <attribute key="stopduration" value="1" />
    </item>
    <item id="2042" article="a" name="candelabrum">
        <attribute key="weight" value="500" />
        <attribute key="decayTo" value="2043" />
        <attribute key="duration" value="180" />
    </item>
    <item id="2043" article="a" name="used candelabrum">
        <attribute key="weight" value="300" />
    </item>
    <item id="2044" article="a" name="lamp">
        <attribute key="weight" value="3000" />
        <attribute key="stopduration" value="1" />
    </item>
    <item id="2045" article="a" name="lamp">
        <attribute key="weight" value="3000" />
        <attribute key="decayTo" value="2046" />
        <attribute key="duration" value="180" />
    </item>
    <item id="2046" article="a" name="lamp">
        <attribute key="weight" value="3000" />
    </item>
    <item id="2047" article="a" name="candlestick">
        <attribute key="weight" value="300" />
        <attribute key="stopduration" value="1" />
    </item>
    <item id="2048" article="a" name="candlestick">
        <attribute key="weight" value="300" />
        <attribute key="decayTo" value="2049" />
        <attribute key="duration" value="240" />
    </item>
    <item id="2049" article="a" name="candlestick">
        <attribute key="weight" value="200" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="60" />
    </item>
    <item id="2050" article="a" name="torch">
        <attribute key="weight" value="500" />
        <attribute key="stopduration" value="1" />
    </item>
    <item id="2051" article="a" name="torch">
        <attribute key="weight" value="500" />
        <attribute key="decayTo" value="2053" />
        <attribute key="duration" value="180" />
    </item>
    <item id="2052" article="a" name="torch">
        <attribute key="weight" value="500" />
        <attribute key="stopduration" value="1" />
    </item>
    <item id="2053" article="a" name="torch">
        <attribute key="weight" value="500" />
        <attribute key="decayTo" value="2055" />
        <attribute key="duration" value="120" />
    </item>
    <item id="2054" article="a" name="torch">
        <attribute key="weight" value="500" />
        <attribute key="stopduration" value="1" />
    </item>
    <item id="2055" article="a" name="torch">
        <attribute key="weight" value="500" />
        <attribute key="decayTo" value="2056" />
        <attribute key="duration" value="120" />
    </item>
    <item id="2056" article="a" name="torch">
        <attribute key="weight" value="500" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="60" />
    </item>
    <item id="2057" article="a" name="candelabrum">
        <attribute key="weight" value="500" />
        <attribute key="decayTo" value="2041" />
        <attribute key="duration" value="180" />
    </item>
    <item id="2058" article="a" name="torch bearer" />
    <item id="2059" article="a" name="lit torch bearer" />
    <item id="2060" article="a" name="torch bearer" />
    <item id="2061" article="a" name="lit torch bearer" />
    <item id="2062" article="a" name="small oil lamp">
        <attribute key="weight" value="100" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="60" />
        <attribute key="stopduration" value="1" />
    </item>
    <item id="2063" article="a" name="small oil lamp">
        <attribute key="weight" value="100" />
        <attribute key="stopduration" value="1" />
    </item>
    <item fromid="2064" toid="2065" article="a" name="table lamp" />
    <item fromid="2066" toid="2069" article="a" name="wall lamp" />
    <item id="2070" article="a" name="flute">
        <attribute key="weight" value="200" />
    </item>
    <item id="2071" article="a" name="lyre">
        <attribute key="weight" value="1250" />
    </item>
    <item id="2072" article="a" name="lute">
        <attribute key="weight" value="3400" />
    </item>
    <item id="2073" article="a" name="drum">
        <attribute key="weight" value="3200" />
    </item>
    <item id="2074" name="panpipes">
        <attribute key="weight" value="100" />
    </item>
    <item id="2075" article="a" name="simple fanfare">
        <attribute key="weight" value="2200" />
    </item>
    <item id="2076" article="a" name="fanfare">
        <attribute key="weight" value="2300" />
    </item>
    <item id="2077" article="a" name="royal fanfare">
        <attribute key="weight" value="2300" />
    </item>
    <item id="2078" article="a" name="post horn">
        <attribute key="weight" value="1500" />
    </item>
    <item id="2079" article="a" name="horn.">
        <attribute key="weight" value="100" />
    </item>
    <item id="2080" article="a" name="piano">
        <attribute key="rotateTo" value="2082" />
    </item>
    <item id="2081" article="a" name="piano">
        <attribute key="rotateTo" value="2083" />
    </item>
    <item id="2082" article="a" name="piano">
        <attribute key="rotateTo" value="2081" />
    </item>
    <item id="2083" article="a" name="piano">
        <attribute key="rotateTo" value="2080" />
    </item>
    <item id="2084" article="a" name="harp">
        <attribute key="rotateTo" value="2085" />
    </item>
    <item id="2085" article="a" name="harp">
        <attribute key="rotateTo" value="2084" />
    </item>
    <item id="2086" article="a" name="purple key">
        <attribute key="type" value="key" />
        <attribute key="weight" value="100" />
    </item>
    <item id="2087" article="a" name="wooden key">
        <attribute key="type" value="key" />
        <attribute key="weight" value="100" />
    </item>
    <item id="2088" article="a" name="silver key">
        <attribute key="type" value="key" />
        <attribute key="weight" value="100" />
    </item>
    <item id="2089" article="a" name="copper key">
        <attribute key="type" value="key" />
        <attribute key="weight" value="100" />
    </item>
    <item id="2090" article="a" name="crystal key">
        <attribute key="type" value="key" />
        <attribute key="weight" value="100" />
    </item>
    <item id="2091" article="a" name="golden key">
        <attribute key="type" value="key" />
        <attribute key="weight" value="100" />
    </item>
    <item id="2092" article="a" name="bone key">
        <attribute key="type" value="key" />
        <attribute key="weight" value="100" />
    </item>
    <item id="2093" article="a" name="water-pipe">
        <attribute key="weight" value="200" />
    </item>
    <item fromid="2094" toid="2095" article="a" name="bird cage" />
    <item fromid="2096" toid="2097" article="a" name="pumpkinhead">
        <attribute key="weight" value="500" />
    </item>
    <item id="2098" article="a" name="globe" />
    <item id="2099" article="a" name="water-pipe">
        <attribute key="weight" value="300" />
    </item>
    <item id="2100" name="god flowers">
        <attribute key="weight" value="1100" />
    </item>
    <item id="2101" article="an" name="indoor plant" />
    <item id="2102" article="a" name="flower bowl">
        <attribute key="weight" value="1100" />
    </item>
    <item id="2103" article="a" name="honey flower">
        <attribute key="weight" value="1000" />
    </item>
    <item id="2104" article="a" name="potted flower">
        <attribute key="weight" value="2300" />
    </item>
    <item id="2105" article="a" name="christmas tree" />
    <item id="2106" article="a" name="big flowerpot" />
    <item id="2107" article="an" name="exotic flower">
        <attribute key="weight" value="100" />
    </item>
    <item id="2108" article="a" name="wooden doll">
        <attribute key="weight" value="860" />
    </item>
    <item id="2109" article="a" name="football" />
    <item id="2110" article="a" name="doll">
        <attribute key="weight" value="650" />
    </item>
    <item id="2111" article="a" name="snowball" plural="snowballs">
        <attribute key="weight" value="80" />
        <attribute key="weaponType" value="distance" />
        <attribute key="shootType" value="snowball" />
        <attribute key="range" value="5" />
        <attribute key="ammoAction" value="removecount" />
    </item>
    <item id="2112" article="a" name="teddy bear">
        <attribute key="weight" value="700" />
    </item>
    <item id="2113" article="a" name="model ship">
        <attribute key="weight" value="1300" />
    </item>
    <item id="2114" article="a" name="piggy bank">
        <attribute key="weight" value="150" />
    </item>
    <item id="2115" article="a" name="broken piggy bank">
        <attribute key="weight" value="100" />
    </item>
    <item id="2116" article="a" name="rocking horse">
        <attribute key="rotateTo" value="2117" />
    </item>
    <item id="2117" article="a" name="rocking horse">
        <attribute key="rotateTo" value="2118" />
    </item>
    <item id="2118" article="a" name="rocking horse">
        <attribute key="rotateTo" value="2119" />
    </item>
    <item id="2119" article="a" name="rocking horse">
        <attribute key="rotateTo" value="2116" />
    </item>
    <item id="2120" article="a" name="pokerope">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Use this tool to get out of hole." />
        <attribute key="slotType" value="head" />
    </item>
    <item id="2121" article="a" name="wedding ring">
        <attribute key="weight" value="40" />
        <attribute key="slotType" value="ring" />
    </item>
    <item id="2122" article="an" name="elven brooch">
        <attribute key="weight" value="100" />
    </item>
    <item id="2123" article="a" name="ring of the sky">
        <attribute key="weight" value="40" />
        <attribute key="slotType" value="ring" />
    </item>
    <item id="2124" article="a" name="crystal ring">
        <attribute key="weight" value="90" />
        <attribute key="slotType" value="ring" />
    </item>
    <item id="2125" article="a" name="crystal necklace">
        <attribute key="weight" value="490" />
        <attribute key="slotType" value="necklace" />
    </item>
    <item id="2126" article="a" name="bronzen necklace">
        <attribute key="weight" value="700" />
        <attribute key="slotType" value="necklace" />
    </item>
    <item id="2127" article="an" name="emerald bangle">
        <attribute key="weight" value="170" />
        <attribute key="slotType" value="ring" />
    </item>
    <item id="2128" article="a" name="crown">
        <attribute key="weight" value="1500" />
    </item>
    <item id="2129" article="a" name="wolf tooth chain">
        <attribute key="weight" value="330" />
        <attribute key="slotType" value="necklace" />
    </item>
    <item id="2130" article="a" name="golden amulet">
        <attribute key="description" value="Many gems glitter on the amulet." />
        <attribute key="weight" value="830" />
        <attribute key="slotType" value="necklace" />
    </item>
    <item id="2131" article="a" name="star amulet">
        <attribute key="weight" value="660" />
        <attribute key="slotType" value="necklace" />
    </item>
    <item id="2132" article="a" name="silver necklace">
        <attribute key="weight" value="550" />
        <attribute key="slotType" value="necklace" />
    </item>
    <item id="2133" article="a" name="ruby necklace">
        <attribute key="weight" value="570" />
        <attribute key="slotType" value="necklace" />
    </item>
    <item id="2134" article="a" name="silver brooch">
        <attribute key="weight" value="110" />
    </item>
    <item id="2135" article="a" name="scarab amulet">
        <attribute key="weight" value="120" />
        <attribute key="slotType" value="necklace" />
    </item>
    <item id="2136" article="a" name="demonbone amulet">
        <attribute key="weight" value="700" />
        <attribute key="slotType" value="necklace" />
    </item>
    <item id="2137" name="some golden fruits">
        <attribute key="weight" value="300" />
    </item>
    <item id="2138" article="a" name="starlight amulet">
        <attribute key="weight" value="5200" />
        <attribute key="armor" value="3" />
        <attribute key="slotType" value="necklace" />
    </item>
    <item id="2139" article="an" name="ancient tiara">
        <attribute key="weight" value="450" />
        <attribute key="slotType" value="necklace" />
    </item>
    <item id="2140" article="a" name="holy scarab">
        <attribute key="weight" value="500" />
    </item>
    <item id="2141" article="a" name="holy falcon">
        <attribute key="weight" value="840" />
    </item>
    <item id="2142" article="an" name="ancient amulet">
        <attribute key="weight" value="840" />
        <attribute key="slotType" value="necklace" />
    </item>
    <item id="2143" article="a" name="blue bar" plural="blue bars">
        <attribute key="weight" value="0" />
    </item>
    <item id="2144" article="a" name="silver bar" plural="silver bars">
        <attribute key="weight" value="0" />
    </item>
    <item id="2145" article="a" name="small diamond" plural="small diamonds">
        <attribute key="weight" value="10" />
    </item>
    <item id="2146" article="a" name="gold bar" plural="gold bars">
        <attribute key="weight" value="0" />
    </item>
    <item id="17745" article="a" name="pinkan fruit" plural="pinkan fruits">
        <attribute key="weight" value="0" />
    </item>
    <item id="2147" article="a" name="small ruby" plural="small rubies">
        <attribute key="weight" value="10" />
    </item>
    <item id="2148" article="a" name="dollar note" plural="dollar notes">
        <attribute key="weight" value="0" />
        <attribute key="worth" value="100" />
        <attribute key="description" value="One hundred of these can be converted in a hundred dollar note." />
    </item>
    <item id="2150" article="a" name="small amethyst" plural="small amethysts">
        <attribute key="weight" value="10" />
    </item>
    <item id="2151" article="a" name="talon" plural="talons">
        <attribute key="weight" value="20" />
        <attribute key="description" value="There are many rumours about these magic gems." />
    </item>
    <item id="2152" article="a" name="HD note" plural="HD notes">
        <attribute key="weight" value="0" />
        <attribute key="worth" value="10000" />
        <attribute key="description" value="One hundred of these can be converted in a ten thound dollar note." />
    </item>
    <item id="2153" article="a" name="violet gem">
        <attribute key="weight" value="30" />
    </item>
    <item id="2154" article="a" name="yellow gem">
        <attribute key="weight" value="30" />
    </item>
    <item id="2155" article="a" name="green gem">
        <attribute key="weight" value="150" />
    </item>
    <item id="2156" article="a" name="red gem">
        <attribute key="weight" value="30" />
    </item>
    <item id="2157" article="a" name="gold nugget" plural="gold nuggets">
        <attribute key="weight" value="10" />
    </item>
    <item id="2158" article="a" name="blue gem">
        <attribute key="weight" value="100" />
    </item>
    <item id="2159" article="a" name="KD note" plural="KD notes">
        <attribute key="weight" value="0" />
        <attribute key="worth" value="100000000" />
        <attribute key="description" value="Valuable money!" />
    </item>
    <item id="2160" article="a" name="TD note" plural="TD notes">
        <attribute key="weight" value="0" />
        <attribute key="worth" value="1000000" />
        <attribute key="description" value="Valuable money!" />
    </item>
    <item id="2161" article="a" name="strange talisman">
        <attribute key="weight" value="290" />
        <attribute key="slotType" value="necklace" />
        <attribute key="charges" value="200" />
        <attribute key="showcharges" value="1" />
        <attribute key="absorbPercentEnergy" value="10" />
        <attribute key="showattributes" value="1" />
    </item>
    <item id="2162" article="a" name="magic lightwand">
        <attribute key="weight" value="1500" />
        <attribute key="stopduration" value="1" />
        <attribute key="showduration" value="1" />
    </item>
    <item id="2163" article="a" name="magic lightwand">
        <attribute key="weight" value="1500" />
        <attribute key="decayTo" value="0" />
        <attribute key="showduration" value="1" />
        <attribute key="duration" value="3000" />
    </item>
    <item id="2164" article="a" name="might ring">
        <attribute key="weight" value="100" />
        <attribute key="slotType" value="ring" />
        <attribute key="charges" value="20" />
        <attribute key="showcharges" value="1" />
        <attribute key="absorbPercentAll" value="20" />
    </item>
    <item id="2165" article="a" name="stealth ring">
        <attribute key="weight" value="100" />
        <attribute key="slotType" value="ring" />
        <attribute key="transformEquipTo" value="2202" />
        <attribute key="stopduration" value="1" />
        <attribute key="showduration" value="1" />
    </item>
    <item id="2166" article="a" name="power ring">
        <attribute key="weight" value="80" />
        <attribute key="slotType" value="ring" />
        <attribute key="transformEquipTo" value="2203" />
        <attribute key="stopduration" value="1" />
        <attribute key="showduration" value="1" />
    </item>
    <item id="2167" article="an" name="energy ring">
        <attribute key="weight" value="80" />
        <attribute key="slotType" value="ring" />
        <attribute key="transformEquipTo" value="2204" />
        <attribute key="stopduration" value="1" />
        <attribute key="showduration" value="1" />
    </item>
    <item id="2168" article="a" name="life ring">
        <attribute key="weight" value="80" />
        <attribute key="slotType" value="ring" />
        <attribute key="transformEquipTo" value="2205" />
        <attribute key="stopduration" value="1" />
        <attribute key="showduration" value="1" />
    </item>
    <item id="2169" article="a" name="time ring">
        <attribute key="weight" value="90" />
        <attribute key="slotType" value="ring" />
        <attribute key="transformEquipTo" value="2206" />
        <attribute key="stopduration" value="1" />
        <attribute key="showduration" value="1" />
    </item>
    <item id="2170" article="a" name="silver amulet">
        <attribute key="weight" value="500" />
        <attribute key="slotType" value="necklace" />
        <attribute key="charges" value="200" />
        <attribute key="showcharges" value="1" />
        <attribute key="absorbPercentPoison" value="10" />
        <attribute key="showattributes" value="1" />
    </item>
    <item id="2171" article="a" name="platinum amulet">
        <attribute key="description" value="It is an amulet of protection." />
        <attribute key="weight" value="600" />
        <attribute key="slotType" value="necklace" />
        <attribute key="armor" value="2" />
    </item>
    <item id="2172" article="a" name="bronze amulet">
        <attribute key="weight" value="500" />
        <attribute key="slotType" value="necklace" />
        <attribute key="charges" value="200" />
        <attribute key="showcharges" value="1" />
        <attribute key="absorbPercentManaDrain" value="20" />
        <attribute key="showattributes" value="1" />
    </item>
    <item id="2173" article="an" name="amulet of loss">
        <attribute key="weight" value="420" />
        <attribute key="slotType" value="necklace" />
        <attribute key="charges" value="1" />
        <attribute key="preventDrop" value="1" />
    </item>
    <item id="2174" article="a" name="strange symbol">
        <attribute key="weight" value="200" />
    </item>
    <item id="2175" article="a" name="spellbook">
        <attribute key="description" value="It shows your spells and can also shield against attack when worn." />
        <attribute key="weight" value="5800" />
        <attribute key="defense" value="14" />
        <attribute key="weaponType" value="shield" />
    </item>
    <item id="2176" article="an" name="orb">
        <attribute key="weight" value="800" />
    </item>
    <item id="2177" article="a" name="life crystal">
        <attribute key="weight" value="250" />
    </item>
    <item id="2178" article="a" name="Regeneration T7">
        <attribute key="weight" value="250" />
    </item>
    <item id="2179" article="a" name="gold ring">
        <attribute key="weight" value="100" />
        <attribute key="slotType" value="ring" />
    </item>
    <item id="2180" article="an" name="orb of nature" />
    <item id="2181" article="a" name="terra rod">
        <attribute key="description" value="Small stones are flying from its tip." />
        <attribute key="weight" value="2500" />
        <attribute key="weaponType" value="wand" />
        <attribute key="shootType" value="smallearth" />
        <attribute key="range" value="3" />
    </item>
    <item id="2182" article="a" name="snakebite rod">
        <attribute key="description" value="It seems to twitch and quiver as if trying to escape your grip." />
        <attribute key="weight" value="4300" />
        <attribute key="weaponType" value="wand" />
        <attribute key="shootType" value="smallearth" />
        <attribute key="range" value="3" />
    </item>
    <item id="2183" article="a" name="hailstorm rod">
        <attribute key="description" value="It grants you the power of striking your foes with furious hailstorms." />
        <attribute key="weight" value="2700" />
        <attribute key="weaponType" value="wand" />
        <attribute key="shootType" value="smallice" />
        <attribute key="range" value="3" />
    </item>
    <item id="2184" article="a" name="crystal wand">
        <attribute key="weight" value="2800" />
    </item>
    <item id="2185" article="a" name="necrotic rod">
        <attribute key="description" value="It was brought up from hell to deliver death." />
        <attribute key="weight" value="2300" />
        <attribute key="weaponType" value="wand" />
        <attribute key="shootType" value="death" />
        <attribute key="range" value="3" />
    </item>
    <item id="2186" article="a" name="moonlight rod">
        <attribute key="description" value="Icecold rays of moonlight shimmer on its tip." />
        <attribute key="weight" value="2100" />
        <attribute key="weaponType" value="wand" />
        <attribute key="shootType" value="smallice" />
        <attribute key="range" value="3" />
    </item>
    <item id="2187" article="a" name="wand of inferno">
        <attribute key="description" value="It unleashes the very fires of hell." />
        <attribute key="weight" value="2700" />
        <attribute key="weaponType" value="wand" />
        <attribute key="shootType" value="fire" />
        <attribute key="range" value="3" />
    </item>
    <item id="2188" article="a" name="wand of decay">
        <attribute key="description" value="It is half-rotten itself and reeks terribly." />
        <attribute key="weight" value="2300" />
        <attribute key="weaponType" value="wand" />
        <attribute key="shootType" value="death" />
        <attribute key="range" value="3" />
    </item>
    <item id="2189" article="a" name="wand of cosmic energy">
        <attribute key="description" value="The energy of a radiant star is trapped inside its globe." />
        <attribute key="weight" value="2500" />
        <attribute key="weaponType" value="wand" />
        <attribute key="shootType" value="energy" />
        <attribute key="range" value="3" />
    </item>
    <item id="2190" article="a" name="wand of vortex">
        <attribute key="description" value="Surges of energy rush through the tip of this wand." />
        <attribute key="weight" value="1900" />
        <attribute key="weaponType" value="wand" />
        <attribute key="shootType" value="energy" />
        <attribute key="range" value="3" />
    </item>
    <item id="2191" article="a" name="wand of dragonbreath">
        <attribute key="description" value="Legends say that this wand holds the soul of a young dragon." />
        <attribute key="weight" value="2300" />
        <attribute key="weaponType" value="wand" />
        <attribute key="shootType" value="fire" />
        <attribute key="range" value="3" />
    </item>
    <item id="2192" article="a" name="crystal ball">
        <attribute key="weight" value="3400" />
    </item>
    <item id="2193" article="an" name="ankh">
        <attribute key="weight" value="420" />
    </item>
    <item id="2194" article="a" name="mysterious fetish">
        <attribute key="weight" value="490" />
    </item>
    <item id="2195" name="boots of haste">
        <attribute key="weight" value="750" />
        <attribute key="slotType" value="feet" />
        <attribute key="speed" value="40" />
        <attribute key="showattributes" value="1" />
    </item>
    <item id="2196" article="a" name="broken amulet">
        <attribute key="weight" value="420" />
        <attribute key="slotType" value="necklace" />
    </item>
    <item id="2197" article="a" name="stone skin amulet">
        <attribute key="weight" value="760" />
        <attribute key="slotType" value="necklace" />
        <attribute key="charges" value="5" />
        <attribute key="showcharges" value="1" />
        <attribute key="absorbPercentPhysical" value="80" />
        <attribute key="absorbPercentDeath" value="80" />
        <attribute key="showattributes" value="1" />
    </item>
    <item id="2198" article="an" name="elven amulet">
        <attribute key="weight" value="270" />
        <attribute key="slotType" value="necklace" />
        <attribute key="charges" value="50" />
        <attribute key="showcharges" value="1" />
        <attribute key="absorbPercentAll" value="5" />
        <attribute key="showattributes" value="1" />
    </item>
    <item id="2199" article="a" name="garlic necklace">
        <attribute key="weight" value="380" />
        <attribute key="slotType" value="necklace" />
        <attribute key="charges" value="150" />
        <attribute key="showcharges" value="1" />
        <attribute key="absorbPercentLifeDrain" value="20" />
        <attribute key="showattributes" value="1" />
    </item>
    <item id="2200" article="a" name="protection amulet">
        <attribute key="weight" value="550" />
        <attribute key="slotType" value="necklace" />
        <attribute key="charges" value="250" />
        <attribute key="showcharges" value="1" />
        <attribute key="absorbPercentPhysical" value="6" />
        <attribute key="showattributes" value="1" />
    </item>
    <item id="2201" article="a" name="dragon necklace">
        <attribute key="weight" value="630" />
        <attribute key="slotType" value="necklace" />
        <attribute key="charges" value="200" />
        <attribute key="showcharges" value="1" />
        <attribute key="absorbPercentFire" value="8" />
        <attribute key="showattributes" value="1" />
    </item>
    <item id="2202" article="a" name="stealth ring">
        <attribute key="weight" value="100" />
        <attribute key="slotType" value="ring" />
        <attribute key="decayTo" value="0" />
        <attribute key="transformDeEquipTo" value="2165" />
        <attribute key="duration" value="600" />
        <attribute key="showduration" value="1" />
        <attribute key="invisible" value="1" />
    </item>
    <item id="2203" article="a" name="power ring">
        <attribute key="weight" value="80" />
        <attribute key="slotType" value="ring" />
        <attribute key="decayTo" value="0" />
        <attribute key="transformDeEquipTo" value="2166" />
        <attribute key="skillFist" value="5" />
        <attribute key="duration" value="300" />
        <attribute key="showduration" value="1" />
    </item>
    <item id="2204" article="an" name="energy ring">
        <attribute key="weight" value="80" />
        <attribute key="slotType" value="ring" />
        <attribute key="decayTo" value="0" />
        <attribute key="transformDeEquipTo" value="2167" />
        <attribute key="duration" value="1200" />
        <attribute key="showduration" value="1" />
        <attribute key="manashield" value="1" />
    </item>
    <item id="2205" article="a" name="life ring">
        <attribute key="weight" value="80" />
        <attribute key="slotType" value="ring" />
        <attribute key="decayTo" value="0" />
        <attribute key="transformDeEquipTo" value="2168" />
        <attribute key="duration" value="1200" />
        <attribute key="healthGain" value="1" />
        <attribute key="healthTicks" value="3000" />
        <attribute key="manaGain" value="4" />
        <attribute key="manaTicks" value="3000" />
        <attribute key="showduration" value="1" />
    </item>
    <item id="2206" article="a" name="time ring">
        <attribute key="weight" value="90" />
        <attribute key="slotType" value="ring" />
        <attribute key="decayTo" value="0" />
        <attribute key="transformDeEquipTo" value="2169" />
        <attribute key="duration" value="600" />
        <attribute key="showduration" value="1" />
        <attribute key="speed" value="60" />
    </item>
    <item id="2207" article="a" name="sword ring">
        <attribute key="weight" value="90" />
        <attribute key="slotType" value="ring" />
        <attribute key="transformEquipTo" value="2210" />
        <attribute key="stopduration" value="1" />
        <attribute key="showduration" value="1" />
    </item>
    <item id="2208" article="an" name="axe ring">
        <attribute key="weight" value="90" />
        <attribute key="slotType" value="ring" />
        <attribute key="transformEquipTo" value="2211" />
        <attribute key="stopduration" value="1" />
        <attribute key="showduration" value="1" />
    </item>
    <item id="2209" article="a" name="club ring">
        <attribute key="weight" value="90" />
        <attribute key="slotType" value="ring" />
        <attribute key="transformEquipTo" value="2212" />
        <attribute key="stopduration" value="1" />
        <attribute key="showduration" value="1" />
    </item>
    <item id="2210" article="a" name="sword ring">
        <attribute key="weight" value="90" />
        <attribute key="slotType" value="ring" />
        <attribute key="decayTo" value="0" />
        <attribute key="transformDeEquipTo" value="2207" />
        <attribute key="skillSword" value="4" />
        <attribute key="duration" value="1800" />
        <attribute key="showduration" value="1" />
    </item>
    <item id="2211" article="an" name="axe ring">
        <attribute key="weight" value="90" />
        <attribute key="slotType" value="ring" />
        <attribute key="decayTo" value="0" />
        <attribute key="transformDeEquipTo" value="2208" />
        <attribute key="skillAxe" value="4" />
        <attribute key="duration" value="1800" />
        <attribute key="showduration" value="1" />
    </item>
    <item id="2212" article="a" name="club ring">
        <attribute key="weight" value="90" />
        <attribute key="slotType" value="ring" />
        <attribute key="decayTo" value="0" />
        <attribute key="transformDeEquipTo" value="2209" />
        <attribute key="skillClub" value="4" />
        <attribute key="duration" value="1800" />
        <attribute key="showduration" value="1" />
    </item>
    <item id="2213" article="a" name="dwarven ring">
        <attribute key="weight" value="110" />
        <attribute key="slotType" value="ring" />
        <attribute key="transformEquipTo" value="2215" />
        <attribute key="stopduration" value="1" />
        <attribute key="showduration" value="1" />
    </item>
    <item id="2214" article="a" name="ring of healing">
        <attribute key="weight" value="80" />
        <attribute key="slotType" value="ring" />
        <attribute key="transformEquipTo" value="2216" />
        <attribute key="stopduration" value="1" />
        <attribute key="showduration" value="1" />
    </item>
    <item id="2215" article="a" name="dwarven ring">
        <attribute key="weight" value="110" />
        <attribute key="slotType" value="ring" />
        <attribute key="decayTo" value="0" />
        <attribute key="transformDeEquipTo" value="2213" />
        <attribute key="suppressDrunk" value="1" />
        <attribute key="duration" value="3600" />
        <attribute key="showduration" value="1" />
    </item>
    <item id="2216" article="a" name="ring of healing">
        <attribute key="weight" value="100" />
        <attribute key="decayTo" value="0" />
        <attribute key="transformDeEquipTo" value="2214" />
        <attribute key="duration" value="450" />
        <attribute key="healthGain" value="1" />
        <attribute key="healthTicks" value="1000" />
        <attribute key="manaGain" value="4" />
        <attribute key="manaTicks" value="1000" />
        <attribute key="showduration" value="1" />
    </item>
    <item id="2217" article="a" name="book">
        <attribute key="weight" value="1500" />
    </item>
    <item id="2218" article="a" name="paw amulet">
        <attribute key="weight" value="1000" />
    </item>
    <item id="2219" article="a" name="banana skin">
        <attribute key="weight" value="0" />
    </item>
    <item id="2220" article="a" name="dirty fur">
        <attribute key="weight" value="200" />
    </item>
    <item id="2221" article="an" name="old twig">
        <attribute key="weight" value="50" />
    </item>
    <item id="2222" name="some wood">
        <attribute key="weight" value="40" />
    </item>
    <item fromid="2223" toid="2224" name="rubbish">
        <attribute key="weight" value="10" />
    </item>
    <item id="2225" article="a" name="piece of iron" plural="pieces of iron">
        <attribute key="weight" value="10" />
    </item>
    <item id="2226" article="a" name="fishbone">
        <attribute key="weight" value="70" />
    </item>
    <item id="2227" name="rotten meat">
        <attribute key="weight" value="60" />
    </item>
    <item id="2228" name="broken pottery">
        <attribute key="weight" value="180" />
    </item>
    <item id="2229" article="a" name="skull" plural="skulls">
        <attribute key="weight" value="2180" />
    </item>
    <item id="2230" article="a" name="bone">
        <attribute key="weight" value="950" />
    </item>
    <item id="2231" article="a" name="big bone">
        <attribute key="weight" value="1900" />
    </item>
    <item id="2232" article="a" name="broken brown glass">
        <attribute key="weight" value="250" />
    </item>
    <item id="2233" article="a" name="broken green glass">
        <attribute key="weight" value="170" />
    </item>
    <item id="2234" article="a" name="broken sword">
        <attribute key="weight" value="3500" />
    </item>
    <item id="2235" article="a" name="moldy cheese">
        <attribute key="weight" value="400" />
    </item>
    <item id="2236" article="a" name="torn book">
        <attribute key="weight" value="1100" />
    </item>
    <item id="2237" article="a" name="dirty cape">
        <attribute key="weight" value="500" />
    </item>
    <item id="2238" name="worn leather boots">
        <attribute key="weight" value="400" />
    </item>
    <item id="2239" article="a" name="burnt scroll">
        <attribute key="weight" value="40" />
    </item>
    <item id="2240" name="fish remains">
        <attribute key="weight" value="110" />
    </item>
    <item id="2241" name="rubbish">
        <attribute key="weight" value="50" />
    </item>
    <item fromid="2242" toid="2243" name="rubbish">
        <attribute key="weight" value="60" />
    </item>
    <item id="2244" name="leaves">
        <attribute key="weight" value="80" />
    </item>
    <item id="2245" name="twigs">
        <attribute key="weight" value="80" />
    </item>
    <item id="2246" name="burnt down firewood">
        <attribute key="weight" value="420" />
    </item>
    <item fromid="2247" toid="2248" article="a" name="skull" />
    <item id="2249" name="smoke" />
    <item fromid="2250" toid="2255" name="wooden trash">
        <attribute key="weight" value="100" />
    </item>
    <item fromid="2256" toid="2257" name="metal trash">
        <attribute key="weight" value="300" />
    </item>
    <item id="2258" name="golden trash">
        <attribute key="weight" value="200" />
    </item>
    <item id="2259" name="stone rubbish">
        <attribute key="weight" value="200" />
    </item>
    <item id="2260" article="a" name="blank rune">
        <attribute key="weight" value="120" />
    </item>
    <item id="2261" article="a" name="destroy field rune">
        <attribute key="runeSpellName" value="adito grav" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="3" />
    </item>
    <item id="2262" article="a" name="energy bomb rune">
        <attribute key="runeSpellName" value="adevo mas vis" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="2" />
    </item>
    <item fromid="2263" toid="2264" article="a" name="spell rune">
        <attribute key="weight" value="120" />
    </item>
    <item id="2265" article="a" name="intense healing rune">
        <attribute key="runeSpellName" value="adura gran" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="1" />
    </item>
    <item id="2266" article="a" name="antidote rune">
        <attribute key="runeSpellName" value="adana pox" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="1" />
    </item>
    <item id="2267" article="a" name="spell rune">
        <attribute key="weight" value="120" />
    </item>
    <item id="2268" article="a" name="sudden death rune">
        <attribute key="runeSpellName" value="adori gran mort" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="3" />
    </item>
    <item id="2269" article="a" name="wild growth rune">
        <attribute key="runeSpellName" value="adevo grav vita" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="2" />
    </item>
    <item id="2270" article="a" name="spell rune">
        <attribute key="weight" value="120" />
    </item>
    <item id="2271" article="an" name="icicle rune">
        <attribute key="runeSpellName" value="adori frigo" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="5" />
    </item>
    <item id="2272" article="a" name="spell rune">
        <attribute key="weight" value="120" />
    </item>
    <item id="2273" article="an" name="ultimate healing rune">
        <attribute key="runeSpellName" value="adura vita" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="1" />
    </item>
    <item id="2274" article="an" name="avalanche rune">
        <attribute key="runeSpellName" value="adori mas frigo" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="4" />
    </item>
    <item fromid="2275" toid="2276" article="a" name="spell rune">
        <attribute key="weight" value="120" />
    </item>
    <item id="2277" article="an" name="energy field rune">
        <attribute key="runeSpellName" value="adevo grav vis" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="3" />
    </item>
    <item id="2278" article="a" name="paralyze rune">
        <attribute key="runeSpellName" value="adana ani" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="1" />
    </item>
    <item id="2279" article="an" name="energy wall rune">
        <attribute key="runeSpellName" value="adevo mas grav vis" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="4" />
    </item>
    <item fromid="2280" toid="2284" article="a" name="spell rune">
        <attribute key="weight" value="120" />
    </item>
    <item id="2285" article="a" name="poison field rune">
        <attribute key="runeSpellName" value="adevo grav pox" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="3" />
    </item>
    <item id="2286" article="a" name="poison bomb rune">
        <attribute key="runeSpellName" value="adevo mas pox" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="2" />
    </item>
    <item id="2287" article="a" name="light magic missile rune">
        <attribute key="runeSpellName" value="adori min vis" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="10" />
    </item>
    <item id="2288" article="a" name="stone shower rune">
        <attribute key="runeSpellName" value="adori mas tera" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="4" />
    </item>
    <item id="2289" article="a" name="poison wall rune">
        <attribute key="runeSpellName" value="adevo mas grav pox" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="4" />
    </item>
    <item id="2290" article="a" name="convince creature rune">
        <attribute key="runeSpellName" value="adeta sio" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="1" />
    </item>
    <item id="2291" article="a" name="chameleon rune">
        <attribute key="runeSpellName" value="adevo ina" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="1" />
    </item>
    <item id="2292" article="a" name="stalagmite rune">
        <attribute key="runeSpellName" value="adori tera" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="10" />
    </item>
    <item id="2293" article="a" name="magic wall rune">
        <attribute key="runeSpellName" value="adevo grav tera" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="3" />
    </item>
    <item id="2294" article="a" name="spell rune">
        <attribute key="weight" value="120" />
    </item>
    <item id="2295" article="a" name="holy missile rune">
        <attribute key="runeSpellName" value="adori san" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="5" />
    </item>
    <item fromid="2296" toid="2300" article="a" name="spell rune">
        <attribute key="weight" value="120" />
    </item>
    <item id="2301" article="a" name="fire field rune">
        <attribute key="runeSpellName" value="adevo grav flam" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="3" />
    </item>
    <item id="2302" article="a" name="fireball rune">
        <attribute key="runeSpellName" value="adori flam" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="5" />
    </item>
    <item id="2303" article="a" name="fire wall rune">
        <attribute key="runeSpellName" value="adevo mas grav flam" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="4" />
    </item>
    <item id="2304" article="a" name="great fireball rune">
        <attribute key="runeSpellName" value="adori mas flam" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="4" />
    </item>
    <item id="2305" article="a" name="firebomb rune">
        <attribute key="runeSpellName" value="adevo mas flam" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="2" />
    </item>
    <item fromid="2306" toid="2307" article="a" name="spell rune">
        <attribute key="weight" value="120" />
    </item>
    <item id="2308" article="a" name="soulfire rune">
        <attribute key="runeSpellName" value="adevo res flam" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="3" />
    </item>
    <item id="2309" article="a" name="spell rune">
        <attribute key="weight" value="120" />
    </item>
    <item id="2310" article="a" name="desintegrate rune">
        <attribute key="runeSpellName" value="adito tera" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="3" />
    </item>
    <item id="2311" article="a" name="heavy magic missile rune">
        <attribute key="runeSpellName" value="adori vis" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="10" />
    </item>
    <item id="2312" article="a" name="spell rune">
        <attribute key="weight" value="120" />
    </item>
    <item id="2313" article="an" name="explosion rune">
        <attribute key="runeSpellName" value="adevo mas hur" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="6" />
    </item>
    <item id="2314" article="a" name="spell rune">
        <attribute key="weight" value="120" />
    </item>
    <item id="2315" article="a" name="thunderstorm rune">
        <attribute key="runeSpellName" value="adori mas vis" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="4" />
    </item>
    <item id="2316" article="an" name="animate dead rune">
        <attribute key="runeSpellName" value="adana mort" />
        <attribute key="weight" value="120" />
        <attribute key="charges" value="1" />
    </item>
    <item id="2317" article="a" name="dead human" />
    <item id="2318" article="a" name="brooch">
        <attribute key="weight" value="101" />
    </item>
    <item id="2319" article="a" name="strange symbol">
        <attribute key="weight" value="200" />
        <attribute key="slotType" value="necklace" />
    </item>
    <item id="2320" article="a" name="skull" plural="skulls">
        <attribute key="weight" value="2180" />
    </item>
    <item id="2321" article="a" name="giant smithhammer">
        <attribute key="description" value="This cyclopean hammer seems to be an awesome smithing tool." />
        <attribute key="weight" value="6800" />
        <attribute key="defense" value="14" />
        <attribute key="attack" value="24" />
        <attribute key="weaponType" value="club" />
    </item>
    <item id="2322" article="a" name="voodoo doll">
        <attribute key="description" value="It looks like a little king." />
        <attribute key="weight" value="650" />
    </item>
    <item id="2323" article="a" name="hat of the mad">
        <attribute key="description" value="You have a vague feeling that it looks somewhat silly." />
        <attribute key="weight" value="700" />
        <attribute key="armor" value="3" />
        <attribute key="magiclevelpoints" value="1" />
        <attribute key="slotType" value="head" />
    </item>
    <item id="2324" article="a" name="broom">
        <attribute key="weight" value="1100" />
    </item>
    <item id="2325" article="a" name="book">
        <attribute key="weight" value="1300" />
    </item>
    <item id="2326" article="an" name="annihilation bear">
        <attribute key="description" value="I braved the Annihilator and all I got is this lousy teddy bear." />
        <attribute key="weight" value="4300" />
    </item>
    <item id="2327" article="an" name="ankh">
        <attribute key="weight" value="300" />
    </item>
    <item id="2328" article="a" name="phoenix egg" plural="phoenix eggs">
        <attribute key="weight" value="30" />
    </item>
    <item id="2329" article="a" name="document">
        <attribute key="weight" value="105" />
    </item>
    <item id="2330" article="a" name="bag">
        <attribute key="weight" value="800" />
    </item>
    <item id="2331" article="a" name="present">
        <attribute key="weight" value="600" />
    </item>
    <item id="2332" article="a" name="post horn">
        <attribute key="description" value="It's property of the Postmaster's Guild and only rewarded to loyal members." />
        <attribute key="weight" value="1500" />
    </item>
    <item id="2333" article="a" name="stamped letter">
        <attribute key="weight" value="50" />
    </item>
    <item id="2334" article="a" name="mailbox">
        <attribute key="description" value="Royal Tibia Mail." />
        <attribute key="type" value="mailbox" />
    </item>
    <item id="2335" article="a" name="helmet ornament">
        <attribute key="description" value="This item seems to be a single part of a bigger object." />
        <attribute key="weight" value="160" />
    </item>
    <item id="2336" article="a" name="gem holder">
        <attribute key="description" value="This item seems to be a single part of a bigger object." />
        <attribute key="weight" value="80" />
    </item>
    <item id="2337" article="a" name="right horn">
        <attribute key="description" value="This item seems to be a single part of a bigger object." />
        <attribute key="weight" value="140" />
    </item>
    <item id="2338" article="a" name="left horn">
        <attribute key="description" value="This item seems to be a single part of a bigger object." />
        <attribute key="weight" value="140" />
    </item>
    <item id="2339" article="a" name="damaged helmet">
        <attribute key="description" value="This item seems to have several parts missing." />
        <attribute key="weight" value="1800" />
        <attribute key="armor" value="5" />
    </item>
    <item id="2340" article="a" name="helmet piece">
        <attribute key="description" value="This item seems to be a single part of a bigger object." />
        <attribute key="weight" value="260" />
    </item>
    <item id="2341" article="a" name="helmet adornment">
        <attribute key="description" value="This item seems to be a single part of a bigger object." />
        <attribute key="weight" value="180" />
    </item>
    <item id="2342" article="a" name="helmet of the ancients">
        <attribute key="description" value="The gem of the helmet is burned out and should be replaced." />
        <attribute key="weight" value="2760" />
        <attribute key="armor" value="8" />
        <attribute key="slotType" value="head" />
    </item>
    <item id="2343" article="a" name="helmet of the ancients">
        <attribute key="description" value="The gem is glowing with power." />
        <attribute key="weight" value="2760" />
        <attribute key="armor" value="11" />
        <attribute key="slotType" value="head" />
        <attribute key="duration" value="1800" />
        <attribute key="decayTo" value="2342" />
    </item>
    <item id="2344" article="an" name="oil lamp">
        <attribute key="weight" value="500" />
    </item>
    <item id="2345" article="a" name="spy report">
        <attribute key="weight" value="100" />
    </item>
    <item id="2346" article="a" name="tear of daraman">
        <attribute key="weight" value="30" />
    </item>
    <item id="2347" article="a" name="cookbook">
        <attribute key="weight" value="1500" />
    </item>
    <item id="2348" article="an" name="ancient rune">
        <attribute key="description" value="This rune vibrates with ancient powers. It seems to be rotting rapidly." />
        <attribute key="weight" value="300" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="86400" />
    </item>
    <item id="2349" article="a" name="blue note">
        <attribute key="description" value="The blue crystal is softly humming a ghostly melody. It seems to be rotting rapidly." />
        <attribute key="weight" value="250" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="86400" />
    </item>
    <item id="2350" article="a" name="sword hilt">
        <attribute key="description" value="It was once part of a formidable two handed weapon. It seems to be rotting rapidly." />
        <attribute key="weight" value="900" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="86400" />
    </item>
    <item id="2351" article="a" name="cobrafang dagger">
        <attribute key="description" value="This ritual weapon was forged from the sharp fang of a giant cobra. It seems to be rotting rapidly." />
        <attribute key="weight" value="600" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="86400" />
    </item>
    <item id="2352" article="a" name="crystal arrow">
        <attribute key="description" value="This arrow seems not suitable for the use with ordinary bows. It seems to be rotting rapidly." />
        <attribute key="weight" value="100" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="86400" />
    </item>
    <item id="2353" article="a" name="burning heart">
        <attribute key="description" value="It is still beating with unholy life. It seems to be rotting rapidly." />
        <attribute key="weight" value="400" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="86400" />
    </item>
    <item id="2354" article="an" name="ornamented ankh">
        <attribute key="description" value="This ancient relic shows signs of untold age. It seems to be rotting rapidly." />
        <attribute key="weight" value="200" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="86400" />
    </item>
    <item id="2355" article="a" name="stuffed rabbit">
        <attribute key="weight" value="200" />
    </item>
    <item id="2356" article="a" name="small oil lamp">
        <attribute key="weight" value="500" />
    </item>
    <item id="2357" article="a" name="ring of wishes">
        <attribute key="weight" value="90" />
        <attribute key="slotType" value="ring" />
    </item>
    <item id="2358" name="boots of waterwalking">
        <attribute key="weight" value="800" />
        <attribute key="slotType" value="feet" />
    </item>
    <item id="2359" article="a" name="small oil lamp">
        <attribute key="weight" value="900" />
    </item>
    <item id="2360" article="a" name="portable hole" />
    <item id="2361" article="a" name="frozen starlight">
        <attribute key="weight" value="20" />
    </item>
    <item id="2362" article="a" name="carrot of doom" plural="carrots of doom">
        <attribute key="weight" value="200" />
    </item>
    <item id="2363" article="a" name="blood orb">
        <attribute key="weight" value="150" />
    </item>
    <item id="2364" article="a" name="post horn">
        <attribute key="weight" value="1500" />
    </item>
    <item id="2365" article="a" name="backpack of holding">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="24" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="2366" article="a" name="roc feather">
        <attribute key="weight" value="100" />
    </item>
    <item id="2367" article="a" name="drum">
        <attribute key="weight" value="3200" />
    </item>
    <item id="2368" article="a" name="simple fanfare">
        <attribute key="weight" value="2200" />
    </item>
    <item id="2369" article="a" name="cornucopia">
        <attribute key="weight" value="1400" />
    </item>
    <item id="2370" article="a" name="lute">
        <attribute key="weight" value="3400" />
    </item>
    <item id="2371" article="a" name="horn of sundering">
        <attribute key="weight" value="1500" />
    </item>
    <item id="2372" article="a" name="lyre">
        <attribute key="weight" value="1250" />
    </item>
    <item id="2373" name="panpipes">
        <attribute key="weight" value="820" />
    </item>
    <item id="2374" article="a" name="wooden flute">
        <attribute key="weight" value="200" />
    </item>
    <item id="2375" article="a" name="gemmed lamp">
        <attribute key="description" value="It is the djinn leader's sleeping lamp." />
        <attribute key="weight" value="1300" />
    </item>
    <item id="2376" article="a" name="sword">
        <attribute key="weight" value="3500" />
        <attribute key="defense" value="12" />
        <attribute key="attack" value="14" />
        <attribute key="weaponType" value="sword" />
        <attribute key="extradef" value="1" />
    </item>
    <item id="2377" article="a" name="two handed sword">
        <attribute key="weight" value="7000" />
        <attribute key="defense" value="25" />
        <attribute key="attack" value="30" />
        <attribute key="weaponType" value="sword" />
        <attribute key="slotType" value="two-handed" />
    </item>
    <item id="2378" article="a" name="battle axe">
        <attribute key="weight" value="5000" />
        <attribute key="defense" value="10" />
        <attribute key="attack" value="25" />
        <attribute key="weaponType" value="axe" />
        <attribute key="slotType" value="two-handed" />
    </item>
    <item id="2379" article="a" name="dagger">
        <attribute key="weight" value="950" />
        <attribute key="defense" value="6" />
        <attribute key="attack" value="8" />
        <attribute key="weaponType" value="sword" />
    </item>
    <item id="2380" article="a" name="hand axe">
        <attribute key="weight" value="1800" />
        <attribute key="defense" value="5" />
        <attribute key="attack" value="10" />
        <attribute key="weaponType" value="axe" />
    </item>
    <item id="2381" article="a" name="halberd">
        <attribute key="weight" value="9000" />
        <attribute key="defense" value="14" />
        <attribute key="attack" value="35" />
        <attribute key="weaponType" value="axe" />
        <attribute key="slotType" value="two-handed" />
    </item>
    <item id="2382" article="a" name="pokedex">
        <attribute key="weight" value="0" />
        <attribute key="description" value="This is an advanced device that can register pokemon information and store it. You can use this on a pokemon or on a player, to discover or get the stored information." />
    </item>
    <item id="2383" article="a" name="spike sword">
        <attribute key="weight" value="5000" />
        <attribute key="defense" value="21" />
        <attribute key="attack" value="24" />
        <attribute key="weaponType" value="sword" />
        <attribute key="extradef" value="2" />
    </item>
    <item id="2384" article="a" name="rapier">
        <attribute key="weight" value="1500" />
        <attribute key="defense" value="8" />
        <attribute key="attack" value="10" />
        <attribute key="weaponType" value="sword" />
        <attribute key="extradef" value="1" />
    </item>
    <item id="2385" article="a" name="sabre">
        <attribute key="weight" value="2500" />
        <attribute key="defense" value="10" />
        <attribute key="attack" value="12" />
        <attribute key="weaponType" value="sword" />
        <attribute key="extradef" value="1" />
    </item>
    <item id="2386" article="an" name="axe">
        <attribute key="weight" value="4000" />
        <attribute key="defense" value="6" />
        <attribute key="attack" value="12" />
        <attribute key="weaponType" value="axe" />
    </item>
    <item id="2387" article="a" name="double axe">
        <attribute key="weight" value="7000" />
        <attribute key="defense" value="12" />
        <attribute key="attack" value="35" />
        <attribute key="weaponType" value="axe" />
        <attribute key="slotType" value="two-handed" />
    </item>
    <item id="2388" article="a" name="hatchet">
        <attribute key="weight" value="3500" />
        <attribute key="defense" value="8" />
        <attribute key="attack" value="15" />
        <attribute key="weaponType" value="axe" />
    </item>
    <item id="2389" article="a" name="spear" plural="spears">
        <attribute key="weight" value="2000" />
        <attribute key="attack" value="25" />
        <attribute key="weaponType" value="distance" />
        <attribute key="shootType" value="spear" />
        <attribute key="range" value="5" />
        <attribute key="breakChance" value="3" />
        <attribute key="ammoAction" value="moveback" />
    </item>
    <item id="2390" article="a" name="magic longsword">
        <attribute key="description" value="It is the magic Cyclopmania Sword." />
        <attribute key="weight" value="4300" />
        <attribute key="defense" value="40" />
        <attribute key="attack" value="55" />
        <attribute key="weaponType" value="sword" />
        <attribute key="slotType" value="two-handed" />
    </item>
    <item id="2391" article="a" name="great ball">
        <attribute key="weight" value="0" />
        <attribute key="description" value="This is a pokeball used to catch fainted pokemon. It has a 3x catch rate." />
    </item>
    <item id="2392" article="a" name="ultra ball">
        <attribute key="weight" value="0" />
        <attribute key="description" value="This is pokeball used to catch fainted pokemon. It has a 8x catch rate." />
    </item>
    <item id="2393" article="a" name="super ball">
        <attribute key="weight" value="0" />
        <attribute key="description" value="This is pokeball used to catch fainted pokemon. It has a 5x catch rate." />
    </item>
    <item id="2394" article="a" name="poke ball">
        <attribute key="weight" value="0" />
        <attribute key="description" value="This is a pokeball used to catch fainted pokemon. It has a 1x catch rate." />
    </item>
    <item id="2395" article="a" name="portrait">
        <attribute key="weight" value="0" />
        <attribute key="slotType" value="legs" />
    </item>
    <item id="2399" article="a" name="throwing star" plural="throwing stars">
        <attribute key="weight" value="200" />
        <attribute key="attack" value="30" />
        <attribute key="weaponType" value="distance" />
        <attribute key="shootType" value="throwingstar" />
        <attribute key="range" value="5" />
        <attribute key="breakChance" value="10" />
        <attribute key="ammoAction" value="moveback" />
    </item>
    <item id="2410" article="a" name="throwing knife" plural="throwing knives">
        <attribute key="weight" value="500" />
        <attribute key="attack" value="25" />
        <attribute key="weaponType" value="distance" />
        <attribute key="shootType" value="throwingknife" />
        <attribute key="range" value="5" />
        <attribute key="breakChance" value="7" />
        <attribute key="ammoAction" value="moveback" />
    </item>
    <item id="2456" article="a" name="bow">
        <attribute key="weight" value="3100" />
        <attribute key="weaponType" value="distance" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="ammoType" value="arrow" />
        <attribute key="range" value="6" />
    </item>
    <item id="2457" article="a" name="steel helmet">
        <attribute key="weight" value="4600" />
        <attribute key="armor" value="6" />
        <attribute key="slotType" value="head" />
    </item>
    <item id="2458" article="a" name="chain helmet">
        <attribute key="weight" value="4200" />
        <attribute key="armor" value="2" />
        <attribute key="slotType" value="head" />
    </item>
    <item id="2459" article="an" name="iron helmet">
        <attribute key="weight" value="3000" />
        <attribute key="armor" value="5" />
        <attribute key="slotType" value="head" />
    </item>
    <item id="2460" article="a" name="brass helmet">
        <attribute key="weight" value="2700" />
        <attribute key="armor" value="3" />
        <attribute key="slotType" value="head" />
    </item>
    <item id="2461" article="a" name="leather helmet">
        <attribute key="weight" value="2200" />
        <attribute key="armor" value="1" />
        <attribute key="slotType" value="head" />
    </item>
    <item id="2468" name="studded legs">
        <attribute key="weight" value="2600" />
        <attribute key="armor" value="2" />
        <attribute key="slotType" value="legs" />
    </item>
    <item id="2469" name="dragon scale legs">
        <attribute key="weight" value="4800" />
        <attribute key="armor" value="10" />
        <attribute key="slotType" value="legs" />
    </item>
    <item id="2472" article="a" name="magic plate armor">
        <attribute key="description" value="An enchanted gem glows on the plate armor." />
        <attribute key="weight" value="8500" />
        <attribute key="armor" value="17" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="2473" article="a" name="viking helmet">
        <attribute key="weight" value="3900" />
        <attribute key="armor" value="4" />
        <attribute key="slotType" value="head" />
    </item>
    <item id="2474" article="a" name="winged helmet">
        <attribute key="description" value="It is the Helmet of Hermes." />
        <attribute key="weight" value="1200" />
        <attribute key="armor" value="10" />
        <attribute key="slotType" value="head" />
    </item>
    <item id="2477" name="knight legs">
        <attribute key="weight" value="7000" />
        <attribute key="armor" value="8" />
        <attribute key="slotType" value="legs" />
    </item>
    <item id="2479" article="a" name="strange helmet">
        <attribute key="weight" value="4600" />
        <attribute key="armor" value="6" />
        <attribute key="slotType" value="head" />
    </item>
    <item id="2480" article="a" name="legion helmet">
        <attribute key="weight" value="3100" />
        <attribute key="armor" value="4" />
        <attribute key="slotType" value="head" />
    </item>
    <item id="2481" article="a" name="soldier helmet">
        <attribute key="weight" value="3200" />
        <attribute key="armor" value="5" />
        <attribute key="slotType" value="head" />
    </item>
    <item id="2482" article="a" name="studded helmet">
        <attribute key="weight" value="2450" />
        <attribute key="armor" value="2" />
        <attribute key="slotType" value="head" />
    </item>
    <item id="2483" article="a" name="scale armor">
        <attribute key="weight" value="10500" />
        <attribute key="armor" value="9" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="2486" article="a" name="noble armor">
        <attribute key="weight" value="12000" />
        <attribute key="armor" value="11" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="2487" article="a" name="crown armor">
        <attribute key="weight" value="9900" />
        <attribute key="armor" value="13" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="2489" article="a" name="fainted unown a">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="2490" article="a" name="fainted unown b">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="2491" article="a" name="fainted unown c">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="2492" article="a" name="fainted unown d">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="2493" article="a" name="fainted unown e">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="2494" article="a" name="fainted unown f">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="2495" article="a" name="fainted unown g">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="2496" article="a" name="fainted unown h">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="2497" article="a" name="fainted unown i">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="2498" article="a" name="fainted unown j">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="2499" article="a" name="fainted unown k">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="2500" article="a" name="fainted unown l">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="2501" article="a" name="fainted unown m">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="2502" article="a" name="fainted unown n">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="2503" article="a" name="fainted unown o">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="2504" article="a" name="fainted unown p">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="2505" article="a" name="fainted unown q">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="2506" article="a" name="fainted unown r">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="2507" article="a" name="fainted unown s">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="2508" article="a" name="fainted unown t">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="2509" article="a" name="fainted unown z">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="2510" article="a" name="fainted shiny staryu">
            <attribute key="containerSize" value="10" />
            <attribute key="decayTo" value="0" />
            <attribute key="duration" value="55" />
    </item>
    <item id="2511" article="a" name="fainted shiny goldeen">
            <attribute key="containerSize" value="10" />
            <attribute key="decayTo" value="0" />
            <attribute key="duration" value="55" />
    </item>
    <item id="2512" article="a" name="fainted shiny gastly">
            <attribute key="containerSize" value="10" />
            <attribute key="decayTo" value="0" />
            <attribute key="duration" value="55" />
    </item>
    <item id="2513" article="a" name="fainted shiny eevee">
            <attribute key="containerSize" value="10" />
            <attribute key="decayTo" value="0" />
            <attribute key="duration" value="55" />
    </item>
    <item id="2514" article="a" name="fainted shiny steelix">
            <attribute key="containerSize" value="10" />
            <attribute key="decayTo" value="0" />
            <attribute key="duration" value="55" />
    </item>
    <item id="2515" article="a" name="fainted shiny tyranitar">
            <attribute key="containerSize" value="10" />
            <attribute key="decayTo" value="0" />
            <attribute key="duration" value="55" />
    </item>
    <item id="2516" article="a" name="fainted shiny qwilfish">
            <attribute key="containerSize" value="10" />
            <attribute key="decayTo" value="0" />
            <attribute key="duration" value="55" />
    </item>
    <item id="2517" article="a" name="fainted shiny misdreavus">
            <attribute key="containerSize" value="10" />
            <attribute key="decayTo" value="0" />
            <attribute key="duration" value="55" />
    </item>
    <item id="2518" article="a" name="fainted shiny kingdra">
            <attribute key="containerSize" value="10" />
            <attribute key="decayTo" value="0" />
            <attribute key="duration" value="55" />
    </item>
    <item id="2519" article="a" name="fainted shiny primeape">
            <attribute key="containerSize" value="10" />
            <attribute key="decayTo" value="0" />
            <attribute key="duration" value="55" />
    </item>
    <item id="2520" article="a" name="fainted shiny noctowl">
            <attribute key="containerSize" value="10" />
            <attribute key="decayTo" value="0" />
            <attribute key="duration" value="55" />
    </item>
    <item id="2521" article="a" name="fainted shiny metagross">
            <attribute key="containerSize" value="10" />
            <attribute key="decayTo" value="0" />
            <attribute key="duration" value="55" />
    </item>
    <item id="2522" article="a" name="fainted shiny glaceon">
            <attribute key="containerSize" value="10" />
            <attribute key="decayTo" value="0" />
            <attribute key="duration" value="55" />
    </item>
    <item id="2523" article="a" name="fainted shiny haunter">
            <attribute key="containerSize" value="10" />
            <attribute key="decayTo" value="0" />
            <attribute key="duration" value="55" />
    </item>
    <item id="2524" article="an" name="fainted shiny bronzong">
            <attribute key="containerSize" value="10" />
            <attribute key="decayTo" value="0" />
            <attribute key="duration" value="55" />
    </item>
    <item id="2525" article="a" name="fainted shiny corsola">
            <attribute key="containerSize" value="10" />
            <attribute key="decayTo" value="0" />
            <attribute key="duration" value="55" />
    </item>
    <item id="2526" article="a" name="fainted shiny leafeon">
            <attribute key="containerSize" value="10" />
            <attribute key="decayTo" value="0" />
            <attribute key="duration" value="55" />
    </item>
    <item id="2527" article="a" name="rose shield">
        <attribute key="weight" value="5200" />
        <attribute key="defense" value="27" />
        <attribute key="weaponType" value="shield" />
    </item>
    <item id="2528" article="a" name="fainted shiny mantine">
            <attribute key="containerSize" value="10" />
            <attribute key="decayTo" value="0" />
            <attribute key="duration" value="55" />
    </item>
    <item id="2529" article="a" name="fainted shiny delibird">
            <attribute key="containerSize" value="10" />
            <attribute key="decayTo" value="0" />
            <attribute key="duration" value="55" />
    </item>
    <item id="2530" article="a" name="fainted shiny manectric">
            <attribute key="containerSize" value="10" />
            <attribute key="decayTo" value="0" />
            <attribute key="duration" value="55" />
    </item>
    <item id="2531" article="a" name="fainted shiny tangrowth">
            <attribute key="containerSize" value="10" />
            <attribute key="decayTo" value="0" />
            <attribute key="duration" value="55" />
    </item>
    <item id="2532" article="an" name="fainted shiny salamence">
            <attribute key="containerSize" value="10" />
            <attribute key="decayTo" value="0" />
            <attribute key="duration" value="55" />
    </item>
    <item id="2533" article="a" name="griffin shield">
        <attribute key="weight" value="5000" />
        <attribute key="defense" value="29" />
        <attribute key="weaponType" value="shield" />
    </item>
    <item id="2534" article="a" name="vampire shield">
        <attribute key="description" value="Dark powers enchant this shield." />
        <attribute key="weight" value="3800" />
        <attribute key="defense" value="34" />
        <attribute key="weaponType" value="shield" />
    </item>
    <item id="2535" article="a" name="castle shield">
        <attribute key="weight" value="4900" />
        <attribute key="defense" value="28" />
        <attribute key="weaponType" value="shield" />
    </item>
    <item id="2536" article="a" name="medusa shield">
        <attribute key="weight" value="5800" />
        <attribute key="defense" value="33" />
        <attribute key="weaponType" value="shield" />
    </item>
    <item id="2537" article="an" name="amazon shield">
        <attribute key="weight" value="6200" />
        <attribute key="defense" value="32" />
        <attribute key="weaponType" value="shield" />
    </item>
    <item id="2538" article="an" name="eagle shield">
        <attribute key="weight" value="6000" />
        <attribute key="defense" value="30" />
        <attribute key="weaponType" value="shield" />
    </item>
    <item id="2539" article="a" name="phoenix shield">
        <attribute key="description" value="This shield feels warm to the touch." />
        <attribute key="weight" value="3500" />
        <attribute key="defense" value="34" />
        <attribute key="weaponType" value="shield" />
    </item>
    <item id="2540" article="a" name="scarab shield">
        <attribute key="weight" value="4700" />
        <attribute key="defense" value="25" />
        <attribute key="weaponType" value="shield" />
    </item>
    <item id="2541" article="a" name="bone shield">
        <attribute key="weight" value="5500" />
        <attribute key="defense" value="20" />
        <attribute key="weaponType" value="shield" />
    </item>
    <item id="2542" article="a" name="tempest shield">
        <attribute key="weight" value="5100" />
        <attribute key="defense" value="36" />
        <attribute key="weaponType" value="shield" />
    </item>
    <item id="2543" article="a" name="bolt" plural="bolts">
        <attribute key="weight" value="80" />
        <attribute key="slotType" value="ammo" />
        <attribute key="attack" value="30" />
        <attribute key="maxHitChance" value="90" />
        <attribute key="weaponType" value="ammunition" />
        <attribute key="ammoType" value="bolt" />
        <attribute key="shootType" value="bolt" />
        <attribute key="ammoAction" value="removecount" />
    </item>
    <item id="2544" article="an" name="arrow" plural="arrows">
        <attribute key="weight" value="70" />
        <attribute key="slotType" value="ammo" />
        <attribute key="attack" value="25" />
        <attribute key="maxHitChance" value="90" />
        <attribute key="weaponType" value="ammunition" />
        <attribute key="ammoType" value="arrow" />
        <attribute key="shootType" value="arrow" />
        <attribute key="ammoAction" value="removecount" />
    </item>
    <item id="2545" article="a" name="poison arrow" plural="poison arrows">
        <attribute key="weight" value="80" />
        <attribute key="slotType" value="ammo" />
        <attribute key="attack" value="22" />
        <attribute key="maxHitChance" value="90" />
        <attribute key="weaponType" value="ammunition" />
        <attribute key="ammoType" value="arrow" />
        <attribute key="shootType" value="poisonarrow" />
        <attribute key="ammoAction" value="removecount" />
    </item>
    <item id="2546" article="a" name="burst arrow" plural="burst arrows">
        <attribute key="weight" value="90" />
        <attribute key="slotType" value="ammo" />
        <attribute key="attack" value="28" />
        <attribute key="hitChance" value="100" />
        <attribute key="weaponType" value="ammunition" />
        <attribute key="ammoType" value="arrow" />
        <attribute key="shootType" value="burstarrow" />
        <attribute key="ammoAction" value="removecount" />
    </item>
    <item id="2547" article="your" name="coin case">
        <attribute key="weight" value="0" />
        <attribute key="slotType" value="ammo" />
        <attribute key="description" value="This is the case to keep your casino coins. You can use those coins to play at the casino and some other places!" />
    </item>
    <item id="2548" article="a" name="pitch fork">
        <attribute key="weight" value="2500" />
    </item>
    <item id="2549" article="a" name="rake">
        <attribute key="weight" value="1500" />
    </item>
    <item id="2550" article="the" name="order button">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Use this to give orders to your pokemon." />
        <attribute key="slotType" value="body" />
    </item>
    <item id="2551" article="a" name="broom">
        <attribute key="weight" value="1100" />
    </item>
    <item id="2552" article="a" name="hoe">
        <attribute key="weight" value="2800" />
    </item>
    <item id="2553" article="a" name="pick">
        <attribute key="weight" value="3500" />
    </item>
    <item id="2554" article="a" name="shovel">
        <attribute key="weight" value="3500" />
    </item>
    <item id="2555" article="an" name="anvil" />
    <item id="2556" article="a" name="wooden hammer">
        <attribute key="weight" value="600" />
    </item>
    <item id="2557" article="a" name="carpenter hammer">
        <attribute key="weight" value="800" />
    </item>
    <item id="2558" article="a" name="saw">
        <attribute key="weight" value="1400" />
    </item>
    <item id="2559" article="a" name="small axe">
        <attribute key="weight" value="2000" />
    </item>
    <item id="2560" article="a" name="mirror">
        <attribute key="weight" value="950" />
    </item>
    <item id="2561" article="a" name="bakiaking tray">
        <attribute key="weight" value="1200" />
    </item>
    <item id="2562" article="a" name="pot">
        <attribute key="weight" value="5250" />
    </item>
    <item id="2563" article="a" name="pan">
        <attribute key="weight" value="1800" />
    </item>
    <item id="2564" article="a" name="fork">
        <attribute key="weight" value="100" />
    </item>
    <item id="2565" article="a" name="spoon">
        <attribute key="weight" value="100" />
    </item>
    <item id="2566" article="a" name="knife">
        <attribute key="weight" value="100" />
    </item>
    <item id="2567" article="a" name="wooden spoon">
        <attribute key="weight" value="100" />
    </item>
    <item id="2568" article="a" name="cleaver">
        <attribute key="weight" value="660" />
    </item>
    <item id="2569" article="an" name="oven spatula">
        <attribute key="weight" value="1400" />
    </item>
    <item id="2570" article="a" name="rolling pin">
        <attribute key="weight" value="500" />
    </item>
    <item fromid="2571" toid="2573" article="a" name="bowl">
        <attribute key="weight" value="1000" />
    </item>
    <item id="2574" article="a" name="white vase">
        <attribute key="weight" value="1500" />
    </item>
    <item id="2575" article="a" name="yellow vase">
        <attribute key="weight" value="1500" />
    </item>
    <item id="2576" article="a" name="blue vase">
        <attribute key="weight" value="1500" />
    </item>
    <item id="2577" article="a" name="green vase">
        <attribute key="weight" value="1500" />
    </item>
    <item id="2578" article="a" name="closed trap">
        <attribute key="weight" value="2100" />
    </item>
    <item id="2579" article="an" name="open trap">
        <attribute key="weight" value="2100" />
    </item>
    <item id="2580" article="a" name="pokerod">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Use this tool to fish some pokemons inside water." />
        <attribute key="slotType" value="necklace" />
    </item>
    <item id="2581" article="a" name="telescope">
        <attribute key="rotateTo" value="2583" />
    </item>
    <item id="2582" article="a" name="telescope">
        <attribute key="rotateTo" value="2584" />
    </item>
    <item id="2583" article="a" name="telescope">
        <attribute key="rotateTo" value="2582" />
    </item>
    <item id="2584" article="a" name="telescope">
        <attribute key="rotateTo" value="2581" />
    </item>
    <item id="2585" article="a" name="ship's telescope">
        <attribute key="rotateTo" value="2587" />
    </item>
    <item id="2586" article="a" name="ship's telescope">
        <attribute key="rotateTo" value="2588" />
    </item>
    <item id="2587" article="a" name="ship's telescope">
        <attribute key="rotateTo" value="2586" />
    </item>
    <item id="2588" article="a" name="ship's telescope">
        <attribute key="rotateTo" value="2585" />
    </item>
    <item id="2589" article="a" name="locker">
        <attribute key="type" value="depot" />
        <attribute key="containerSize" value="30" />
    </item>
    <item id="2590" article="a" name="locker">
        <attribute key="type" value="depot" />
        <attribute key="containerSize" value="30" />
    </item>
    <item id="2591" article="a" name="locker">
        <attribute key="type" value="depot" />
        <attribute key="containerSize" value="30" />
    </item>
    <item id="2592" article="a" name="locker">
        <attribute key="type" value="depot" />
        <attribute key="containerSize" value="30" />
    </item>
    <item id="2593" article="a" name="mailbox">
        <attribute key="description" value="Royal Tibia Mail." />
        <attribute key="type" value="mailbox" />
    </item>
    <item id="2594" article="a" name="depot chest">
        <attribute key="containerSize" value="0" />
    </item>
    <item id="2595" article="a" name="parcel">
        <attribute key="weight" value="1800" />
        <attribute key="type" value="container" />
        <attribute key="containerSize" value="10" />
    </item>
    <item id="2596" article="a" name="stamped parcel">
        <attribute key="weight" value="1800" />
        <attribute key="containerSize" value="10" />
    </item>
    <item id="2597" article="a" name="letter">
        <attribute key="weight" value="50" />
        <attribute key="writeable" value="1" />
        <attribute key="maxTextLen" value="512" />
    </item>
    <item id="2598" article="a" name="stamped letter">
        <attribute key="weight" value="30" />
        <attribute key="readable" value="1" />
    </item>
    <item id="2599" article="a" name="label">
        <attribute key="weight" value="10" />
        <attribute key="writeable" value="1" />
        <attribute key="maxTextLen" value="64" />
    </item>
    <item id="2600" article="an" name="inkwell">
        <attribute key="weight" value="200" />
    </item>
    <item fromid="2601" toid="2605" article="a" name="coal basin" />
    <item fromid="2606" toid="2609" article="an" name="altar" />
    <item fromid="2610" toid="2613" article="a" name="sacrifical stone" />
    <item fromid="2614" toid="2615" article="an" name="altar" />
    <item fromid="2616" toid="2623" article="a" name="sacrifical stone" />
    <item id="2624" article="a" name="black token" plural="black tokens">
        <attribute key="weight" value="500" />
    </item>
    <item id="2625" article="a" name="white token" plural="white tokens">
        <attribute key="weight" value="500" />
    </item>
    <item id="2626" article="a" name="white pawn">
        <attribute key="weight" value="500" />
    </item>
    <item id="2627" article="a" name="white castle">
        <attribute key="weight" value="500" />
    </item>
    <item id="2628" article="a" name="white knight">
        <attribute key="weight" value="500" />
    </item>
    <item id="2629" article="a" name="white bishop">
        <attribute key="weight" value="500" />
    </item>
    <item id="2630" article="a" name="white queen">
        <attribute key="weight" value="500" />
    </item>
    <item id="2631" article="a" name="white king">
        <attribute key="weight" value="500" />
    </item>
    <item id="2632" article="a" name="black pawn">
        <attribute key="weight" value="500" />
    </item>
    <item id="2633" article="a" name="black castle">
        <attribute key="weight" value="500" />
    </item>
    <item id="2634" article="a" name="black knight">
        <attribute key="weight" value="500" />
    </item>
    <item id="2635" article="a" name="black bishop">
        <attribute key="weight" value="500" />
    </item>
    <item id="2636" article="a" name="black queen">
        <attribute key="weight" value="500" />
    </item>
    <item id="2637" article="a" name="black king">
        <attribute key="weight" value="500" />
    </item>
    <item fromid="2638" toid="2639" article="a" name="tic-tac-toe token" plural="tic-tac-toe tokens">
        <attribute key="weight" value="500" />
    </item>
    <item id="2640" article="a" name="pair of soft boots">
        <attribute key="weight" value="800" />
        <attribute key="slotType" value="feet" />
        <attribute key="decayTo" value="10021" />
        <attribute key="transformDeEquipTo" value="6132" />
        <attribute key="duration" value="14400" />
        <attribute key="healthGain" value="1" />
        <attribute key="healthTicks" value="2000" />
        <attribute key="manaGain" value="2" />
        <attribute key="manaTicks" value="1000" />
        <attribute key="showduration" value="1" />
    </item>
    <item id="2641" name="traper boots">
        <attribute key="weight" value="900" />
        <attribute key="armor" value="3" />
        <attribute key="slotType" value="feet" />
    </item>
    <item id="2642" name="sandals">
        <attribute key="weight" value="600" />
        <attribute key="slotType" value="feet" />
    </item>
    <item id="2643" name="leather boots">
        <attribute key="weight" value="900" />
        <attribute key="armor" value="1" />
        <attribute key="slotType" value="feet" />
    </item>
    <item id="2644" name="bunny slippers">
        <attribute key="weight" value="1200" />
        <attribute key="slotType" value="feet" />
    </item>
    <item id="2645" name="steel boots">
        <attribute key="weight" value="2900" />
        <attribute key="armor" value="3" />
        <attribute key="slotType" value="feet" />
    </item>
    <item id="2646" name="golden boots">
        <attribute key="weight" value="3200" />
        <attribute key="armor" value="4" />
        <attribute key="slotType" value="feet" />
    </item>
    <item id="2647" name="plate legs">
        <attribute key="weight" value="5000" />
        <attribute key="armor" value="7" />
        <attribute key="slotType" value="legs" />
    </item>
    <item id="2648" name="chain legs">
        <attribute key="weight" value="3500" />
        <attribute key="armor" value="3" />
        <attribute key="slotType" value="legs" />
    </item>
    <item id="2649" name="leather legs">
        <attribute key="weight" value="1800" />
        <attribute key="armor" value="1" />
        <attribute key="slotType" value="legs" />
    </item>
    <item id="2650" article="a" name="jacket">
        <attribute key="weight" value="2400" />
        <attribute key="armor" value="1" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="2651" article="a" name="coat">
        <attribute key="weight" value="2700" />
        <attribute key="armor" value="1" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="2652" article="a" name="green tunic">
        <attribute key="weight" value="930" />
        <attribute key="armor" value="1" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="2653" article="a" name="red tunic">
        <attribute key="weight" value="3000" />
        <attribute key="armor" value="2" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="2654" article="a" name="cape">
        <attribute key="weight" value="3200" />
        <attribute key="armor" value="1" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="2655" article="a" name="red robe">
        <attribute key="weight" value="2600" />
        <attribute key="armor" value="1" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="2656" article="a" name="blue robe">
        <attribute key="description" value="It is a magic robe." />
        <attribute key="weight" value="2200" />
        <attribute key="armor" value="11" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="2657" article="a" name="simple dress">
        <attribute key="weight" value="2400" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="2658" article="a" name="white dress">
        <attribute key="weight" value="2400" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="2659" article="a" name="ball gown">
        <attribute key="weight" value="2500" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="2660" article="a" name="ranger's cloak">
        <attribute key="weight" value="4800" />
        <attribute key="armor" value="7" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="2661" article="a" name="scarf">
        <attribute key="weight" value="200" />
        <attribute key="armor" value="1" />
        <attribute key="slotType" value="necklace" />
    </item>
    <item id="2662" article="a" name="magician hat">
        <attribute key="weight" value="750" />
        <attribute key="armor" value="1" />
        <attribute key="slotType" value="head" />
    </item>
    <item id="2663" article="a" name="mystic turban">
        <attribute key="description" value="Something is strange about this turban." />
        <attribute key="weight" value="850" />
        <attribute key="armor" value="1" />
        <attribute key="slotType" value="head" />
    </item>
    <item id="2664" article="a" name="cowl">
        <attribute key="weight" value="700" />
        <attribute key="armor" value="2" />
        <attribute key="slotType" value="head" />
    </item>
    <item id="2665" article="a" name="post officers hat">
        <attribute key="description" value="This hat is the insignia of all tibian post officers." />
        <attribute key="weight" value="700" />
        <attribute key="armor" value="1" />
        <attribute key="slotType" value="head" />
    </item>
    <item id="2666" name="snorburger">
        <attribute key="weight" value="1300" />
    </item>
    <item id="2667" article="a" name="mewburger">
        <attribute key="weight" value="520" />
    </item>
    <item id="2668" article="a" name="pikaburger">
        <attribute key="weight" value="320" />
    </item>
    <item id="2669" article="a" name="fried omanyte">
        <attribute key="weight" value="320" />
    </item>
    <item id="2670" name="shoyu tentacles">
        <attribute key="weight" value="30" />
    </item>
    <item id="2671" name="salad">
        <attribute key="weight" value="2000" />
    </item>
    <item id="2672" name="nutella">
        <attribute key="weight" value="3000" />
    </item>
    <item id="2673" article="a" name="lollipop" plural="lollipops">
        <attribute key="weight" value="140" />
    </item>
    <item id="2674" article="a" name="chocolat cake" plural="chocolat cakes">
        <attribute key="weight" value="150" />
    </item>
    <item id="2675" article="an" name="strawberry cake" plural="strawberry cakes">
        <attribute key="weight" value="110" />
    </item>
    <item id="2676" article="a" name="milk pudding" plural="milk puddings">
        <attribute key="weight" value="180" />
    </item>
    <item id="2677" article="a" name="grilled steak" plural="grilled steaks">
        <attribute key="weight" value="20" />
    </item>
    <item id="2678" article="a" name="fries">
        <attribute key="weight" value="480" />
    </item>
    <item id="2679" article="a" name="cherry" plural="cherries">
        <attribute key="weight" value="20" />
    </item>
    <item id="2680" article="a" name="roasted magikarp" plural="roasted magikarps">
        <attribute key="weight" value="20" />
    </item>
    <item id="2681" name="roasted shiny magikarp" plural="roasted shiny magikarps">
        <attribute key="weight" value="250" />
    </item>
    <item id="2682" article="a" name="grilled gyarados tail">
        <attribute key="weight" value="950" />
    </item>
    <item id="2683" article="a" name="tauros meat">
        <attribute key="weight" value="1200" />
    </item>
    <item id="2684" article="a" name="carrot" plural="carrots">
        <attribute key="weight" value="200" />
    </item>
    <item id="2685" article="a" name="chocolate" plural="chocolates">
        <attribute key="weight" value="100" />
    </item>
    <item id="2686" article="a" name="strawberry milkshake" plural="strawberry milkshakes">
        <attribute key="weight" value="350" />
    </item>
    <item id="2687" article="a" name="orange" plural="oranges">
        <attribute key="weight" value="0" />
    </item>
    <item id="2688" article="a" name="water bottle" plural="water bottles">
        <attribute key="weight" value="50" />
    </item>
    <item fromid="2689" toid="2691" article="an" name="juice">
        <attribute key="weight" value="120" />
    </item>
    <item id="2692" name="flour">
        <attribute key="weight" value="500" />
        <attribute key="showcount" value="0" />
    </item>
    <item id="2693" article="a" name="lump of dough" plural="lumps of dough">
        <attribute key="weight" value="500" />
    </item>
    <item id="2694" article="a" name="bunch of wheat" plural="bunches of wheat">
        <attribute key="weight" value="1250" />
    </item>
    <item id="2695" article="an" name="egg" plural="eggs">
        <attribute key="weight" value="30" />
    </item>
    <item id="2696" name="cheese">
        <attribute key="weight" value="400" />
    </item>
    <item id="2697" article="a" name="snowy dead tree" />
    <item id="2698" article="a" name="snowy fir tree" />
    <item id="2699" article="a" name="magic tree" />
    <item id="2700" article="a" name="fir tree" />
    <item id="2701" article="a" name="sycamore" />
    <item id="2702" article="a" name="willow" />
    <item id="2703" article="a" name="plum tree" />
    <item id="2704" article="a" name="red maple" />
    <item id="2705" article="a" name="pear tree" />
    <item id="2706" article="a" name="yellow maple" />
    <item id="2707" article="a" name="beech" />
    <item id="2708" article="a" name="poplar" />
    <item fromid="2709" toid="2710" article="a" name="dead tree" />
    <item id="2711" article="a" name="dwarf tree" />
    <item id="2712" article="a" name="pine" />
    <item fromid="2713" toid="2720" article="a" name="dead tree" />
    <item id="2721" name="old rush wood" />
    <item id="2722" article="an" name="old tree" />
    <item fromid="2723" toid="2724" article="a" name="cactus" />
    <item id="2725" article="a" name="palm" />
    <item id="2726" article="a" name="coconut palm" />
    <item fromid="2727" toid="2736" article="a" name="cactus" />
    <item id="2737" name="wheat">
        <attribute key="decayTo" value="2738" />
        <attribute key="duration" value="240" />
    </item>
    <item id="2738" name="wheat">
        <attribute key="description" value="It is not mature yet." />
        <attribute key="decayTo" value="2739" />
        <attribute key="duration" value="240" />
    </item>
    <item id="2739" name="wheat" />
    <item id="2740" name="moon flowers" />
    <item id="2741" article="a" name="moon flower">
        <attribute key="weight" value="10" />
    </item>
    <item id="2742" article="a" name="white flower" />
    <item id="2743" article="a" name="heaven blossom" />
    <item id="2744" article="a" name="red rose">
        <attribute key="weight" value="80" />
    </item>
    <item id="2745" article="a" name="blue rose">
        <attribute key="weight" value="80" />
    </item>
    <item id="2746" article="a" name="yellow rose">
        <attribute key="weight" value="80" />
    </item>
    <item id="2747" article="a" name="grave flower">
        <attribute key="weight" value="60" />
    </item>
    <item id="2748" article="a" name="love flower" />
    <item id="2749" article="a" name="pink royal blossom" />
    <item id="2750" article="a" name="yellow royal blossom" />
    <item id="2751" article="a" name="red royal blossom" />
    <item id="2752" name="sunflowers" />
    <item id="2753" article="a" name="sunflower" />
    <item id="2754" article="a" name="tulip">
        <attribute key="weight" value="50" />
    </item>
    <item fromid="2755" toid="2758" article="a" name="water lily" />
    <item id="2759" article="an" name="orange star">
        <attribute key="weight" value="70" />
    </item>
    <item id="2760" article="a" name="goat grass">
        <attribute key="weight" value="80" />
    </item>
    <item id="2761" article="an" name="orchid" />
    <item fromid="2762" toid="2766" article="a" name="rose bush" />
    <item id="2767" article="a" name="bush" />
    <item id="2768" article="a" name="small fir tree" />
    <item id="2769" article="a" name="bush" />
    <item id="2770" article="a" name="branch" />
    <item fromid="2771" toid="2772" article="a" name="swamp plant" />
    <item id="2773" article="a" name="mud whip" />
    <item id="2774" article="a" name="swamp plant" />
    <item id="2775" article="a" name="swamp lilly" />
    <item id="2776" article="a" name="swamp plant" />
    <item id="2777" article="a" name="bog fingers plant" />
    <item id="2778" article="a" name="swamp plant" />
    <item id="2779" article="a" name="frog leaf" />
    <item id="2780" article="a" name="swamp plant" />
    <item id="2781" name="jungle grass">
        <attribute key="decayTo" value="2782" />
        <attribute key="duration" value="240" />
    </item>
    <item id="2782" name="jungle grass" />
    <item id="2783" article="a" name="swamp flower" />
    <item id="2784" article="a" name="dry bush" />
    <item id="2785" article="a" name="blueberry bush" />
    <item id="2786" article="a" name="blueberry bush">
        <attribute key="decayTo" value="2785" />
        <attribute key="duration" value="300" />
    </item>
    <item id="2787" article="a" name="white mushroom" plural="white mushrooms">
        <attribute key="weight" value="40" />
    </item>
    <item id="2788" article="a" name="red mushroom" plural="red mushrooms">
        <attribute key="weight" value="50" />
    </item>
    <item id="2789" article="a" name="brown mushroom" plural="brown mushrooms">
        <attribute key="weight" value="20" />
    </item>
    <item id="2790" name="orange mushroom" plural="orange mushrooms">
        <attribute key="weight" value="30" />
    </item>
    <item id="2791" name="wood mushroom" plural="wood mushrooms">
        <attribute key="weight" value="30" />
    </item>
    <item id="2792" article="a" name="dark mushroom" plural="dark mushrooms">
        <attribute key="weight" value="10" />
    </item>
    <item fromid="2793" toid="2794" name="mushrooms" plural="mushrooms">
        <attribute key="weight" value="10" />
    </item>
    <item id="2795" article="a" name="fire mushroom" plural="fire mushrooms">
        <attribute key="weight" value="10" />
    </item>
    <item id="2796" article="a" name="green mushroom" plural="green mushrooms">
        <attribute key="weight" value="10" />
    </item>
    <item id="2797" article="a" name="stone" />
    <item id="2798" article="a" name="blood herb" plural="blood herbs">
        <attribute key="weight" value="120" />
    </item>
    <item id="2799" article="a" name="stone herb" plural="stone herbs">
        <attribute key="weight" value="20" />
    </item>
    <item id="2800" article="a" name="star herb" plural="star herbs">
        <attribute key="weight" value="30" />
    </item>
    <item id="2801" article="a" name="fern" plural="ferns">
        <attribute key="weight" value="30" />
    </item>
    <item id="2802" article="a" name="sling herb" plural="sling herbs">
        <attribute key="weight" value="90" />
    </item>
    <item id="2803" article="a" name="powder herb" plural="powder herbs">
        <attribute key="weight" value="50" />
    </item>
    <item id="2804" article="a" name="shadow herb" plural="shadow herbs">
        <attribute key="weight" value="100" />
    </item>
    <item id="2805" article="a" name="troll green" plural="troll greens">
        <attribute key="weight" value="100" />
    </item>
    <item id="3129" article="a" name="dead human">
        <attribute key="containerSize" value="8" />
        <attribute key="decayTo" value="3130" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="3130" article="a" name="dead human">
        <attribute key="weight" value="120000" />
        <attribute key="decayTo" value="3131" />
        <attribute key="duration" value="30" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="3131" article="a" name="dead human">
        <attribute key="weight" value="120000" />
        <attribute key="decayTo" value="3132" />
        <attribute key="duration" value="30" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="3132" article="a" name="dead human">
        <attribute key="weight" value="120000" />
        <attribute key="decayTo" value="3133" />
        <attribute key="duration" value="30" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="3133" article="a" name="dead human">
        <attribute key="weight" value="60000" />
        <attribute key="decayTo" value="3134" />
        <attribute key="duration" value="30" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="3134" article="a" name="dead human">
        <attribute key="weight" value="60000" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item fromid="3135" toid="3136" article="a" name="ladder">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="3137" article="a" name="trapdoor">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="3138" article="a" name="stairway">
        <attribute key="floorchange" value="down" />
    </item>
    <item fromid="3139" toid="3151" name="wooden floor" />
    <item fromid="3152" toid="3157" name="stone floor" />
    <item fromid="3158" toid="3168" article="a" name="strange carving" />
    <item id="3169" article="a" name="carved stone tile" />
    <item fromid="3170" toid="3172" article="a" name="strange carving" />
    <item fromid="3173" toid="3176" name="ornamented floor" />
    <item id="3177" article="a" name="carved stone tile" />
    <item fromid="3178" toid="3181" name="ornamented floor" />
    <item fromid="3182" toid="3187" article="a" name="strange carving" />
    <item fromid="3188" toid="3189" article="a" name="stone roof" />
    <item fromid="3190" toid="3201" article="a" name="strange carving" />
    <item id="3202" article="a" name="strange carving">
        <attribute key="description" value="It seems to be a switch." />
    </item>
    <item fromid="3203" toid="3214" article="a" name="strange carving" />
    <item id="3215" article="a" name="strange carving">
        <attribute key="description" value="It seems to be a switch." />
    </item>
    <item fromid="3216" toid="3217" article="a" name="wooden tile">
        <attribute key="description" value="It seems to be a switch." />
    </item>
    <item id="3218" article="a" name="stone roof" />
    <item fromid="3219" toid="3220" article="a" name="stone stairway">
        <attribute key="floorchange" value="down" />
    </item>
    <item fromid="3221" toid="3223" article="a" name="stone roof" />
    <item fromid="3224" toid="3225" article="a" name="wooden roof" />
    <item fromid="3226" toid="3241" article="a" name="stone roof" />
    <item fromid="3242" toid="3245" name="wooden flooring" />
    <item id="3263" name="jungle grass" />
    <item fromid="3264" toid="3265" name="ground" />
    <item fromid="3298" toid="3309" name="jungle grass" />
    <item id="3310" article="a" name="mud stain">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="3311" article="a" name="pitfall">
        <attribute key="floorchange" value="down" />
    </item>
    <item fromid="3312" toid="3322" article="an" name="ant trail" />
    <item id="3323" article="an" name="anthill" />
    <item id="3324" article="a" name="pitfall">
        <attribute key="floorchange" value="down" />
    </item>
    <item fromid="3325" toid="3347" article="a" name="rock" />
    <item id="3348" article="a" name="dried grass roof" />
    <item fromid="3349" toid="3360" article="a" name="wooden roof" />
    <item fromid="3361" toid="3422" article="a" name="stone wall" />
    <item fromid="3423" toid="3438" article="a" name="bamboo wall" />
    <item fromid="3439" toid="3446" article="a" name="stone archway" />
    <item fromid="3447" toid="3448" article="a" name="bamboo wall" />
    <item id="3449" article="a" name="window" />
    <item fromid="3450" toid="3451" article="a" name="bamboo wall" />
    <item id="3452" article="a" name="window" />
    <item id="3453" article="a" name="broken bamboo" />
    <item fromid="3454" toid="3466" article="a" name="stone wall" />
    <item id="3467" article="a" name="window" />
    <item fromid="3468" toid="3470" article="a" name="stone wall" />
    <item id="3471" article="a" name="window" />
    <item fromid="3472" toid="3475" article="a" name="stone wall" />
    <item fromid="3476" toid="3479" article="a" name="stone archway" />
    <item fromid="3480" toid="3495" article="a" name="stone wall" />
    <item fromid="3496" toid="3498" article="a" name="grass wall" />
    <item id="3499" article="a" name="window" />
    <item fromid="3500" toid="3501" article="a" name="grass wall" />
    <item id="3502" article="a" name="window" />
    <item id="3503" article="a" name="grass wall" />
    <item fromid="3504" toid="3505" article="a" name="grass archway" />
    <item fromid="3506" toid="3507" article="a" name="liane" />
    <item fromid="3508" toid="3532" article="a" name="palisade" />
    <item fromid="3533" toid="3534" article="a" name="stone wall" />
    <item id="3535" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="3536" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="3537" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="3538" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="3539" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="3540" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="3541" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item id="3542" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="3543" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="3544" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="3545" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="3546" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="3547" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="3548" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="3549" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="3550" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item id="3551" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="3552" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item fromid="3569" toid="3574" article="a" name="waterfall" />
    <item fromid="3587" toid="3596" article="a" name="small boat" />
    <item fromid="3597" toid="3598" article="a" name="sail" />
    <item fromid="3599" toid="3600" article="a" name="paddle" />
    <item fromid="3601" toid="3602" article="a" name="boat" />
    <item fromid="3603" toid="3609" article="a" name="stone" />
    <item fromid="3610" toid="3614" article="a" name="stones" />
    <item fromid="3615" toid="3631" article="a" name="stone" />
    <item fromid="3632" toid="3635" article="a" name="mossy stone" />
    <item fromid="3636" toid="3677" article="a" name="stone" />
    <item id="3678" article="a" name="ladder" />
    <item id="3679" article="a" name="ramp">
        <attribute key="floorchange" value="east" />
    </item>
    <item id="3680" article="a" name="ramp" />
    <item id="3681" article="a" name="ramp">
        <attribute key="floorchange" value="west" />
    </item>
    <item id="3682" article="a" name="ramp" />
    <item id="3683" article="a" name="ramp">
        <attribute key="floorchange" value="south" />
    </item>
    <item id="3684" article="a" name="ramp" />
    <item id="3685" article="a" name="ramp">
        <attribute key="floorchange" value="north" />
    </item>
    <item id="3686" article="a" name="ramp" />
    <item id="3687" name="stone stairs">
        <attribute key="floorchange" value="north" />
    </item>
    <item id="3688" name="stone stairs">
        <attribute key="floorchange" value="west" />
    </item>
    <item fromid="3689" toid="3696" article="a" name="large cauldron" />
    <item fromid="3697" toid="3728" article="a" name="statue" />
    <item fromid="3729" toid="3732" article="a" name="dried well" />
    <item fromid="3733" toid="3736" article="a" name="poison well">
        <attribute key="fluidSource" value="slime" />
    </item>
    <item fromid="3737" toid="3738" article="a" name="statue" />
    <item fromid="3739" toid="3742" article="a" name="huntress statue" />
    <item fromid="3743" toid="3744" article="a" name="lantern" />
    <item fromid="3745" toid="3755" article="a" name="bamboo fence" />
    <item fromid="3756" toid="3765" article="a" name="bridge" />
    <item id="3766" article="a" name="pillar" />
    <item id="3767" article="a" name="broken pillar" />
    <item fromid="3768" toid="3791" article="a" name="bridge" />
    <item fromid="3792" toid="3793" article="a" name="stone wall" />
    <item fromid="3794" toid="3801" article="a" name="bamboo wall" />
    <item fromid="3802" toid="3804" article="a" name="statue" />
    <item id="3805" article="a" name="stone table">
        <attribute key="rotateTo" value="3806" />
    </item>
    <item id="3806" article="a" name="stone table">
        <attribute key="rotateTo" value="3805" />
    </item>
    <item id="3807" article="a" name="tusk table">
        <attribute key="rotateTo" value="3808" />
    </item>
    <item id="3808" article="a" name="tusk table">
        <attribute key="rotateTo" value="3807" />
    </item>
    <item id="3809" article="a" name="bamboo table">
        <attribute key="rotateTo" value="3810" />
    </item>
    <item id="3810" article="a" name="bamboo table">
        <attribute key="rotateTo" value="3809" />
    </item>
    <item id="3811" article="a" name="tree stump" />
    <item id="3812" article="a" name="time table" />
    <item id="3813" article="a" name="tusk chair">
        <attribute key="rotateTo" value="3815" />
    </item>
    <item id="3814" article="a" name="tusk chair">
        <attribute key="rotateTo" value="3816" />
    </item>
    <item id="3815" article="a" name="tusk chair">
        <attribute key="rotateTo" value="3814" />
    </item>
    <item id="3816" article="a" name="tusk chair">
        <attribute key="rotateTo" value="3813" />
    </item>
    <item id="3817" article="an" name="ivory chair">
        <attribute key="rotateTo" value="3819" />
    </item>
    <item id="3818" article="an" name="ivory chair">
        <attribute key="rotateTo" value="3820" />
    </item>
    <item id="3819" article="an" name="ivory chair">
        <attribute key="rotateTo" value="3818" />
    </item>
    <item id="3820" article="a" name="vory chair">
        <attribute key="rotateTo" value="3817" />
    </item>
    <item id="3821" article="a" name="tree stump" />
    <item fromid="3822" toid="3825" article="a" name="bookcase">
        <attribute key="containerSize" value="10" />
    </item>
    <item fromid="3826" toid="3827" article="a" name="bamboo shelf">
        <attribute key="containerSize" value="6" />
    </item>
    <item fromid="3828" toid="3829" article="a" name="bookcase" />
    <item fromid="3830" toid="3831" article="a" name="bookcase">
        <attribute key="containerSize" value="10" />
    </item>
    <item id="3832" article="a" name="bamboo drawer">
        <attribute key="rotateTo" value="3833" />
        <attribute key="containerSize" value="6" />
    </item>
    <item id="3833" article="a" name="bamboo drawer">
        <attribute key="rotateTo" value="3834" />
        <attribute key="containerSize" value="6" />
    </item>
    <item id="3834" article="a" name="bamboo drawer">
        <attribute key="rotateTo" value="3835" />
        <attribute key="containerSize" value="6" />
    </item>
    <item id="3835" article="a" name="bamboo drawer">
        <attribute key="rotateTo" value="3832" />
        <attribute key="containerSize" value="6" />
    </item>
    <item id="3836" article="a" name="hammock">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="2" />
        <attribute key="maleTransformTo" value="3840" />
        <attribute key="femaleTransformTo" value="7785" />
    </item>
    <item id="3837" article="a" name="hammock">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="0" />
        <attribute key="maleTransformTo" value="3841" />
        <attribute key="femaleTransformTo" value="8077" />
    </item>
    <item id="3838" article="a" name="hammock">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="1" />
        <attribute key="maleTransformTo" value="3842" />
        <attribute key="femaleTransformTo" value="7786" />
    </item>
    <item id="3839" article="a" name="hammock">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="3" />
        <attribute key="maleTransformTo" value="3843" />
        <attribute key="femaleTransformTo" value="8078" />
    </item>
    <item id="3840" article="a" name="hammock">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="2" />
        <attribute key="transformTo" value="3836" />
    </item>
    <item id="3841" article="a" name="hammock">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="0" />
        <attribute key="transformTo" value="3837" />
    </item>
    <item id="3842" article="a" name="hammock">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="1" />
        <attribute key="transformTo" value="3838" />
    </item>
    <item id="3843" article="a" name="hammock">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="3" />
        <attribute key="transformTo" value="3839" />
    </item>
    <item fromid="3844" toid="3847" name="grass" />
    <item fromid="3848" toid="3851" name="hay" />
    <item fromid="3852" toid="3859" article="a" name="bear skin rug" />
    <item id="3860" article="a" name="skunk skin rug" />
    <item fromid="3861" toid="3866" article="a" name="hung cloak" />
    <item fromid="3867" toid="3870" article="a" name="cloth wall" />
    <item id="3871" article="a" name="pile of chopped wood" />
    <item id="3872" article="a" name="block of wood">
        <attribute key="description" value="It's a lumberjack's working place." />
    </item>
    <item id="3873" name="some pieces of wood" />
    <item fromid="3874" toid="3881" article="a" name="fishing net" />
    <item fromid="3882" toid="3895" article="a" name="big footprint" />
    <item fromid="3896" toid="3897" article="a" name="cloth wall" />
    <item fromid="3898" toid="3899" article="a" name="tiger skin" />
    <item id="3900" article="a" name="strange carving" />
    <item id="3901" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a wooden chair." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3902" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a sofa chair." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3903" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a red cushioned chair." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3904" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a green cushioned chair." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3905" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a tusk chair." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3906" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for an ivory chair." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3907" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a water-pipe." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3908" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a coal basin." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3909" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a big table." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3910" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a square table." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3911" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a round table." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3912" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a small table." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3913" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a stone table." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3914" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a tusk table." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3915" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a chest." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3916" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a barrel." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3917" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a harp." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3918" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a bird cage." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3919" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a bamboo table." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3920" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a bamboo drawer." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3921" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a drawer." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3922" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for an exotic flower." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3923" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a potted flower." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3924" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a flower bowl." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3925" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a chest." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3926" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a piano." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3927" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a globe." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3928" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a rocking chair." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3929" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for an indoor plant." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3930" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a crate." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3931" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a christmas tree." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3932" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a dresser." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3933" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a pendelum clock." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3934" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a locker." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3935" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a trough." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3936" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a time table." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3937" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a table lamp." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3938" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a bookcase." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="3939" article="a" name="camouflage bag">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="8" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="3940" article="a" name="camouflage backpack">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="20" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item fromid="3941" toid="3942" article="a" name="cup">
        <attribute key="weight" value="200" />
    </item>
    <item id="3943" article="a" name="wall candle" />
    <item id="3944" article="a" name="lit wall candle" />
    <item id="3945" article="a" name="wall candle" />
    <item id="3946" article="a" name="lit wall candle" />
    <item id="3947" article="a" name="wall lamp" />
    <item id="3948" article="a" name="lit wall lamp" />
    <item id="3949" article="a" name="wall lamp" />
    <item id="3950" article="a" name="lit wall lamp" />
    <item id="3951" article="a" name="drum">
        <attribute key="weight" value="4500" />
    </item>
    <item id="3952" article="a" name="didgeridoo">
        <attribute key="weight" value="2600" />
    </item>
    <item id="3953" article="a" name="drum">
        <attribute key="weight" value="3200" />
    </item>
    <item id="3954" article="a" name="bear">
        <attribute key="weight" value="650" />
    </item>
    <item id="3955" article="a" name="voodoo doll">
        <attribute key="weight" value="500" />
    </item>
    <item id="3956" article="an" name="elephant tusk" plural="elephant tusks">
        <attribute key="weight" value="1500" />
    </item>
    <item id="3957" article="a" name="war horn">
        <attribute key="weight" value="150" />
    </item>
    <item fromid="3958" toid="3959" article="a" name="garbage" />
    <item id="3960" article="an" name="old and used backpack">
        <attribute key="description" value="A label on the backpack reads: Property of Sam, Thais." />
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="20" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="3965" article="a" name="hunting spear" plural="hunting spears">
        <attribute key="weight" value="2200" />
        <attribute key="attack" value="32" />
        <attribute key="weaponType" value="distance" />
        <attribute key="shootType" value="huntingspear" />
        <attribute key="range" value="5" />
        <attribute key="breakChance" value="6" />
        <attribute key="ammoAction" value="moveback" />
    </item>
    <item id="3966" article="a" name="banana staff">
        <attribute key="weight" value="5000" />
        <attribute key="defense" value="15" />
        <attribute key="attack" value="25" />
        <attribute key="weaponType" value="club" />
        <attribute key="extradef" value="2" />
    </item>
    <item id="3967" article="a" name="fainted unown u">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="3968" article="a" name="fainted unown w">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="3969" article="a" name="fainted Dusclops">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="3970" article="a" name="fainted unown x">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="3971" article="a" name="fainted lugia">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="3972" article="a" name="fainted unown y">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="3973" article="a" name="tusk shield">
        <attribute key="weight" value="6900" />
        <attribute key="defense" value="27" />
        <attribute key="weaponType" value="shield" />
    </item>
    <item id="3974" article="a" name="sentinel shield">
        <attribute key="weight" value="4900" />
        <attribute key="defense" value="22" />
        <attribute key="weaponType" value="shield" />
    </item>
    <item id="3975" article="a" name="salamander shield">
        <attribute key="weight" value="7200" />
        <attribute key="defense" value="26" />
        <attribute key="weaponType" value="shield" />
    </item>
    <item fromid="3977" toid="3980" article="a" name="crane" />
    <item id="3981" article="a" name="mailbox">
        <attribute key="type" value="mailbox" />
    </item>
    <item id="3982" name="crocodile boots">
        <attribute key="weight" value="900" />
        <attribute key="armor" value="1" />
        <attribute key="slotType" value="feet" />
    </item>
    <item id="3983" article="a" name="bast skirt">
        <attribute key="weight" value="1000" />
        <attribute key="slotType" value="legs" />
    </item>
    <item id="3984" name="jungle grass">
        <attribute key="decayTo" value="3985" />
        <attribute key="duration" value="240" />
    </item>
    <item id="3985" name="jungle grass" />
    <item fromid="3986" toid="4005" article="a" name="thorn bush" />
    <item id="4006" article="an" name="orange tree" />
    <item id="4007" article="a" name="thread tree" />
    <item id="4008" article="a" name="jungle dweller bush" />
    <item id="4009" article="an" name="amazonian tree" />
    <item fromid="4010" toid="4013" article="a" name="bush" />
    <item fromid="4014" toid="4015" article="a" name="plant" />
    <item id="4016" article="a" name="dragons nest tree" />
    <item id="4017" article="a" name="purple kiss bush" />
    <item id="4018" article="a" name="plant" />
    <item fromid="4019" toid="4024" article="a" name="jungle umbrella" />
    <item fromid="4025" toid="4034" article="a" name="bamboo plant" />
    <item fromid="4035" toid="4037" article="a" name="tree" />
    <item fromid="4038" toid="4040" article="a" name="tree stump" />
    <item fromid="4041" toid="4067" article="a" name="skinny branch" />
    <item fromid="4068" toid="4072" name="wild vines" />
    <item fromid="4073" toid="4112" article="a" name="liana" />
    <item fromid="4113" toid="4133" article="a" name="tree" />
    <item id="4134" article="a" name="chill nettle" />
    <item id="4135" article="a" name="monkey tail" />
    <item id="4136" article="a" name="fairy queen" />
    <item id="4137" article="a" name="crane plant" />
    <item id="4138" name="jungle bells" />
    <item id="4139" article="a" name="dawn singer" />
    <item id="4140" article="a" name="turtle sprouter" />
    <item id="4141" article="a" name="bees ballroom" />
    <item id="4142" article="a" name="giant jungle rose" />
    <item id="4143" article="a" name="jungle rose" />
    <item fromid="4144" toid="4147" article="a" name="titans orchid" />
    <item id="4148" article="a" name="purple cardinal" />
    <item id="4149" article="a" name="witches cauldron" />
    <item fromid="4150" toid="4151" name="weeds" />
    <item fromid="4152" toid="4154" article="a" name="meadow star" />
    <item id="4155" article="a" name="tulip" />
    <item id="4156" article="a" name="dew kisser flower" />
    <item fromid="4157" toid="4158" name="dew kisser flowers" />
    <item fromid="4159" toid="4162" article="a" name="velvet petal" />
    <item id="4163" article="a" name="wild plant" />
    <item fromid="4164" toid="4166" article="a" name="pearl flower" />
    <item fromid="4167" toid="4171" name="mushrooms" />
    <item fromid="4172" toid="4176" article="a" name="moldy mushroom" />
    <item fromid="4177" toid="4180" name="mushrooms" />
    <item id="4181" article="a" name="pack of mushrooms" />
    <item id="4182" article="a" name="small mushroom" />
    <item id="4183" name="small mushrooms" />
    <item id="4184" article="a" name="giant mushroom" />
    <item id="4185" article="a" name="large pearl flower" />
    <item fromid="4186" toid="4201" article="a" name="log" />
    <item fromid="4202" toid="4207" article="a" name="vine" />
    <item fromid="4208" toid="4209" article="a" name="jungle maw" />
    <item fromid="4210" toid="4215" article="a" name="log" />
    <item fromid="4216" toid="4222" article="a" name="tree stump" />
    <item fromid="4223" toid="4238" article="a" name="branch" />
    <item fromid="4239" toid="4250" article="a" name="log covered in moss" />
    <item fromid="4394" toid="4402" article="a" name="red carpet" />
    <item id="4403" article="a" name="mast" />
    <item id="4404" article="a" name="wooden lamp" />
    <item fromid="4405" toid="4421" name="rocks" />
    <item fromid="4456" toid="4467" name="rocks" />
    <item fromid="4468" toid="4513" article="a" name="mountain" />
    <item fromid="4514" toid="4525" name="rocks" />
    <item fromid="4526" toid="4553" name="grass" />
    <item fromid="4554" toid="4566" name="rocks" />
    <item fromid="4570" toid="4579" name="rocks" />
    <item fromid="4580" toid="4594" name="grass" />
    <item fromid="4595" toid="4607" name="rocks" />
    <item fromid="4608" toid="4613" name="shallow water">
        <attribute key="description" value="You see the silvery movement of fish." />
        <attribute key="type" value="trashholder" />
        <attribute key="effect" value="bluebubble" />
        <attribute key="fluidSource" value="water" />
        <attribute key="allowpickupable" value="1" />
    </item>
    <item id="4614" name="shallow water">
        <attribute key="decayTo" value="4608" />
        <attribute key="duration" value="60" />
        <attribute key="type" value="trashholder" />
        <attribute key="effect" value="bluebubble" />
        <attribute key="fluidSource" value="water" />
        <attribute key="allowpickupable" value="1" />
    </item>
    <item id="4615" name="shallow water">
        <attribute key="decayTo" value="4609" />
        <attribute key="duration" value="60" />
        <attribute key="type" value="trashholder" />
        <attribute key="effect" value="bluebubble" />
        <attribute key="fluidSource" value="water" />
        <attribute key="allowpickupable" value="1" />
    </item>
    <item id="4616" name="shallow water">
        <attribute key="decayTo" value="4610" />
        <attribute key="duration" value="60" />
        <attribute key="type" value="trashholder" />
        <attribute key="effect" value="bluebubble" />
        <attribute key="fluidSource" value="water" />
        <attribute key="allowpickupable" value="1" />
    </item>
    <item id="4617" name="shallow water">
        <attribute key="decayTo" value="4611" />
        <attribute key="duration" value="60" />
        <attribute key="type" value="trashholder" />
        <attribute key="effect" value="bluebubble" />
        <attribute key="fluidSource" value="water" />
        <attribute key="allowpickupable" value="1" />
    </item>
    <item id="4618" name="shallow water">
        <attribute key="decayTo" value="4612" />
        <attribute key="duration" value="60" />
        <attribute key="type" value="trashholder" />
        <attribute key="effect" value="bluebubble" />
        <attribute key="fluidSource" value="water" />
        <attribute key="allowpickupable" value="1" />
    </item>
    <item id="4619" name="shallow water">
        <attribute key="decayTo" value="4613" />
        <attribute key="duration" value="60" />
        <attribute key="type" value="trashholder" />
        <attribute key="effect" value="bluebubble" />
        <attribute key="fluidSource" value="water" />
        <attribute key="allowpickupable" value="1" />
    </item>
    <item fromid="4620" toid="4625" name="shallow water">
        <attribute key="type" value="trashholder" />
        <attribute key="effect" value="bluebubble" />
        <attribute key="fluidSource" value="water" />
    </item>
    <item fromid="4632" toid="4643" name="shallow water">
        <attribute key="fluidSource" value="water" />
        <attribute key="allowpickupable" value="1" />
    </item>
    <item fromid="4644" toid="4663" name="shallow water">
        <attribute key="fluidSource" value="water" />
        <attribute key="allowpickupable" value="1" />
    </item>
    <item fromid="4664" toid="4666" name="shallow water">
        <attribute key="type" value="trashholder" />
        <attribute key="effect" value="bluebubble" />
        <attribute key="fluidSource" value="water" />
        <attribute key="allowpickupable" value="1" />
    </item>
    <item fromid="4667" toid="4690" name="dirt" />
    <item fromid="4691" toid="4712" name="swamp">
        <attribute key="type" value="trashholder" />
        <attribute key="effect" value="greenbubble" />
        <attribute key="allowpickupable" value="1" />
    </item>
    <item fromid="4713" toid="4736" name="swamp" />
    <item fromid="4737" toid="4748" name="snow" />
    <item fromid="4749" toid="4755" name="swamp">
        <attribute key="type" value="trashholder" />
        <attribute key="effect" value="greenbubble" />
        <attribute key="allowpickupable" value="1" />
    </item>
    <item fromid="4760" toid="4783" name="sand" />
    <item fromid="4784" toid="4795" name="grass" />
    <item fromid="4796" toid="4819" name="dirt" />
    <item fromid="4820" toid="4825" name="shallow water">
        <attribute key="type" value="trashholder" />
        <attribute key="effect" value="bluebubble" />
        <attribute key="fluidSource" value="water" />
    </item>
    <item fromid="4826" toid="4827" article="a" name="mountain" />
    <item fromid="4828" toid="4831" name="shallow water">
        <attribute key="fluidSource" value="water" />
    </item>
    <item fromid="4832" toid="4833" name="dirt" />
    <item fromid="4834" toid="4837" name="stairs">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="4838" article="a" name="stone herb" plural="stone herbs">
        <attribute key="weight" value="20" />
    </item>
    <item id="4839" article="a" name="bottle">
        <attribute key="weight" value="300" />
    </item>
    <item id="4840" article="a" name="small mushroom">
        <attribute key="weight" value="100" />
    </item>
    <item id="4842" article="a" name="parchment">
        <attribute key="weight" value="100" />
        <attribute key="writeable" value="1" />
        <attribute key="maxTextLen" value="512" />
    </item>
    <item id="4843" article="a" name="giant ape's hair">
        <attribute key="weight" value="2000" />
    </item>
    <item id="4845" article="a" name="silver brooch">
        <attribute key="weight" value="100" />
    </item>
    <item id="4846" article="an" name="iron hammer">
        <attribute key="weight" value="6600" />
        <attribute key="defense" value="10" />
        <attribute key="attack" value="18" />
        <attribute key="weaponType" value="club" />
    </item>
    <item id="4847" article="a" name="spectral dress">
        <attribute key="weight" value="1000" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="4848" article="an" name="icicle">
        <attribute key="description" value="It is melting rapidly." />
        <attribute key="weight" value="1900" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
    </item>
    <item id="4849" name="flour">
        <attribute key="weight" value="500" />
        <attribute key="showcount" value="0" />
    </item>
    <item id="4850" article="a" name="hydra egg">
        <attribute key="weight" value="500" />
    </item>
    <item id="4851" article="a" name="life crystal">
        <attribute key="weight" value="600" />
    </item>
    <item id="4852" article="a" name="black stone">
        <attribute key="weight" value="200" />
    </item>
    <item id="4853" article="a" name="blank paper">
        <attribute key="weight" value="100" />
        <attribute key="writeable" value="1" />
        <attribute key="maxTextLen" value="512" />
        <attribute key="writeOnceItemId" value="4854" />
    </item>
    <item id="4854" article="a" name="paper">
        <attribute key="weight" value="100" />
        <attribute key="writeable" value="1" />
        <attribute key="maxTextLen" value="512" />
    </item>
    <item id="4855" article="a" name="book">
        <attribute key="weight" value="1600" />
        <attribute key="writeable" value="1" />
        <attribute key="maxTextLen" value="1024" />
    </item>
    <item id="4856" article="an" name="ice pick">
        <attribute key="description" value="It might come in handy in cold regions." />
        <attribute key="weight" value="7000" />
    </item>
    <item id="4857" article="a" name="parchment">
        <attribute key="weight" value="100" />
        <attribute key="writeable" value="1" />
        <attribute key="maxTextLen" value="512" />
    </item>
    <item id="4858" article="a" name="funeral urn">
        <attribute key="description" value="It contains the ashes of a lizard high priest." />
        <attribute key="weight" value="10000" />
    </item>
    <item id="4859" article="a" name="small cask">
        <attribute key="description" value="It is filled with the blood of the snake god." />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="4860" name="wooden trash" />
    <item id="4861" article="a" name="cobra statue" />
    <item id="4862" name="metal trash" />
    <item id="4863" article="an" name="ectoplasm container">
        <attribute key="description" value="it is empty." />
        <attribute key="weight" value="600" />
    </item>
    <item id="4864" article="an" name="ectoplasm container">
        <attribute key="description" value="it is full." />
        <attribute key="weight" value="800" />
    </item>
    <item id="4865" article="a" name="butterfly conservation kit">
        <attribute key="description" value="it is empty." />
        <attribute key="weight" value="700" />
    </item>
    <item id="4866" article="a" name="butterfly conservation kit">
        <attribute key="description" value="contains a red butterfly." />
        <attribute key="weight" value="800" />
    </item>
    <item id="4867" article="a" name="butterfly conservation kit">
        <attribute key="description" value="contains a blue butterfly." />
        <attribute key="weight" value="800" />
    </item>
    <item id="4868" article="a" name="butterfly conservation kit">
        <attribute key="description" value="contains a pink butterfly." />
        <attribute key="weight" value="800" />
    </item>
    <item id="4869" article="a" name="botanist's container">
        <attribute key="description" value="it is empty." />
        <attribute key="weight" value="1800" />
    </item>
    <item fromid="4870" toid="4872" article="a" name="botanist's container">
        <attribute key="weight" value="2000" />
    </item>
    <item id="4873" article="a" name="brooch">
        <attribute key="weight" value="90" />
    </item>
    <item id="4874" article="a" name="dwarven pickaxe">
        <attribute key="weight" value="6000" />
    </item>
    <item id="4875" name="hydra eggs" />
    <item fromid="4876" toid="4882" name="swamp" />
    <item fromid="4883" toid="4905" article="a" name="ship" />
    <item fromid="4906" toid="4912" article="a" name="ship cabin wall" />
    <item id="4913" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="4914" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="4915" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="4916" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="4917" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="4918" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="4919" article="a" name="ship railing" />
    <item fromid="4920" toid="4921" article="a" name="ship cabin wall" />
    <item fromid="4922" toid="4941" article="a" name="ship railing" />
    <item fromid="4942" toid="4953" article="a" name="mast" />
    <item fromid="4954" toid="4961" article="a" name="sail" />
    <item fromid="4962" toid="4965" article="a" name="steering wheel" />
    <item fromid="4966" toid="4971" article="a" name="rudder blade" />
    <item id="4972" article="a" name="ventilation grille" />
    <item id="4973" article="a" name="bollard" />
    <item id="4974" article="a" name="ship" />
    <item fromid="4975" toid="4976" article="a" name="mast" />
    <item id="4977" article="a" name="ship" />
    <item fromid="4978" toid="4987" article="a" name="hawser" />
    <item fromid="4988" toid="4989" article="a" name="cleat" />
    <item id="4990" article="a" name="white flag" />
    <item id="4991" article="a" name="pirate flag" />
    <item fromid="4992" toid="4994" article="an" name="exotic butterfly">
        <attribute key="weight" value="100" />
    </item>
    <item id="4995" article="an" name="ice stalagmite" />
    <item id="4996" article="a" name="big anphora" />
    <item id="4997" article="a" name="stone rubbish" />
    <item fromid="4998" toid="5001" article="a" name="hawser" />
    <item fromid="5002" toid="5008" article="a" name="ship cabin wall" />
    <item id="5009" article="a" name="metal wall" />
    <item fromid="5010" toid="5011" article="an" name="ornamented wall" />
    <item fromid="5012" toid="5013" article="a" name="lava wall" />
    <item id="5014" article="an" name="exotic butterfly">
        <attribute key="weight" value="100" />
    </item>
    <item id="5015" article="a" name="mandrake">
        <attribute key="description" value="This rare root is often used for shamanic medicines." />
        <attribute key="weight" value="180" />
    </item>
    <item fromid="5016" toid="5017" article="a" name="skull" />
    <item fromid="5018" toid="5019" name="skulls" />
    <item fromid="5020" toid="5021" article="a" name="burning skull" />
    <item id="5022" article="an" name="orichalcum pearl" plural="orichalcum pearls">
        <attribute key="weight" value="30" />
    </item>
    <item fromid="5023" toid="5024" article="a" name="magic forcefield">
        <attribute key="type" value="teleport" />
    </item>
    <item fromid="5025" toid="5044" article="a" name="wooden lamp" />
    <item id="5045" article="a" name="flat roof" />
    <item id="5046" article="a" name="stone monkey" />
    <item fromid="5047" toid="5054" article="a" name="flat roof" />
    <item fromid="5055" toid="5056" article="a" name="stone monkey" />
    <item fromid="5057" toid="5060" article="a" name="stone cobra head" />
    <item fromid="5061" toid="5067" article="a" name="lava wall" />
    <item fromid="5068" toid="5070" name="electric sparks" />
    <item fromid="5071" toid="5073" article="a" name="electric iron bars" />
    <item fromid="5074" toid="5075" article="a" name="lava fountain" />
    <item fromid="5076" toid="5079" article="a" name="stony pond">
        <attribute key="fluidSource" value="water" />
    </item>
    <item id="5080" article="a" name="panda bear">
        <attribute key="weight" value="600" />
    </item>
    <item id="5081" article="a" name="trapdoor">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="5082" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="5083" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="5084" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="5085" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item fromid="5086" toid="5087" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a box." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="5088" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a barrel." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="5089" article="a" name="butterfly conservation kit">
        <attribute key="description" value="It contains a butterfly." />
        <attribute key="weight" value="800" />
    </item>
    <item id="5091" article="a" name="treasure map">
        <attribute key="weight" value="830" />
    </item>
    <item fromid="5092" toid="5096" article="a" name="palm" />
    <item id="5097" article="a" name="mango" plural="mangos">
        <attribute key="weight" value="180" />
    </item>
    <item id="5098" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="5099" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="5100" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="5101" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="5102" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="5103" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="5104" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item id="5105" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="5106" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="5107" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="5108" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="5109" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="5110" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="5111" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="5112" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="5113" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item id="5114" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="5115" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="5116" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="5117" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="5118" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="5119" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="5120" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="5121" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="5122" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item id="5123" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="5124" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="5125" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="5126" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="5127" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="5128" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="5129" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="5130" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="5131" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item id="5132" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="5133" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="5134" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="5135" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="5136" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="5137" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="5138" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="5139" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="5140" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="5141" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="5142" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="5143" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="5144" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="5145" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item fromid="5146" toid="5155" article="a" name="framework wall" />
    <item fromid="5156" toid="5157" article="a" name="mango tree" />
    <item fromid="5158" toid="5201" article="a" name="striped marquee" />
    <item fromid="5202" toid="5253" article="a" name="marquee" />
    <item fromid="5254" toid="5255" article="a" name="wooden railing" />
    <item fromid="5256" toid="5257" article="a" name="window" />
    <item id="5258" name="stairs">
        <attribute key="floorchange" value="west" />
    </item>
    <item id="5259" name="stairs">
        <attribute key="floorchange" value="north" />
    </item>
    <item id="5260" name="stairs">
        <attribute key="floorchange" value="west" />
    </item>
    <item fromid="5261" toid="5275" article="a" name="wooden wall" />
    <item fromid="5276" toid="5277" article="a" name="wooden wall window" />
    <item id="5278" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="5279" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="5280" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="5281" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="5282" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="5283" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="5284" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="5285" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="5286" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="5287" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="5288" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="5289" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="5290" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="5291" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="5292" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="5293" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item id="5294" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="5295" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item fromid="5296" toid="5301" name="wooden plank" />
    <item id="5302" name="wooden planks" />
    <item fromid="5303" toid="5304" article="a" name="white stone wall window">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item fromid="5305" toid="5307" article="a" name="white stone railing" />
    <item id="5308" article="a" name="white stone pillar" />
    <item fromid="5309" toid="5314" article="a" name="white stone railing" />
    <item fromid="5315" toid="5320" article="a" name="wooden railing" />
    <item fromid="5321" toid="5331" article="a" name="wooden pillar" />
    <item fromid="5332" toid="5389" article="a" name="sign" />
    <item fromid="5390" toid="5391" article="a" name="tree" />
    <item id="5392" article="a" name="dead tree" />
    <item id="5393" article="a" name="tree" />
    <item id="5394" article="a" name="dead tree" />
    <item id="5395" article="a" name="tree" />
    <item fromid="5396" toid="5399" article="a" name="plant" />
    <item fromid="5400" toid="5401" article="a" name="window" />
    <item fromid="5402" toid="5404" article="a" name="bamboo lamp" />
    <item fromid="5405" toid="5410" name="shallow water" />
    <item fromid="5411" toid="5412" name="rocks" />
    <item fromid="5413" toid="5416" article="a" name="coral reef" />
    <item id="5417" article="a" name="sea star" />
    <item id="5418" name="coral" />
    <item fromid="5419" toid="5420" name="bubbles" />
    <item id="5421" name="algae" />
    <item fromid="5422" toid="5423" article="a" name="coral reef" />
    <item fromid="5424" toid="5425" article="a" name="water wheel" />
    <item id="5426" article="a" name="stearing wheell" />
    <item fromid="5427" toid="5438" name="shallow water" />
    <item fromid="5439" toid="5441" article="a" name="steering wheel" />
    <item fromid="5442" toid="5443" article="a" name="damaged mast" />
    <item id="5444" article="a" name="broken anchor" />
    <item fromid="5445" toid="5449" article="a" name="damaged mast" />
    <item id="5450" article="a" name="damaged ship cabin" />
    <item id="5451" article="a" name="damaged mast" />
    <item fromid="5452" toid="5453" article="a" name="damaged ship cabin" />
    <item fromid="5454" toid="5455" article="a" name="damaged ship railing" />
    <item fromid="5456" toid="5459" article="a" name="damaged ship" />
    <item id="5460" article="a" name="damaged ventilation grill" />
    <item id="5461" article="a" name="helmet of the deep">
        <attribute key="weight" value="21000" />
        <attribute key="armor" value="2" />
        <attribute key="slotType" value="head" />
        <attribute key="suppressDrown" value="1" />
    </item>
    <item id="5462" name="pirate boots">
        <attribute key="weight" value="800" />
        <attribute key="armor" value="2" />
        <attribute key="slotType" value="feet" />
    </item>
    <item id="5463" article="a" name="sugar cane">
        <attribute key="decayTo" value="5464" />
        <attribute key="duration" value="240" />
    </item>
    <item id="5464" article="a" name="sugar cane">
        <attribute key="decayTo" value="5466" />
        <attribute key="duration" value="240" />
    </item>
    <item id="5465" article="a" name="burning sugar cane">
        <attribute key="decayTo" value="5471" />
        <attribute key="duration" value="10" />
    </item>
    <item id="5466" article="a" name="sugar cane" />
    <item id="5467" article="a" name="bunch of sugar cane" plural="bunches of sugar cane">
        <attribute key="weight" value="2250" />
    </item>
    <item id="5468" article="a" name="fire bug">
        <attribute key="weight" value="3050" />
    </item>
    <item fromid="5469" toid="5470" article="a" name="distillery" />
    <item id="5471" article="a" name="sugar cane" />
    <item fromid="5472" toid="5473" article="a" name="chain ball" />
    <item fromid="5474" toid="5475" article="a" name="torture locker" />
    <item fromid="5476" toid="5477" article="a" name="pillory" />
    <item fromid="5478" toid="5479" article="a" name="stone wall" />
    <item id="5480" article="a" name="cat's paw">
        <attribute key="weight" value="1000" />
    </item>
    <item fromid="5481" toid="5482" article="a" name="little scope" />
    <item fromid="5483" toid="5484" name="wall chain cuffs" />
    <item fromid="5485" toid="5495" article="a" name="straw mat" />
    <item id="5496" article="a" name="straw mat">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="2" />
        <attribute key="transformTo" value="5502" />
    </item>
    <item id="5497" article="a" name="straw mat">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="0" />
        <attribute key="transformTo" value="5503" />
    </item>
    <item id="5498" article="a" name="straw mat">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="1" />
        <attribute key="transformTo" value="5500" />
    </item>
    <item id="5499" article="a" name="straw mat">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="3" />
        <attribute key="transformTo" value="5501" />
    </item>
    <item id="5500" article="a" name="straw mat">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="1" />
        <attribute key="maleTransformTo" value="5498" />
        <attribute key="femaleTransformTo" value="7843" />
    </item>
    <item id="5501" article="a" name="straw mat">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="3" />
        <attribute key="maleTransformTo" value="5499" />
        <attribute key="femaleTransformTo" value="5499" />
    </item>
    <item id="5502" article="a" name="straw mat">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="2" />
        <attribute key="maleTransformTo" value="5496" />
        <attribute key="femaleTransformTo" value="7841" />
    </item>
    <item id="5503" article="a" name="straw mat">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="0" />
        <attribute key="maleTransformTo" value="5497" />
        <attribute key="femaleTransformTo" value="7842" />
    </item>
    <item id="5504" article="a" name="wooden pillar" />
    <item fromid="5505" toid="5512" article="a" name="pulley" />
    <item id="5513" article="a" name="distillery">
        <attribute key="decayTo" value="5469" />
        <attribute key="duration" value="15" />
    </item>
    <item id="5514" article="a" name="distillery">
        <attribute key="decayTo" value="5470" />
        <attribute key="duration" value="15" />
    </item>
    <item id="5515" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="5516" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="5517" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="5518" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item fromid="5519" toid="5520" article="a" name="stone wall" />
    <item id="5521" article="a" name="wooden railing" />
    <item id="5543" article="a" name="rope-ladder" />
    <item id="5544" article="a" name="cart" />
    <item id="5545" article="a" name="ladder">
        <attribute key="floorchange" value="down" />
    </item>
    <item fromid="5546" toid="5548" article="a" name="cart" />
    <item fromid="5549" toid="5552" name="sugar cane" />
    <item id="5553" article="a" name="rum flask">
        <attribute key="weight" value="280" />
    </item>
    <item id="5554" article="a" name="gold fish" />
    <item fromid="5555" toid="5556" name="hay" />
    <item fromid="5557" toid="5560" article="a" name="mossy wall" />
    <item fromid="5561" toid="5562" name="small branches" />
    <item fromid="5563" toid="5564" article="a" name="slimy wall" />
    <item id="5565" article="a" name="slain skeleton">
        <attribute key="weight" value="40000" />
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="5566" article="a" name="slain pirate ghost">
        <attribute key="weight" value="20000" />
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="5567" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="5567" article="a" name="slain pirate ghost">
        <attribute key="weight" value="20000" />
        <attribute key="decayTo" value="5568" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="5568" article="a" name="slain pirate ghost">
        <attribute key="weight" value="20000" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item fromid="5569" toid="5577" article="a" name="blue carpet" />
    <item fromid="5578" toid="5586" article="a" name="green carpet" />
    <item fromid="5587" toid="5595" article="a" name="brown carpet" />
    <item fromid="5596" toid="5597" name="swords" />
    <item fromid="5598" toid="5613" article="a" name="catapult" />
    <item fromid="5614" toid="5615" article="a" name="pirate tapestry">
        <attribute key="forceSerialize" value="1" />
    </item>
    <item id="5616" article="a" name="pirate tapestry">
        <attribute key="weight" value="1000" />
    </item>
    <item fromid="5617" toid="5618" article="a" name="pirate emblem" />
    <item fromid="5619" toid="5624" name="rubble" />
    <item fromid="5631" toid="5638" article="a" name="dirt wall" />
    <item fromid="5639" toid="5646" article="a" name="stone wall" />
    <item id="5647" article="a" name="dirt wall" />
    <item id="5648" article="a" name="stone wall" />
    <item fromid="5649" toid="5651" article="a" name="dirt wall" />
    <item fromid="5652" toid="5654" article="a" name="stone wall" />
    <item fromid="5655" toid="5658" article="a" name="map" />
    <item id="5659" article="a" name="blooming griffinclaw" />
    <item fromid="5660" toid="5665" article="a" name="water source" />
    <item fromid="5669" toid="5670" article="a" name="voodoo skull">
        <attribute key="weight" value="1000" />
    </item>
    <item fromid="5671" toid="5674" article="a" name="pirate statue" />
    <item fromid="5675" toid="5676" article="a" name="treasure chest" />
    <item id="5677" article="a" name="tortoise's nest" />
    <item id="5678" article="a" name="tortoise egg" plural="tortoise eggs">
        <attribute key="weight" value="30" />
    </item>
    <item fromid="5679" toid="5680" name="shells" />
    <item id="5681" name="some broken shells" />
    <item id="5682" article="a" name="piece of a shell" />
    <item id="5683" article="a" name="dirt wall" />
    <item id="5684" article="a" name="stone wall" />
    <item id="5685" article="a" name="dirt wall" />
    <item id="5686" article="a" name="stone wall" />
    <item id="5687" article="a" name="dry griffinclaw" />
    <item id="5691" article="a" name="trapdoor">
        <attribute key="floorchange" value="down" />
    </item>
    <item fromid="5692" toid="5703" article="a" name="ballista" />
    <item fromid="5704" toid="5705" article="a" name="shark" />
    <item id="5706" article="a" name="treasure map">
        <attribute key="weight" value="830" />
    </item>
    <item fromid="5707" toid="5709" name="rocks" />
    <item id="5710" article="a" name="light shovel">
        <attribute key="weight" value="1500" />
    </item>
    <item fromid="5711" toid="5726" name="ground" />
    <item id="5731" article="a" name="hole">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="5732" name="closed bars">
        <attribute key="type" value="door" />
        <attribute key="description" value="They are locked." />
    </item>
    <item id="5733" name="closed bars">
        <attribute key="type" value="door" />
    </item>
    <item id="5734" name="open bars">
        <attribute key="type" value="door" />
    </item>
    <item id="5735" name="closed bars">
        <attribute key="type" value="door" />
        <attribute key="description" value="They are locked." />
    </item>
    <item id="5736" name="closed bars">
        <attribute key="type" value="door" />
    </item>
    <item id="5737" name="open bars">
        <attribute key="type" value="door" />
    </item>
    <item id="5738" article="a" name="shark" />
    <item fromid="5739" toid="5740" article="a" name="fountain" />
    <item id="5741" article="a" name="skull helmet">
        <attribute key="weight" value="4200" />
        <attribute key="armor" value="9" />
        <attribute key="slotType" value="head" />
    </item>
    <item fromid="5743" toid="5744" name="wooden flooring" />
    <item id="5745" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="The door seems to be sealed against unwanted intrueders." />
    </item>
    <item id="5746" article="an" name="open door">
        <attribute key="type" value="door" />
        <attribute key="description" value="The door seems to be sealed against unwanted intrueders." />
    </item>
    <item id="5747" name="rocks" />
    <item id="5748" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="The door seems to be sealed against unwanted intrueders." />
    </item>
    <item id="5749" article="an" name="open door">
        <attribute key="type" value="door" />
        <attribute key="description" value="The door seems to be sealed against unwanted intrueders." />
    </item>
    <item fromid="5750" toid="5754" name="rocks" />
    <item fromid="5755" toid="5761" article="a" name="turtle" />
    <item id="5763" article="a" name="ladder">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="5764" article="a" name="ventilation grille" />
    <item fromid="5768" toid="5770" article="a" name="drawbridge" />
    <item fromid="5771" toid="5774" name="metal fittings" />
    <item fromid="5777" toid="5778" article="a" name="marksman target" />
    <item fromid="5779" toid="5784" article="an" name="arrow" />
    <item id="5785" article="a" name="medal of honour">
        <attribute key="weight" value="100" />
    </item>
    <item id="5786" article="a" name="wooden whistle">
        <attribute key="weight" value="100" />
    </item>
    <item fromid="5787" toid="5788" article="a" name="target" />
    <item fromid="5789" toid="5790" article="a" name="stuck axe" />
    <item id="5791" article="a" name="stuffed dragon">
        <attribute key="weight" value="850" />
    </item>
    <item fromid="5792" toid="5797" article="a" name="dice">
        <attribute key="weight" value="200" />
    </item>
    <item id="5798" article="an" name="abacus">
        <attribute key="weight" value="2000" />
    </item>
    <item id="5799" article="a" name="golden figurine">
        <attribute key="weight" value="1500" />
    </item>
    <item id="5800" article="a" name="grappling hook" />
    <item id="5801" article="a" name="key ring">
        <attribute key="weight" value="50" />
        <attribute key="containerSize" value="20" />
    </item>
    <item id="5802" article="a" name="bottle with a message">
        <attribute key="weight" value="2500" />
    </item>
    <item id="5803" article="an" name="arbalest">
        <attribute key="description" value="It is a bit heavy due to the iron mounting, but very precise." />
        <attribute key="weight" value="9500" />
        <attribute key="weaponType" value="distance" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="ammoType" value="bolt" />
        <attribute key="range" value="6" />
    </item>
    <item id="5804" article="a" name="nose ring">
        <attribute key="weight" value="50" />
    </item>
    <item id="5805" article="a" name="golden goblet">
        <attribute key="weight" value="1500" />
    </item>
    <item id="5806" article="a" name="silver goblet">
        <attribute key="weight" value="1500" />
    </item>
    <item id="5807" article="a" name="bronze goblet">
        <attribute key="weight" value="1500" />
    </item>
    <item id="5808" name="orshabaal's brain">
        <attribute key="weight" value="3500" />
    </item>
    <item id="5809" article="a" name="soul stone">
        <attribute key="weight" value="30" />
    </item>
    <item id="5810" article="a" name="pirate voodoo doll">
        <attribute key="description" value="It looks like a small pirate." />
        <attribute key="weight" value="650" />
    </item>
    <item id="5811" article="a" name="mermaid" />
    <item fromid="5812" toid="5813" article="a" name="skull candle">
        <attribute key="weight" value="2200" />
    </item>
    <item fromid="5814" toid="5827" name="melting ground" />
    <item fromid="5828" toid="5839" name="gravel" />
    <item fromid="5840" toid="5851" name="melting ground" />
    <item fromid="5852" toid="5853" article="a" name="weapon rack" />
    <item fromid="5854" toid="5855" article="a" name="lance" />
    <item fromid="5856" toid="5857" article="a" name="weapon rack" />
    <item fromid="5858" toid="5859" article="a" name="scimitar" />
    <item fromid="5860" toid="5863" article="an" name="armour rack" />
    <item id="5865" article="a" name="juice squeezer">
        <attribute key="weight" value="1500" />
    </item>
    <item fromid="5866" toid="5868" name="rocks" />
    <item fromid="5869" toid="5874" article="a" name="swamp source" />
    <item id="5875" name="sniper gloves">
        <attribute key="description" value="They are the pride of the paladin guild." />
        <attribute key="weight" value="400" />
    </item>
    <item id="5876" article="a" name="lizard leather" plural="lizard leathers">
        <attribute key="weight" value="50" />
    </item>
    <item id="5877" article="a" name="green dragon leather" plural="green dragon leathers">
        <attribute key="weight" value="60" />
    </item>
    <item id="5878" article="a" name="minotaur leather" plural="minotaur leathers">
        <attribute key="weight" value="40" />
    </item>
    <item id="5879" article="a" name="giant spider silk" plural="giant spider silks">
        <attribute key="weight" value="10" />
    </item>
    <item id="5880" article="an" name="iron ore" plural="iron ores">
        <attribute key="weight" value="200" />
    </item>
    <item id="5881" article="a" name="lizard scale" plural="lizard scales">
        <attribute key="weight" value="80" />
    </item>
    <item id="5882" article="a" name="red dragon scale" plural="red dragon scales">
        <attribute key="weight" value="90" />
    </item>
    <item id="5883" article="an" name="ape fur" plural="ape furs">
        <attribute key="weight" value="120" />
    </item>
    <item id="5884" article="a" name="fighting spirit">
        <attribute key="description" value="It contains pure fighting spirit." />
        <attribute key="weight" value="600" />
    </item>
    <item id="5885" article="a" name="warrior's sweat">
        <attribute key="description" value="It contains the sweat spilled in many battles and is said to be used for certain perfumes too." />
        <attribute key="weight" value="300" />
    </item>
    <item id="5886" article="a" name="spool of yarn" plural="spools of yarn">
        <attribute key="description" value="It is made from fine giant spider silk." />
        <attribute key="weight" value="100" />
    </item>
    <item id="5887" article="a" name="piece of royal steel" plural="pieces of royal steel">
        <attribute key="description" value="Even the king would be proud to wear an armour made of this refined steel." />
        <attribute key="weight" value="450" />
    </item>
    <item id="5888" article="a" name="piece of hell steel" plural="pieces of hell steel">
        <attribute key="description" value="This rare metal must have been refined in the depths of Tibia." />
        <attribute key="weight" value="600" />
    </item>
    <item id="5889" article="a" name="piece of draconian steel" plural="pieces of draconian steel">
        <attribute key="description" value="An armour made of this steel is said to protect against firy dragon breath." />
        <attribute key="weight" value="300" />
    </item>
    <item id="5890" article="a" name="chicken feather" plural="chicken feathers">
        <attribute key="weight" value="10" />
        <attribute key="description" value="Some thousands of these would probably make an extremely comfortable pillow." />
    </item>
    <item id="5891" article="an" name="enchanted chicken wing" plural="enchanted chicken wings">
        <attribute key="description" value="It is said to make your feet fly." />
        <attribute key="weight" value="1000" />
    </item>
    <item id="5892" article="a" name="huge chunk of crude iron">
        <attribute key="weight" value="5000" />
    </item>
    <item id="5893" article="a" name="perfect behemoth fang" plural="perfect behemoth fangs">
        <attribute key="description" value="Collector's all around the world crave for this item." />
        <attribute key="weight" value="500" />
    </item>
    <item id="5894" article="a" name="bat wing" plural="bat wings">
        <attribute key="weight" value="100" />
    </item>
    <item id="5895" article="a" name="fish fin" plural="fish fins">
        <attribute key="description" value="It once belonged to a mighty Quara." />
        <attribute key="weight" value="120" />
    </item>
    <item id="5896" article="a" name="bear paw" plural="bear paws">
        <attribute key="weight" value="120" />
    </item>
    <item id="5897" article="a" name="wolf paw" plural="wolf paws">
        <attribute key="weight" value="80" />
    </item>
    <item id="5898" article="a" name="beholder eye" plural="beholder eyes">
        <attribute key="description" value="You could swear it just winked at you." />
        <attribute key="weight" value="500" />
    </item>
    <item id="5899" article="a" name="turtle shell" plural="turtle shells">
        <attribute key="weight" value="500" />
    </item>
    <item id="5900" article="a" name="dwarven beard" plural="dwarven beards">
        <attribute key="description" value="It was once worn proudly by a dwarfish warrior - or maiden." />
        <attribute key="weight" value="50" />
    </item>
    <item id="5901" name="wood">
        <attribute key="weight" value="500" />
        <attribute key="showcount" value="0" />
    </item>
    <item id="5902" article="a" name="honeycomb" plural="honeycombs">
        <attribute key="weight" value="80" />
        <attribute key="description" value="Some people swear that honey makes excellent glue." />
    </item>
    <item id="5903" name="ferumbras' hat">
        <attribute key="description" value="It is the proof that Ferumbras has fallen. For now. The Edron Academy should be interested in this." />
        <attribute key="weight" value="850" />
        <attribute key="armor" value="1" />
        <attribute key="slotType" value="head" />
    </item>
    <item id="5904" article="a" name="magic sulphur" plural="magic sulphurs">
        <attribute key="weight" value="100" />
    </item>
    <item id="5905" article="a" name="vampire dust" plural="vampire dusts">
        <attribute key="description" value="Sun can be a merciless killer, but so can you." />
        <attribute key="weight" value="500" />
    </item>
    <item id="5906" article="a" name="demon dust" plural="demon dusts">
        <attribute key="description" value="It reeks of hatred and malice." />
        <attribute key="weight" value="600" />
    </item>
    <item id="5907" article="a" name="slingshot">
        <attribute key="weight" value="1200" />
    </item>
    <item id="5908" article="an" name="obsidian knife">
        <attribute key="description" value="Sharp and light, this is a useful tool for tanners, doctors and assassins." />
        <attribute key="weight" value="100" />
    </item>
    <item id="5909" article="a" name="white piece of cloth" plural="white pieces of cloth">
        <attribute key="weight" value="500" />
    </item>
    <item id="5910" article="a" name="green piece of cloth" plural="green pieces of cloth">
        <attribute key="weight" value="500" />
    </item>
    <item id="5911" article="a" name="red piece of cloth" plural="red pieces of cloth">
        <attribute key="weight" value="500" />
    </item>
    <item id="5912" article="a" name="blue piece of cloth" plural="blue pieces of cloth">
        <attribute key="weight" value="500" />
    </item>
    <item id="5913" article="a" name="brown piece of cloth" plural="brown pieces of cloth">
        <attribute key="weight" value="500" />
    </item>
    <item id="5914" article="a" name="yellow piece of cloth" plural="yellow pieces of cloth">
        <attribute key="weight" value="500" />
    </item>
    <item fromid="5915" toid="5916" article="a" name="large throne" />
    <item id="5917" article="a" name="bandana">
        <attribute key="weight" value="850" />
        <attribute key="armor" value="1" />
        <attribute key="slotType" value="head" />
    </item>
    <item id="5918" name="pirate knee breeches">
        <attribute key="weight" value="1200" />
        <attribute key="slotType" value="legs" />
    </item>
    <item id="5919" article="a" name="dragon claw">
        <attribute key="weight" value="1250" />
    </item>
    <item id="5920" article="a" name="green dragon scale" plural="green dragon scales">
        <attribute key="weight" value="80" />
    </item>
    <item id="5921" article="a" name="heaven blossom" plural="heaven blossoms">
        <attribute key="weight" value="100" />
    </item>
    <item id="5922" article="a" name="holy orchid" plural="holy orchids">
        <attribute key="weight" value="250" />
    </item>
    <item id="5924" article="a" name="damaged steel helmet">
        <attribute key="description" value="The words 'Ramsay the Reckless' are engraved inside. It appears to be cracked and broken." />
        <attribute key="weight" value="4600" />
    </item>
    <item id="5925" article="a" name="hardened bone" plural="hardened bones">
        <attribute key="weight" value="200" />
    </item>
    <item id="5926" article="a" name="pirate backpack">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="20" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="5927" article="a" name="pirate bag">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="8" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="5928" article="an" name="empty goldfish bowl">
        <attribute key="weight" value="3200" />
    </item>
    <item id="5929" article="a" name="goldfish bowl">
        <attribute key="weight" value="3200" />
    </item>
    <item id="5930" article="a" name="behemoth claw" plural="behemoth claws">
        <attribute key="weight" value="1250" />
    </item>
    <item id="5931" name="ferumbras remains">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="5932" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="venom" />
    </item>
    <item id="5932" name="ferumbras remains">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="5933" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="venom" />
    </item>
    <item id="5933" name="ferumbras remains">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="venom" />
    </item>
    <item id="5937" article="a" name="botanist container">
        <attribute key="weight" value="2000" />
    </item>
    <item fromid="5938" toid="5939" article="a" name="waterhose">
        <attribute key="weight" value="800" />
    </item>
    <item id="5940" name="ceiron's wolf tooth chain">
        <attribute key="weight" value="330" />
        <attribute key="slotType" value="necklace" />
    </item>
    <item id="5941" article="a" name="wooden stake">
        <attribute key="description" value="It is a simple wooden stake." />
        <attribute key="weight" value="500" />
    </item>
    <item id="5942" article="a" name="blessed wooden stake">
        <attribute key="description" value="Many mighty priests of Tibia have blessed this stake." />
        <attribute key="weight" value="500" />
    </item>
    <item id="5943" article="the" name="Morgaroth's heart">
        <attribute key="weight" value="3500" />
    </item>
    <item id="5944" article="a" name="soul orb" plural="soul orbs">
        <attribute key="description" value="This strange object seems to be made of half spirit, half metal. It is unknown by most smiths." />
        <attribute key="weight" value="20" />
    </item>
    <item id="5945" article="a" name="mermaid comb">
        <attribute key="description" value="It once belonged to a mermaid." />
        <attribute key="weight" value="450" />
    </item>
    <item id="5946" article="a" name="comb">
        <attribute key="weight" value="450" />
    </item>
    <item id="5947" name="elane's crossbow">
        <attribute key="description" value="'For Elane, with Love' is engraved on it." />
        <attribute key="weight" value="4000" />
    </item>
    <item id="5948" article="a" name="red dragon leather" plural="red dragon leathers">
        <attribute key="weight" value="60" />
    </item>
    <item id="5949" article="a" name="beach backpack">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="20" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="5950" article="a" name="beach bag">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="8" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="5951" article="a" name="fish tail">
        <attribute key="weight" value="0" />
    </item>
    <item id="5952" article="a" name="poem scroll">
        <attribute key="description" value="It contains a love poem, written by an unknown elven poet." />
        <attribute key="weight" value="120" />
    </item>
    <item id="5953" article="a" name="marijuana">
        <attribute key="weight" value="850" />
    </item>
    <item id="5954" article="a" name="demon horn" plural="demon horns">
        <attribute key="weight" value="1000" />
    </item>
    <item id="5956" article="a" name="parchment">
        <attribute key="weight" value="200" />
    </item>
    <item id="5957" article="a" name="lottery ticket">
        <attribute key="weight" value="120" />
    </item>
    <item id="5958" article="a" name="winning lottery ticket">
        <attribute key="description" value="You were lucky! Go claim your prize at the potion store in Edron." />
        <attribute key="weight" value="120" />
    </item>
    <item id="5965" article="a" name="dead human">
        <attribute key="containerSize" value="10" />
    </item>
    <item id="5974" article="a" name="dead spider">
        <attribute key="containerSize" value="6" />
        <attribute key="duration" value="10" />
    </item>
    <item id="5983" article="a" name="dead minotaur">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="2876" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="5987" article="a" name="dead bear">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="2893" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="5988" article="a" name="dead scorpion">
        <attribute key="containerSize" value="6" />
        <attribute key="decayTo" value="2897" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="venom" />
        <attribute key="fluidSource" value="slime" />
    </item>
    <item id="5989" article="a" name="dead wasp">
        <attribute key="containerSize" value="6" />
        <attribute key="decayTo" value="2899" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="venom" />
        <attribute key="fluidSource" value="slime" />
    </item>
    <item id="5990" article="a" name="dead bug">
        <attribute key="containerSize" value="6" />
        <attribute key="decayTo" value="2902" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="venom" />
        <attribute key="fluidSource" value="slime" />
    </item>
    <item id="5991" article="a" name="dead sheep">
        <attribute key="containerSize" value="6" />
        <attribute key="decayTo" value="2905" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="5992" article="a" name="dead beholder">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="2908" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="venom" />
        <attribute key="fluidSource" value="slime" />
    </item>
    <item id="5993" name="remains of a ghost">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="3108" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="5994" article="a" name="dead sheep">
        <attribute key="containerSize" value="6" />
        <attribute key="decayTo" value="2914" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="5995" article="a" name="slain demon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="2916" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="5996" article="a" name="dead orc">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="2920" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="5997" article="a" name="dead wolf">
        <attribute key="containerSize" value="6" />
        <attribute key="decayTo" value="2924" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="5998" article="a" name="dead troll">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="2928" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="5999" article="a" name="dead behemoth">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="2931" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6000" article="a" name="dead pig">
        <attribute key="containerSize" value="6" />
        <attribute key="decayTo" value="2935" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6001" article="a" name="dead orc">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="2938" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6002" article="a" name="dead goblin">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="2940" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6003" article="a" name="dead elf">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="2945" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6004" article="a" name="slain mummy">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="2949" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="6005" article="a" name="dead stone golem">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="2952" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="6006" article="a" name="slain vampire">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="2956" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="6007" article="a" name="dead dwarf">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="2960" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6008" article="a" name="dead orc">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="2967" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6009" article="a" name="dead wolf">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="2969" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6010" article="a" name="dead orc">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="2972" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6011" article="a" name="dead elf">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="2979" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6012" article="a" name="dead elf">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="2981" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6013" article="a" name="dead dwarf">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="2983" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6014" article="a" name="dead dwarf">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="2985" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6015" article="a" name="dead dwarf">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="2987" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6016" article="a" name="dead djinn">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="2989" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6017" article="a" name="dead rabbit">
        <attribute key="containerSize" value="5" />
        <attribute key="decayTo" value="3119" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6018" article="a" name="dead troll">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="2995" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6019" article="a" name="slain banshee">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="2998" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6020" article="a" name="dead djinn">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="3001" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="6021" article="a" name="dead scarab">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="3004" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="venom" />
        <attribute key="fluidSource" value="slime" />
    </item>
    <item id="6022" article="a" name="dead human">
        <attribute key="containerSize" value="10" />
    </item>
    <item id="6023" article="a" name="dead larva">
        <attribute key="containerSize" value="6" />
        <attribute key="decayTo" value="3010" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="venom" />
        <attribute key="fluidSource" value="slime" />
    </item>
    <item id="6024" article="a" name="dead scarab">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="3013" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="venom" />
        <attribute key="fluidSource" value="slime" />
    </item>
    <item id="6025" article="a" name="dead pharaoh">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="3016" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="6026" article="a" name="dead hyaena">
        <attribute key="containerSize" value="6" />
        <attribute key="decayTo" value="3019" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6027" article="a" name="dead gargoyle">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="3022" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="6028" article="a" name="slain lich">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="3025" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6029" article="a" name="slain crypt shambler">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="3028" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6030" article="a" name="slain bonebeast">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="3031" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="6031" article="a" name="dead pharaoh">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="3034" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="6032" article="a" name="dead djinn">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="3037" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6033" article="a" name="dead djinn">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="3040" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6034" article="a" name="dead badger">
        <attribute key="containerSize" value="6" />
        <attribute key="decayTo" value="3043" />
        <attribute key="corpseType" value="blood" />
        <attribute key="duration" value="10" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6035" article="a" name="dead skunk">
        <attribute key="containerSize" value="6" />
        <attribute key="decayTo" value="3046" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6036" article="a" name="dead gazer">
        <attribute key="containerSize" value="6" />
        <attribute key="decayTo" value="3049" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6037" article="a" name="slain beholder">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="3052" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="venom" />
        <attribute key="fluidSource" value="slime" />
    </item>
    <item id="6038" article="a" name="dead yeti">
        <attribute key="containerSize" value="8" />
        <attribute key="decayTo" value="3055" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6039" article="a" name="dead crab">
        <attribute key="containerSize" value="6" />
        <attribute key="decayTo" value="4253" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6040" article="a" name="dead lizard">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="4259" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6041" article="a" name="dead lizard">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="4262" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6043" article="a" name="dead ape">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="4268" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6044" article="a" name="dead ape">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="4271" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6045" article="a" name="dead ape">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="4274" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6046" article="a" name="dead crocodile">
        <attribute key="containerSize" value="6" />
        <attribute key="decayTo" value="4277" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6047" article="a" name="dead carniphila">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="4280" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="venom" />
        <attribute key="fluidSource" value="slime" />
    </item>
    <item id="6048" article="a" name="dead hydra">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="4283" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6049" article="a" name="dead panda">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="4286" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6050" article="a" name="dead centipede">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="4289" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6051" article="a" name="dead tiger">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="4292" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6052" article="a" name="dead elephant">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="4295" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6053" article="a" name="dead bat">
        <attribute key="containerSize" value="5" />
        <attribute key="decayTo" value="4298" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6054" article="a" name="dead flamingo">
        <attribute key="containerSize" value="2" />
        <attribute key="decayTo" value="4301" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6055" article="a" name="dead dworc">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="4304" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6056" article="a" name="dead parrot">
        <attribute key="containerSize" value="6" />
        <attribute key="decayTo" value="4314" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6057" article="a" name="dead terror bird">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="4317" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6058" article="a" name="dead dworc">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="4307" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6059" article="a" name="dead dworc">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="4310" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6060" article="a" name="dead tarantula">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="4320" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="venom" />
        <attribute key="fluidSource" value="slime" />
    </item>
    <item id="6061" article="a" name="dead serpent spawn">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="4323" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6062" article="a" name="lifeless nettle">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="4326" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="venom" />
        <attribute key="fluidSource" value="slime" />
    </item>
    <item id="6063" article="a" name="dead quara">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="5522" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6064" article="a" name="dead quara">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="5523" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6065" article="a" name="dead quara">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="5524" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6066" article="a" name="dead quara">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="5525" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6067" article="a" name="dead quara">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="5526" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6068" article="a" name="demon dust">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="5527" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6069" article="a" name="dead carrion worm">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="5540" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6070" article="a" name="slain skeleton">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="5565" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="6071" article="a" name="slain pirate ghost">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="5566" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="6072" article="a" name="dead tortoise">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="5625" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6073" article="a" name="dead thornback tortoise">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="5628" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6074" article="a" name="dead mammoth">
        <attribute key="containerSize" value="15" />
        <attribute key="decayTo" value="5666" />
        <attribute key="duration" value="10" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6075" article="a" name="dead blood crab">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="5688" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6076" article="a" name="dead seagull">
        <attribute key="containerSize" value="6" />
        <attribute key="decayTo" value="5727" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6077" article="a" name="dead toad">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="5765" />
        <attribute key="duration" value="10" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6078" name="ferumbras remains">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="5931" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="6079" article="a" name="dead frog">
        <attribute key="containerSize" value="5" />
        <attribute key="decayTo" value="5934" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6080" article="a" name="dead human">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="3058" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6081" article="a" name="dead human">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="3065" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6082" article="a" name="dead human" />
    <item fromid="6083" toid="6084" article="a" name="dead human">
        <attribute key="containerSize" value="10" />
    </item>
    <item id="6085" article="a" name="large trunk" />
    <item id="6086" article="a" name="label">
        <attribute key="weight" value="10" />
    </item>
    <item id="6087" article="a" name="music sheet">
        <attribute key="description" value="It contains the first verse of a hymn." />
        <attribute key="weight" value="50" />
    </item>
    <item id="6088" article="a" name="music sheet">
        <attribute key="description" value="It contains the second verse of a hymn." />
        <attribute key="weight" value="50" />
    </item>
    <item id="6089" article="a" name="music sheet">
        <attribute key="description" value="It contains the third verse of a hymn." />
        <attribute key="weight" value="50" />
    </item>
    <item id="6090" article="a" name="music sheet">
        <attribute key="description" value="It contains the fourth verse of a hymn." />
        <attribute key="weight" value="50" />
    </item>
    <item id="6091" article="a" name="very noble-looking watch">
        <attribute key="description" value="Unfortunately it seems to be broken" />
        <attribute key="weight" value="50" />
    </item>
    <item id="6092" article="a" name="very noble-looking watch">
        <attribute key="weight" value="50" />
        <attribute key="duration" value="259200" />
        <attribute key="decayTo" value="6091" />
    </item>
    <item id="6093" article="a" name="crystal ring">
        <attribute key="description" value="The initials E.S. are engraved on it." />
        <attribute key="weight" value="90" />
    </item>
    <item id="6094" article="a" name="tree" />
    <item id="6095" article="a" name="pirate shirt">
        <attribute key="weight" value="2000" />
        <attribute key="armor" value="3" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="6096" article="a" name="pirate hat">
        <attribute key="weight" value="1250" />
        <attribute key="armor" value="3" />
        <attribute key="slotType" value="head" />
    </item>
    <item id="6097" article="a" name="hook" plural="hooks">
        <attribute key="weight" value="500" />
    </item>
    <item id="6098" article="an" name="eye patch" plural="eye patches">
        <attribute key="weight" value="200" />
    </item>
    <item id="6099" name="brutus bloodbeard's hat">
        <attribute key="weight" value="1250" />
    </item>
    <item id="6100" name="lethal lissy's shirt">
        <attribute key="weight" value="2000" />
    </item>
    <item id="6101" name="ron the ripper's sabre">
        <attribute key="weight" value="2500" />
        <attribute key="defense" value="10" />
        <attribute key="attack" value="12" />
        <attribute key="weaponType" value="sword" />
    </item>
    <item id="6102" name="deadeye devious' eye patch">
        <attribute key="weight" value="200" />
    </item>
    <item id="6103" article="a" name="unholy book">
        <attribute key="weight" value="1300" />
    </item>
    <item id="6104" article="a" name="jewel case">
        <attribute key="weight" value="170" />
        <attribute key="containerSize" value="1" />
    </item>
    <item id="6105" name="raymond striker's lucky pillow">
        <attribute key="weight" value="1700" />
    </item>
    <item id="6106" article="a" name="green flask">
        <attribute key="weight" value="300" />
    </item>
    <item id="6107" name="simon the beggar's favorite staff">
        <attribute key="description" value="It must be the one which Simon the Beggar talked about." />
        <attribute key="weight" value="3800" />
    </item>
    <item id="6108" article="a" name="book">
        <attribute key="weight" value="500" />
    </item>
    <item id="6109" article="a" name="weapon rack">
        <attribute key="rotateTo" value="6110" />
        <attribute key="containerSize" value="20" />
    </item>
    <item id="6110" article="a" name="weapon rack">
        <attribute key="rotateTo" value="6109" />
        <attribute key="containerSize" value="20" />
    </item>
    <item id="6111" article="an" name="armour rack">
        <attribute key="rotateTo" value="6112" />
        <attribute key="containerSize" value="20" />
    </item>
    <item id="6112" article="an" name="armour rack">
        <attribute key="rotateTo" value="6111" />
        <attribute key="containerSize" value="20" />
    </item>
    <item id="6113" article="a" name="stamped letter">
        <attribute key="weight" value="50" />
    </item>
    <item id="6114" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a big flowerpot." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="6115" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a large amphora." />
        <attribute key="weight" value="2500" />
    </item>
    <item fromid="6116" toid="6117" name="electric sparks" />
    <item id="6118" article="a" name="treasure map" />
    <item id="6119" article="a" name="poem scroll">
        <attribute key="weight" value="120" />
    </item>
    <item id="6120" article="a" name="spellbook of dragha">
        <attribute key="description" value="It apparently belonged to someone called Dragha, the apprentice of a voodoomaster." />
        <attribute key="weight" value="5800" />
        <attribute key="defense" value="14" />
        <attribute key="weaponType" value="shield" />
    </item>
    <item fromid="6121" toid="6122" article="a" name="sign" />
    <item id="6123" article="a" name="piano" />
    <item id="6124" article="a" name="torn book">
        <attribute key="weight" value="1100" />
    </item>
    <item id="6125" article="a" name="tortoise egg">
        <attribute key="weight" value="30" />
    </item>
    <item id="6126" article="a" name="peg leg" plural="peg legs">
        <attribute key="weight" value="500" />
    </item>
    <item fromid="6127" toid="6130" article="a" name="hole">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="6131" article="a" name="tortoise shield">
        <attribute key="weight" value="5200" />
        <attribute key="defense" value="26" />
        <attribute key="weaponType" value="shield" />
    </item>
    <item id="6132" article="a" name="pair of soft boots">
        <attribute key="weight" value="800" />
        <attribute key="slotType" value="feet" />
        <attribute key="transformEquipTo" value="2640" />
        <attribute key="stopduration" value="1" />
        <attribute key="showduration" value="1" />
    </item>
    <item fromid="6133" toid="6137" article="a" name="tree wall" />
    <item id="6138" article="a" name="roof" />
    <item fromid="6139" toid="6152" article="a" name="tree wall" />
    <item fromid="6153" toid="6159" article="a" name="roof" />
    <item fromid="6160" toid="6171" name="grass" />
    <item id="6172" article="a" name="grass roof" />
    <item fromid="6173" toid="6174" article="a" name="hole">
        <attribute key="floorchange" value="down" />
    </item>
    <item fromid="6175" toid="6177" article="a" name="tree archway" />
    <item fromid="6178" toid="6179" article="a" name="window" />
    <item fromid="6180" toid="6189" article="a" name="tree" />
    <item fromid="6190" toid="6191" article="a" name="branch" />
    <item id="6192" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="6193" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="6194" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="6195" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="6196" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="6197" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="6198" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="6199" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="6200" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="6201" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="6202" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="6203" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="6204" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="6205" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="6206" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="6207" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item id="6208" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="6209" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item fromid="6210" toid="6215" article="a" name="bamboo roof" />
    <item fromid="16396" toid="16399" name="grass" />
    <item fromid="6216" toid="6219" name="grass" />
    <item fromid="6220" toid="6225" name="branches" />
    <item fromid="6226" toid="6231" article="a" name="flower" />
    <item fromid="6232" toid="6233" article="a" name="branch" />
    <item fromid="6234" toid="6237" article="a" name="plant archway" />
    <item fromid="6238" toid="6248" article="a" name="plant wall" />
    <item id="6249" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="6250" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="6251" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="6252" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="6253" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="6254" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="6255" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="6256" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="6257" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="6258" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="6259" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="6260" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="6261" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="6262" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="6263" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="6264" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item id="6265" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="6266" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item id="6267" article="a" name="stone rubbish" />
    <item fromid="6268" toid="6270" article="a" name="plant wall" />
    <item fromid="6271" toid="6274" name="leaves" />
    <item fromid="6275" toid="6276" name="branches" />
    <item id="6277" article="a" name="lump of cake dough" plural="lumps of cake dough">
        <attribute key="weight" value="500" />
    </item>
    <item id="6278" article="a" name="cake">
        <attribute key="weight" value="500" />
    </item>
    <item id="6279" article="a" name="decorated cake">
        <attribute key="weight" value="600" />
    </item>
    <item id="6280" article="a" name="party cake">
        <attribute key="weight" value="700" />
    </item>
    <item fromid="6281" toid="6284" article="a" name="brick wall" />
    <item fromid="6285" toid="6286" name="cracks" />
    <item fromid="6289" toid="6290" article="a" name="lava wall" />
    <item fromid="6291" toid="6299" name="cracks" />
    <item id="6300" article="a" name="death ring">
        <attribute key="weight" value="80" />
        <attribute key="slotType" value="ring" />
        <attribute key="transformEquipTo" value="6301" />
        <attribute key="stopduration" value="1" />
        <attribute key="showduration" value="0" />
    </item>
    <item id="6301" article="a" name="death ring">
        <attribute key="weight" value="80" />
        <attribute key="slotType" value="ring" />
        <attribute key="decayTo" value="0" />
        <attribute key="transformDeEquipTo" value="6300" />
        <attribute key="duration" value="480" />
        <attribute key="armor" value="1" />
        <attribute key="skillShield" value="-10" />
        <attribute key="showduration" value="1" />
    </item>
    <item id="6302" article="a" name="dead wyvern">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6303" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6303" article="a" name="dead wyvern">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6304" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="6304" article="a" name="dead wyvern">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6305" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="6305" article="a" name="dead wyvern">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="6306" article="a" name="slain undead dragon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6307" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="6307" article="a" name="slain undead dragon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6308" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="6308" article="a" name="slain undead dragon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6309" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="6309" article="a" name="slain undead dragon">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="6310" article="a" name="slain lost soul">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6319" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="6311" article="a" name="slain lost soul">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6310" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="6312" article="a" name="slain hand of cursed fate">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6313" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6313" article="a" name="slain hand of cursed fate">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6314" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="6314" article="a" name="slain hand of cursed fate">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6315" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="6315" article="a" name="slain hand of cursed fate">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="6316" article="a" name="slain betrayed wraith">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6317" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="6317" article="a" name="slain betrayed wraith">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6318" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6318" article="a" name="slain betrayed wraith">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="6319" article="a" name="slain lost soul">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="6320" article="a" name="slain destroyer">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6321" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="6321" article="a" name="slain destroyer">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6322" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6322" article="a" name="slain destroyer">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6323" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="6323" article="a" name="slain destroyer">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="6324" article="a" name="slain hellfire fighter">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6325" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6325" article="a" name="slain hellfire fighter">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6326" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6326" article="a" name="slain hellfire fighter">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6327" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="6327" article="a" name="slain hellfire fighter">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="6328" article="a" name="slain dark torturer">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6329" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="6329" article="a" name="slain dark torturer">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6330" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="6330" article="a" name="slain dark torturer">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="6331" article="a" name="slain dark torturer">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6328" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="6332" article="a" name="dead hellhound">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6333" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6333" article="a" name="dead hellhound">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6334" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="6334" article="a" name="dead hellhound">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6335" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="6335" article="a" name="dead hellhound">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="6336" article="a" name="dead juggernaut">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6337" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6337" article="a" name="dead juggernaut">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6338" />
        <attribute key="duration" value="900" />
    </item>
    <item id="6338" article="a" name="dead juggernaut">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6339" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="6339" article="a" name="dead juggernaut">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="6340" article="a" name="slain nightmare">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6341" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6341" article="a" name="slain nightmare">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6342" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6342" article="a" name="slain nightmare">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6343" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="6343" article="a" name="slain nightmare">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="6344" article="a" name="slain phantasm">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6345" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="6345" article="a" name="slain phantasm">
        <attribute key="weight" value="10000" />
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6346" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="6346" article="a" name="slain phantasm">
        <attribute key="weight" value="8000" />
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6347" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="6347" article="a" name="slain phantasm">
        <attribute key="weight" value="1000" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="6348" article="a" name="slain spectre">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6349" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="6349" article="a" name="slain spectre">
        <attribute key="weight" value="10000" />
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6350" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="6350" article="a" name="slain spectre">
        <attribute key="weight" value="8000" />
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6351" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="6351" article="a" name="slain spectre">
        <attribute key="weight" value="1000" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="6353" name="swamp" />
    <item id="6354" article="a" name="slain blightwalker">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6355" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="6355" article="a" name="slain blightwalker">
        <attribute key="weight" value="10000" />
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="6356" article="an" name="oven">
        <attribute key="rotateTo" value="6358" />
    </item>
    <item id="6357" article="an" name="oven">
        <attribute key="rotateTo" value="6359" />
    </item>
    <item id="6358" article="an" name="oven">
        <attribute key="rotateTo" value="6360" />
    </item>
    <item id="6359" article="an" name="oven">
        <attribute key="rotateTo" value="6361" />
    </item>
    <item id="6360" article="an" name="oven">
        <attribute key="rotateTo" value="6362" />
    </item>
    <item id="6361" article="an" name="oven">
        <attribute key="rotateTo" value="6363" />
    </item>
    <item id="6362" article="an" name="oven">
        <attribute key="rotateTo" value="6356" />
    </item>
    <item id="6363" article="an" name="oven">
        <attribute key="rotateTo" value="6357" />
    </item>
    <item id="6364" article="a" name="slain diabolic imp">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6365" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6365" article="a" name="slain diabolic imp">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6366" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6366" article="a" name="slain diabolic imp">
        <attribute key="decayTo" value="6367" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="6367" article="a" name="slain diabolic imp">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="6368" article="a" name="bookcase">
        <attribute key="rotateTo" value="6369" />
        <attribute key="containerSize" value="10" />
    </item>
    <item id="6369" article="a" name="bookcase">
        <attribute key="rotateTo" value="6370" />
        <attribute key="containerSize" value="10" />
    </item>
    <item id="6370" article="a" name="bookcase">
        <attribute key="rotateTo" value="6371" />
        <attribute key="containerSize" value="10" />
    </item>
    <item id="6371" article="a" name="bookcase">
        <attribute key="rotateTo" value="6368" />
        <attribute key="containerSize" value="10" />
    </item>
    <item id="6372" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a tree stump." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="6373" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a mirror." />
        <attribute key="weight" value="2500" />
    </item>
    <item fromid="6374" toid="6386" name="debris" />
    <item id="6387" article="a" name="birthday card">
        <attribute key="weight" value="0" />
        <attribute key="writeable" value="1" />
        <attribute key="maxTextLen" value="512" />
    </item>
    <item id="6388" article="a" name="christmas card">
        <attribute key="weight" value="100" />
        <attribute key="writeable" value="1" />
        <attribute key="maxTextLen" value="0" />
    </item>
    <item id="6389" name="ground" />
    <item id="6390" article="a" name="fountain" />
    <item id="6391" article="a" name="nightmare shield">
        <attribute key="weight" value="3200" />
        <attribute key="defense" value="37" />
        <attribute key="description" value="It was crafted by the ancient order of the nightmare knights." />
        <attribute key="weaponType" value="shield" />
    </item>
    <item id="6392" article="a" name="hawser">
        <attribute key="weight" value="2200" />
        <attribute key="description" value="It is pinned on the ground." />
    </item>
    <item id="6393" article="a" name="valentine's cake">
        <attribute key="weight" value="500" />
    </item>
    <item id="6394" article="a" name="cream cake">
        <attribute key="weight" value="500" />
    </item>
    <item fromid="6395" toid="6407" article="a" name="bone wall" />
    <item fromid="6408" toid="6412" article="a" name="bone archway" />
    <item id="6413" article="a" name="bone pillar" />
    <item fromid="6414" toid="6415" article="a" name="bone window" />
    <item fromid="6416" toid="6422" article="a" name="bone wall" />
    <item fromid="6423" toid="6430" article="a" name="tree" />
    <item fromid="6431" toid="6432" article="a" name="branch" />
    <item id="6433" article="a" name="necromancer shield">
        <attribute key="description" value="It is enchanted with unholy, necromantic powers." />
        <attribute key="weight" value="3200" />
        <attribute key="defense" value="37" />
        <attribute key="weaponType" value="shield" />
    </item>
    <item id="6434" article="a" name="blue tapestry" />
    <item id="6435" article="a" name="demon trophy" />
    <item fromid="6436" toid="6437" article="a" name="framework window">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item fromid="6438" toid="6439" article="a" name="framework window">
        <attribute key="type" value="door" />
    </item>
    <item fromid="6440" toid="6441" article="a" name="brick window">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item fromid="6442" toid="6443" article="a" name="brick window">
        <attribute key="type" value="door" />
    </item>
    <item fromid="6444" toid="6445" article="a" name="stone window">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item fromid="6446" toid="6447" article="a" name="stone window">
        <attribute key="type" value="door" />
    </item>
    <item fromid="6448" toid="6449" article="a" name="marble window">
        <attribute key="type" value="door" />
    </item>
    <item fromid="6450" toid="6451" article="a" name="tree window">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item fromid="6452" toid="6453" article="a" name="tree window">
        <attribute key="type" value="door" />
    </item>
    <item fromid="6454" toid="6455" article="a" name="sandstone window">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item fromid="6456" toid="6457" article="a" name="sandstone window">
        <attribute key="type" value="door" />
    </item>
    <item fromid="6458" toid="6459" article="a" name="bamboo window">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item fromid="6460" toid="6461" article="a" name="bamboo window">
        <attribute key="type" value="door" />
    </item>
    <item fromid="6462" toid="6463" article="a" name="sandstone window">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item fromid="6464" toid="6465" article="a" name="sandstone window">
        <attribute key="type" value="door" />
    </item>
    <item fromid="6466" toid="6467" article="a" name="stone window">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item fromid="6468" toid="6469" article="a" name="stone window">
        <attribute key="type" value="door" />
    </item>
    <item fromid="6470" toid="6471" article="a" name="wooden window">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item fromid="6472" toid="6473" article="a" name="wooden window">
        <attribute key="type" value="door" />
    </item>
    <item fromid="6474" toid="6475" name="planks" />
    <item fromid="6476" toid="6488" name="debris" />
    <item fromid="6489" toid="6490" article="a" name="christmas branch">
        <attribute key="weight" value="1800" />
    </item>
    <item id="6491" article="a" name="firefly" />
    <item id="6492" article="a" name="bat decoration">
        <attribute key="weight" value="1000" />
    </item>
    <item id="6493" article="a" name="bat decoration" />
    <item id="6495" article="a" name="firefly" />
    <item id="6496" article="a" name="bat decoration" />
    <item id="6497" article="a" name="present bag">
        <attribute key="description" value="It contains presents which were stolen from Santa. Bring them back to Ruprecht on Vega." />
        <attribute key="weight" value="8000" />
    </item>
    <item id="6499" article="a" name="diploma">
        <attribute key="weight" value="1000" />
    </item>
    <item id="6500" name="demonic essence">
        <attribute key="description" value="Someone might be interested in trading this." />
        <attribute key="weight" value="100" />
        <attribute key="showcount" value="0" />
    </item>
    <item id="6501" article="a" name="gingerbread man">
        <attribute key="weight" value="500" />
    </item>
    <item id="6502" article="a" name="christmas wreath">
        <attribute key="weight" value="1000" />
    </item>
    <item fromid="6503" toid="6504" article="a" name="red christmas garland">
        <attribute key="weight" value="500" />
    </item>
    <item id="6505" article="a" name="blue christmas garland">
        <attribute key="weight" value="500" />
    </item>
    <item id="6506" article="a" name="red christmas bundle">
        <attribute key="weight" value="2500" />
        <attribute key="containerSize" value="4" />
    </item>
    <item id="6507" article="a" name="red christmas bundle">
        <attribute key="weight" value="2500" />
    </item>
    <item id="6508" article="a" name="blue christmas bundle">
        <attribute key="weight" value="2500" />
    </item>
    <item id="6509" article="a" name="green christmas bundle">
        <attribute key="weight" value="2500" />
    </item>
    <item id="6510" article="a" name="green christmas bundle">
        <attribute key="weight" value="2500" />
        <attribute key="containerSize" value="4" />
    </item>
    <item id="6511" article="a" name="blue christmas bundle">
        <attribute key="weight" value="2500" />
        <attribute key="containerSize" value="4" />
    </item>
    <item id="6512" article="a" name="santa doll">
        <attribute key="weight" value="750" />
    </item>
    <item id="6513" article="a" name="christmas wreath" />
    <item fromid="6514" toid="6515" article="a" name="christmas garland" />
    <item id="6516" name="plaguesmith remains">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6520" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6517" article="a" name="christmas wreath" />
    <item fromid="6518" toid="6519" article="a" name="christmas garland" />
    <item id="6520" name="plaguesmith remains">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6521" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6521" name="plaguesmith remains">
        <attribute key="decayTo" value="6522" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="6522" name="plaguesmith remains">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="6523" article="a" name="gingerbread recipe">
        <attribute key="description" value="Use it to learn how to make Gingerbreadman in the christmas bakery." />
        <attribute key="weight" value="200" />
    </item>
    <item fromid="6524" toid="6525" article="a" name="skeleton decoration">
        <attribute key="forceSerialize" value="1" />
    </item>
    <item id="6526" article="a" name="skeleton decoration">
        <attribute key="weight" value="1000" />
    </item>
    <item id="6527" article="a" name="Meowth Coin" plural="Meowth Coins">
        <attribute key="description" value="A coin needed to register to the Golden Arena!"/>
    </item>
    <item id="6528" article="the" name="avenger">
        <attribute key="weight" value="6400" />
        <attribute key="defense" value="38" />
        <attribute key="attack" value="50" />
        <attribute key="weaponType" value="sword" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="description" value="This holy blade was forged of shattered dreams." />
    </item>
    <item id="6529" article="an" name="infernal bolt" plural="infernal bolts">
        <attribute key="weight" value="90" />
        <attribute key="slotType" value="ammo" />
        <attribute key="attack" value="43" />
        <attribute key="maxHitChance" value="90" />
        <attribute key="weaponType" value="ammunition" />
        <attribute key="ammoType" value="bolt" />
        <attribute key="shootType" value="infernalbolt" />
        <attribute key="ammoAction" value="removecount" />
    </item>
    <item id="6530" article="a" name="pair of old worn soft boots">
        <attribute key="description" value="Someone specialised in shoes might be able to repair them for you." />
        <attribute key="weight" value="800" />
    </item>
    <item id="6531" article="a" name="santa hat">
        <attribute key="weight" value="750" />
        <attribute key="armor" value="1" />
        <attribute key="slotType" value="head" />
    </item>
    <item id="6532" name="defiler remains">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="6552" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="venom" />
        <attribute key="fluidSource" value="slime" />
    </item>
    <item id="6533" article="a" name="book">
        <attribute key="weight" value="750" />
    </item>
    <item id="6534" article="an" name="imperor's trident">
        <attribute key="weight" value="3000" />
    </item>
    <item id="6535" name="plasmother remains">
        <attribute key="weight" value="3000" />
    </item>
    <item id="6536" article="a" name="countess sorrow's frozen tear">
        <attribute key="weight" value="0" />
    </item>
    <item id="6537" name="mr punish's handcuffs">
        <attribute key="weight" value="2500" />
    </item>
    <item id="6538" article="a" name="valentines card">
        <attribute key="weight" value="650" />
        <attribute key="writeable" value="1" />
        <attribute key="maxTextLen" value="512" />
    </item>
    <item id="6539" article="a" name="handmaiden's protector">
        <attribute key="weight" value="3500" />
    </item>
    <item id="6540" article="a" name="massacre's shell piece">
        <attribute key="weight" value="0" />
    </item>
    <item fromid="6541" toid="6545" article="a" name="coloured egg" plural="coloured eggs">
        <attribute key="weight" value="30" />
    </item>
    <item id="6546" name="dracola's eye">
        <attribute key="weight" value="30" />
    </item>
    <item id="6547" article="a" name="magic sulphur" plural="magic sulphurs">
        <attribute key="weight" value="750" />
    </item>
    <item id="6548" article="a" name="violet sulphur" plural="violet sulphurs">
        <attribute key="weight" value="750" />
    </item>
    <item id="6549" article="a" name="green sulphur" plural="green sulphurs">
        <attribute key="weight" value="750" />
    </item>
    <item id="6550" article="a" name="demon dust" plural="demon dusts">
        <attribute key="weight" value="750" />
    </item>
    <item id="6551" article="a" name="vampire dust" plural="vampire dusts">
        <attribute key="weight" value="750" />
    </item>
    <item id="6552" name="defiler remains">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="360" />
        <attribute key="corpseType" value="venom" />
        <attribute key="fluidSource" value="slime" />
    </item>
    <item id="6553" article="a" name="ruthless axe">
        <attribute key="weight" value="5800" />
        <attribute key="defense" value="15" />
        <attribute key="attack" value="50" />
        <attribute key="weaponType" value="axe" />
        <attribute key="slotType" value="two-handed" />
    </item>
    <item fromid="6556" toid="6557" article="a" name="tic-tac-toe token">
        <attribute key="weight" value="500" />
    </item>
    <item id="6558" article="a" name="concentrated demonic blood">
        <attribute key="description" value="Shake it to create a potion." />
        <attribute key="weight" value="200" />
    </item>
    <item id="6560" article="a" name="dead human">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="3065" />
        <attribute key="duration" value="180" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="6561" article="a" name="ceremonial ankh">
        <attribute key="weight" value="500" />
    </item>
    <item fromid="6562" toid="6565" article="a" name="roof" />
    <item id="6566" article="a" name="stuffed dragon">
        <attribute key="weight" value="850" />
    </item>
    <item id="6567" article="a" name="santa doll">
        <attribute key="weight" value="750" />
    </item>
    <item id="6568" article="a" name="panda bear">
        <attribute key="weight" value="600" />
    </item>
    <item id="6569" article="a" name="rare candy" plural="rare candies">
        <attribute key="weight" value="0" />        <attribute key="description" value="This rare candy is said to have side effects on pokemon. A pokemon might not want to have it, if he is not glad!" />
    </item>
    <item fromid="6570" toid="6571" article="a" name="surprise bag">
        <attribute key="weight" value="1000" />
    </item>
    <item id="6572" article="a" name="party trumpet">
        <attribute key="weight" value="50" />
    </item>
    <item id="6573" article="a" name="party trumpet">
        <attribute key="duration" value="2" />
        <attribute key="decayTo" value="6572" />
        <attribute key="weight" value="50" />
    </item>
    <item id="6574" article="a" name="bar of chocolate">
        <attribute key="weight" value="10" />
    </item>
    <item id="6575" article="a" name="red balloon">
        <attribute key="weight" value="10" />
    </item>
    <item id="6576" article="a" name="fireworks rocket">
        <attribute key="weight" value="100" />
    </item>
    <item id="6577" article="a" name="green balloon">
        <attribute key="weight" value="10" />
    </item>
    <item id="6578" article="a" name="party hat">
        <attribute key="weight" value="0" />
        <attribute key="armor" value="1" />
        <attribute key="slotType" value="head" />
    </item>
    <item id="6579" article="a" name="tibia doll">
        <attribute key="weight" value="750" />
    </item>
    <item fromid="6580" toid="6593" name="snow" />
    <item id="6594" name="snow">
        <attribute key="description" value="Someone must have walked here recently." />
        <attribute key="decayTo" value="670" />
        <attribute key="duration" value="30" />
    </item>
    <item fromid="6595" toid="6597" name="snow">
        <attribute key="description" value="Someone must have walked here recently." />
    </item>
    <item id="6598" name="snow">
        <attribute key="description" value="Someone must have walked here recently." />
        <attribute key="decayTo" value="6594" />
        <attribute key="duration" value="10" />
    </item>
    <item fromid="6599" toid="6608" name="snow">
        <attribute key="description" value="Someone must have walked here recently." />
    </item>
    <item id="6609" name="snow drift" />
    <item fromid="6610" toid="6626" name="snow" />
    <item fromid="6627" toid="6682" name="shallow water">
        <attribute key="allowpickupable" value="1" />
        <attribute key="fluidSource" value="water" />
    </item>
    <item fromid="6683" toid="6686" name="ice" />
    <item fromid="6687" toid="6694" name="shallow water">
        <attribute key="allowpickupable" value="1" />
        <attribute key="fluidSource" value="water" />
    </item>
    <item fromid="6695" toid="6718" name="ice" />
    <item fromid="6719" toid="6726" article="an" name="icy mountain" />
    <item fromid="6727" toid="6738" article="an" name="ice wall" />
    <item fromid="6739" toid="6749" article="a" name="frozen wall" />
    <item fromid="6750" toid="6755" article="an" name="igloo" />
    <item fromid="6756" toid="6760" name="snow" />
    <item fromid="6761" toid="6762" article="a" name="frozen wall" />
    <item fromid="6763" toid="6767" article="an" name="ice archway" />
    <item fromid="6768" toid="6772" article="an" name="ice wall" />
    <item fromid="6773" toid="6774" article="a" name="fur wall" />
    <item id="6775" article="a" name="fur pillar" />
    <item fromid="6776" toid="6787" article="a" name="fur wall" />
    <item fromid="6788" toid="6789" article="a" name="fur wall window">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item fromid="6790" toid="6791" article="a" name="fur wall window">
        <attribute key="type" value="door" />
    </item>
    <item id="6792" article="a" name="fur archway" />
    <item fromid="6793" toid="6794" article="a" name="barbarian banner" />
    <item id="6795" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="6796" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="6797" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="6798" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="6799" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="6800" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="6801" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="6802" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="6803" article="a" name="fur archway" />
    <item fromid="6804" toid="6821" name="fur" />
    <item fromid="6822" toid="6838" name="snow" />
    <item fromid="6839" toid="6840" article="a" name="wooden wall" />
    <item id="6841" article="a" name="wooden pillar" />
    <item fromid="6842" toid="6849" article="a" name="wooden wall" />
    <item id="6850" article="an" name="ornamented wall" />
    <item fromid="6851" toid="6852" article="a" name="stone base" />
    <item id="6853" article="an" name="ornamented wall" />
    <item fromid="6854" toid="6856" article="a" name="stone base" />
    <item id="6857" article="an" name="ornamented wall" />
    <item fromid="6858" toid="6859" article="a" name="stone base" />
    <item id="6860" article="an" name="ornamented wall" />
    <item fromid="6861" toid="6867" article="a" name="stone base" />
    <item fromid="6869" toid="6881" name="ice" />
    <item fromid="6882" toid="6885" article="an" name="archway" />
    <item fromid="6886" toid="6888" article="a" name="strut" />
    <item fromid="6889" toid="6890" name="tusks" />
    <item id="6891" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="6892" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="6893" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="6894" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="6895" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="6896" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="6897" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item id="6898" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="6899" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="6900" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="6901" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="6902" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="6903" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="6904" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="6905" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="6906" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item id="6907" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="6908" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="6909" article="an" name="ice ramp">
        <attribute key="floorchange" value="east" />
    </item>
    <item id="6910" article="an" name="ice ramp" />
    <item id="6911" article="an" name="ice ramp">
        <attribute key="floorchange" value="west" />
    </item>
    <item id="6912" article="an" name="ice ramp" />
    <item id="6913" article="an" name="ice ramp">
        <attribute key="floorchange" value="south" />
    </item>
    <item id="6914" article="an" name="ice ramp" />
    <item id="6915" article="an" name="ice ramp">
        <attribute key="floorchange" value="north" />
    </item>
    <item id="6916" article="an" name="ice ramp" />
    <item fromid="6917" toid="6924" article="a" name="hole">
        <attribute key="floorchange" value="down" />
    </item>
    <item fromid="6925" toid="6937" name="ice" />
    <item fromid="6939" toid="6950" name="snow" />
    <item fromid="6951" toid="6952" name="ice" />
    <item fromid="6953" toid="6965" article="an" name="ice railing" />
    <item id="6966" name="icicles" />
    <item id="6967" article="an" name="ice floor" />
    <item fromid="6968" toid="6969" article="a" name="wooden railing" />
    <item fromid="6970" toid="6971" article="a" name="mammoth skull" />
    <item id="6972" article="a" name="bone totem" />
    <item id="6973" article="a" name="mammoth totem" />
    <item fromid="6974" toid="6977" article="a" name="mammoth skull" />
    <item fromid="6978" toid="6979" article="a" name="mammoth fur" />
    <item id="6980" article="a" name="sliver" />
    <item fromid="6981" toid="6983" article="a" name="rope" />
    <item fromid="6984" toid="6985" name="fish" />
    <item id="6986" article="a" name="pillar" />
    <item fromid="6987" toid="6988" article="a" name="wooden dragon" />
    <item fromid="6989" toid="6990" article="a" name="wooden bull" />
    <item fromid="6991" toid="6992" article="a" name="wooden yeti" />
    <item fromid="6993" toid="6998" article="a" name="wooden decoration" />
    <item fromid="6999" toid="7019" article="a" name="snowy stone" />
    <item fromid="7020" toid="7022" article="a" name="snowy dead tree" />
    <item id="7023" article="a" name="snowy pine tree" />
    <item id="7024" article="a" name="tree" />
    <item fromid="7025" toid="7026" article="a" name="nordic wall window">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item fromid="7027" toid="7028" article="a" name="nordic wall window">
        <attribute key="type" value="door" />
    </item>
    <item fromid="7029" toid="7030" article="an" name="ice wall window">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item fromid="7031" toid="7032" article="an" name="ice wall window">
        <attribute key="type" value="door" />
    </item>
    <item id="7033" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="7034" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="7035" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="7036" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="7037" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="7038" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="7039" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item id="7040" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="7041" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="7042" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="7043" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="7044" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="7045" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="7046" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="7047" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="7048" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item id="7049" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="7050" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item fromid="7051" toid="7052" article="an" name="ice archway" />
    <item id="7053" article="a" name="trap door">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="7054" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="7055" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="7056" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="7057" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="7058" article="a" name="skull pillar" />
    <item id="7059" article="a" name="glowing skull pillar" />
    <item fromid="7060" toid="7061" article="an" name="ice archway" />
    <item fromid="7062" toid="7090" name="frozen mud" />
    <item id="7091" article="a" name="dead frost dragon">
        <attribute key="containerSize" value="15" />
        <attribute key="decayTo" value="7092" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="7092" article="a" name="dead frost dragon">
        <attribute key="containerSize" value="15" />
        <attribute key="decayTo" value="7093" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="7093" article="a" name="dead frost dragon">
        <attribute key="containerSize" value="15" />
        <attribute key="decayTo" value="7094" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="7094" article="a" name="dead frost dragon">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item fromid="7095" toid="7101" article="a" name="wooden railing" />
    <item fromid="7102" toid="7105" article="a" name="dirt wall" />
    <item id="7106" article="a" name="water gazer" />
    <item id="7107" name="ice" />
    <item fromid="7108" toid="7109" article="a" name="water gazer" />
    <item fromid="7110" toid="7120" name="ice" />
    <item fromid="7121" toid="7130" article="a" name="rail" />
    <item fromid="7131" toid="7132" article="a" name="cart" />
    <item fromid="7133" toid="7136" article="an" name="emergency bumper" />
    <item fromid="7137" toid="7139" article="a" name="bloodspot" />
    <item id="7140" article="a" name="mead horn">
        <attribute key="weight" value="1200" />
        <attribute key="description" value="It is filled to the rim." />
    </item>
    <item id="7141" article="a" name="mead horn">
        <attribute key="weight" value="1200" />
    </item>
    <item id="7142" article="a" name="bucket" />
    <item fromid="7143" toid="7144" article="a" name="wooden archway" />
    <item fromid="7145" toid="7157" name="ice" />
    <item id="7158" article="a" name="rainbow trout">
        <attribute key="weight" value="1200" />
    </item>
    <item id="7159" article="a" name="green perch" plural="green perches">
        <attribute key="weight" value="800" />
    </item>
    <item fromid="7160" toid="7161" article="a" name="frozen chest" />
    <item id="7162" article="a" name="frozen drawer" />
    <item fromid="7163" toid="7166" article="a" name="frozen chair" />
    <item fromid="7167" toid="7168" article="a" name="frozen pendulum clock" />
    <item fromid="7169" toid="7170" article="a" name="frozen trough" />
    <item fromid="7171" toid="7173" article="a" name="snowman" />
    <item id="7174" article="a" name="lying bear" />
    <item id="7175" article="a" name="sleeping bear" />
    <item id="7176" article="a" name="standing mammoth" />
    <item id="7177" article="a" name="sleeping mammoth" />
    <item id="7178" article="a" name="seal" />
    <item fromid="7183" toid="7184" article="a" name="baby seal doll">
        <attribute key="weight" value="850" />
    </item>
    <item fromid="7185" toid="7186" name="some crack" />
    <item fromid="7187" toid="7188" article="a" name="raft" />
    <item id="7189" article="a" name="case">
        <attribute key="containerSize" value="8" />
    </item>
    <item fromid="7190" toid="7199" article="a" name="raft" />
    <item id="7200" article="a" name="fragile ice" />
    <item fromid="7201" toid="7212" article="a" name="raft" />
    <item fromid="7213" toid="7227" article="a" name="ship rudder" />
    <item fromid="7228" toid="7231" article="a" name="figurehead" />
    <item fromid="7232" toid="7233" name="spikes" />
    <item fromid="7234" toid="7235" article="a" name="shield" />
    <item id="7236" article="an" name="ice hole">
        <attribute key="description" value="You can see the movement of fish." />
    </item>
    <item id="7237" article="an" name="ice hole">
        <attribute key="decayTo" value="7200" />
        <attribute key="duration" value="900" />
    </item>
    <item fromid="7238" toid="7241" article="a" name="shield" />
    <item id="7242" article="a" name="life crystal">
        <attribute key="weight" value="250" />
    </item>
    <item fromid="7243" toid="7244" article="a" name="jug">
        <attribute key="weight" value="750" />
    </item>
    <item id="7245" article="a" name="cucumber">
        <attribute key="weight" value="250" />
    </item>
    <item id="7246" article="a" name="waterskin">
        <attribute key="weight" value="800" />
    </item>
    <item id="7247" name="mushroom spores">
        <attribute key="weight" value="100" />
    </item>
    <item id="7248" article="a" name="leaf">
        <attribute key="weight" value="0" />
    </item>
    <item id="7249" article="a" name="flower">
        <attribute key="weight" value="0" />
    </item>
    <item id="7250" article="a" name="hydra tongue" plural="hydra tongues">
        <attribute key="description" value="It is a common pest plant in warmer regions." />
        <attribute key="weight" value="100" />
    </item>
    <item id="7251" article="a" name="magic sulphur">
        <attribute key="weight" value="100" />
    </item>
    <item id="7252" article="a" name="poisoned seal" />
    <item id="7253" article="a" name="vial of slime">
        <attribute key="weight" value="180" />
    </item>
    <item fromid="7254" toid="7255" article="a" name="case">
        <attribute key="containerSize" value="8" />
    </item>
    <item id="7256" article="a" name="dead braindeath">
        <attribute key="containerSize" value="8" />
        <attribute key="decayTo" value="7260" />
        <attribute key="duration" value="10" />
        <attribute key="fluidSource" value="blood" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7257" article="a" name="dead braindeath">
        <attribute key="containerSize" value="8" />
        <attribute key="decayTo" value="7258" />
        <attribute key="duration" value="900" />
        <attribute key="fluidSource" value="blood" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7258" article="a" name="dead braindeath">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7259" article="a" name="case">
        <attribute key="containerSize" value="8" />
    </item>
    <item id="7260" article="a" name="dead braindeath">
        <attribute key="containerSize" value="8" />
        <attribute key="decayTo" value="7257" />
        <attribute key="duration" value="600" />
    </item>
    <item id="7261" article="a" name="plant" />
    <item fromid="7262" toid="7263" article="a" name="roof" />
    <item fromid="7264" toid="7267" article="a" name="sled" />
    <item fromid="7268" toid="7271" article="a" name="husky" />
    <item id="7272" article="a" name="raft" />
    <item fromid="7273" toid="7276" article="a" name="stone table" />
    <item fromid="7277" toid="7280" article="a" name="stone throne" />
    <item id="7281" article="a" name="life crystal">
        <attribute key="weight" value="250" />
    </item>
    <item id="7282" article="a" name="dead ice golem">
        <attribute key="containerSize" value="8" />
        <attribute key="decayTo" value="7283" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="7283" article="a" name="dead ice golem">
        <attribute key="containerSize" value="8" />
        <attribute key="decayTo" value="7284" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="7284" article="a" name="dead ice golem">
        <attribute key="containerSize" value="8" />
        <attribute key="decayTo" value="7285" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="7285" article="a" name="dead ice golem">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="7286" article="a" name="waterskin">
        <attribute key="weight" value="800" />
    </item>
    <item id="7289" article="a" name="frost charm">
        <attribute key="weight" value="1900" />
    </item>
    <item id="7290" article="a" name="shard">
        <attribute key="weight" value="1900" />
        <attribute key="description" value="It is a shattered part of the Frostheart Spire." />
    </item>
    <item fromid="7291" toid="7292" article="an" name="ice wall">
        <attribute key="description" value="It seems like a demon got frozen inside it." />
    </item>
    <item id="7293" article="an" name="ice wall">
        <attribute key="description" value="It seems like a mammoth got frozen inside it." />
    </item>
    <item id="7294" article="an" name="ice wall">
        <attribute key="description" value="It seems like a mamomth got frozen inside it." />
    </item>
    <item fromid="7295" toid="7296" article="an" name="ice wall">
        <attribute key="description" value="It seems like a dragon lord got frozen inside it." />
    </item>
    <item fromid="7297" toid="7298" article="an" name="ice wall">
        <attribute key="description" value="It seems like a behemoth got frozen inside it." />
    </item>
    <item fromid="7299" toid="7300" article="an" name="ice wall">
        <attribute key="description" value="It seems like a plaguesmith got frozen inside it." />
    </item>
    <item fromid="7301" toid="7302" article="an" name="ice wall">
        <attribute key="description" value="It seems like an ice golem got frozen inside it." />
    </item>
    <item fromid="7303" toid="7312" article="a" name="frozen human" />
    <item id="7314" article="a" name="red dragon scale">
        <attribute key="weight" value="90" />
    </item>
    <item id="7315" article="a" name="essence of darkness" plural="essences of darkness">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Ghost/Dark-type pokemon like very much some of these." />
    </item>
    <item id="7316" article="a" name="dead husky">
        <attribute key="containerSize" value="8" />
        <attribute key="decayTo" value="7317" />
        <attribute key="duration" value="10" />
        <attribute key="fluidSource" value="blood" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7317" article="a" name="dead husky">
        <attribute key="containerSize" value="8" />
        <attribute key="decayTo" value="7318" />
        <attribute key="duration" value="900" />
        <attribute key="fluidSource" value="blood" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7318" article="a" name="dead husky">
        <attribute key="containerSize" value="8" />
        <attribute key="decayTo" value="7319" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7319" article="a" name="dead husky">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7320" article="a" name="dead chakoya">
        <attribute key="containerSize" value="8" />
        <attribute key="decayTo" value="7321" />
        <attribute key="duration" value="10" />
        <attribute key="fluidSource" value="blood" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7321" article="a" name="dead chakoya">
        <attribute key="containerSize" value="8" />
        <attribute key="decayTo" value="7322" />
        <attribute key="duration" value="900" />
        <attribute key="fluidSource" value="blood" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7322" article="a" name="dead chakoya">
        <attribute key="containerSize" value="8" />
        <attribute key="decayTo" value="7323" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7323" article="a" name="dead chakoya">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7324" article="a" name="dead chakoya">
        <attribute key="containerSize" value="8" />
        <attribute key="decayTo" value="7325" />
        <attribute key="duration" value="10" />
        <attribute key="fluidSource" value="blood" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7325" article="a" name="dead chakoya">
        <attribute key="containerSize" value="8" />
        <attribute key="decayTo" value="7326" />
        <attribute key="duration" value="900" />
        <attribute key="fluidSource" value="blood" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7326" article="a" name="dead chakoya">
        <attribute key="containerSize" value="8" />
        <attribute key="decayTo" value="7323" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7327" article="a" name="dead chakoya">
        <attribute key="containerSize" value="8" />
        <attribute key="decayTo" value="7328" />
        <attribute key="duration" value="10" />
        <attribute key="fluidSource" value="blood" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7328" article="a" name="dead chakoya">
        <attribute key="containerSize" value="8" />
        <attribute key="decayTo" value="7329" />
        <attribute key="duration" value="900" />
        <attribute key="fluidSource" value="blood" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7329" article="a" name="dead chakoya">
        <attribute key="containerSize" value="8" />
        <attribute key="decayTo" value="7323" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7330" article="a" name="dead frost giant">
        <attribute key="containerSize" value="8" />
        <attribute key="decayTo" value="7331" />
        <attribute key="duration" value="10" />
        <attribute key="fluidSource" value="blood" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7331" article="a" name="dead frost giant">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="7332" />
        <attribute key="duration" value="900" />
        <attribute key="fluidSource" value="blood" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7332" article="a" name="dead frost giant">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="7333" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7333" article="a" name="dead frost giant">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7334" article="a" name="dead penguin">
        <attribute key="containerSize" value="5" />
        <attribute key="decayTo" value="7335" />
        <attribute key="duration" value="10" />
        <attribute key="fluidSource" value="blood" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7335" article="a" name="dead penguin">
        <attribute key="containerSize" value="5" />
        <attribute key="decayTo" value="7336" />
        <attribute key="duration" value="900" />
        <attribute key="fluidSource" value="blood" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7336" article="a" name="dead penguin">
        <attribute key="containerSize" value="5" />
        <attribute key="decayTo" value="7337" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7337" article="a" name="dead penguin">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7338" article="a" name="dead silver rabbit">
        <attribute key="containerSize" value="6" />
        <attribute key="decayTo" value="7339" />
        <attribute key="duration" value="10" />
        <attribute key="fluidSource" value="blood" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7339" article="a" name="dead silver rabbit">
        <attribute key="containerSize" value="6" />
        <attribute key="decayTo" value="7340" />
        <attribute key="duration" value="900" />
        <attribute key="fluidSource" value="blood" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7340" article="a" name="dead silver rabbit">
        <attribute key="containerSize" value="6" />
        <attribute key="decayTo" value="7341" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7341" article="a" name="dead silver rabbit">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7342" article="a" name="fur backpack">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="20" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="7343" article="a" name="fur bag">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="8" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="7344" article="a" name="dead crystal spider">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="7345" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="7345" article="a" name="dead crystal spider">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="7346" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="7346" article="a" name="dead crystal spider">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="7347" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="7347" article="a" name="dead crystal spider">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="7348" article="an" name="old cobbled pavement" />
    <item id="7349" name="ashes">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="5" />
    </item>
    <item id="7350" name="sandstone" />
    <item id="7351" article="a" name="black marble tile" />
    <item id="7352" name="dirt" />
    <item id="7353" name="stone flooring" />
    <item id="7354" name="melting ground" />
    <item id="7355" name="stone flooring" />
    <item id="7356" article="a" name="rock" />
    <item id="7357" name="wooden flooring" />
    <item id="7358" name="sandstone" />
    <item fromid="7359" toid="7360" article="a" name="fire" />
    <item id="7361" name="ash" />
    <item id="7362" article="a" name="sarcophagus" />
    <item id="7363" article="a" name="piercing bolt" plural="piercing bolts">
        <attribute key="weight" value="80" />
        <attribute key="slotType" value="ammo" />
        <attribute key="attack" value="33" />
        <attribute key="maxHitChance" value="90" />
        <attribute key="weaponType" value="ammunition" />
        <attribute key="ammoType" value="bolt" />
        <attribute key="shootType" value="piercingbolt" />
        <attribute key="ammoAction" value="removecount" />
    </item>
    <item id="7364" article="a" name="sniper arrow" plural="sniper arrows">
        <attribute key="weight" value="70" />
        <attribute key="slotType" value="ammo" />
        <attribute key="attack" value="28" />
        <attribute key="maxHitChance" value="100" />
        <attribute key="weaponType" value="ammunition" />
        <attribute key="ammoType" value="arrow" />
        <attribute key="shootType" value="sniperarrow" />
        <attribute key="ammoAction" value="removecount" />
    </item>
    <item id="7365" article="an" name="onyx arrow" plural="onyx arrows">
        <attribute key="weight" value="70" />
        <attribute key="slotType" value="ammo" />
        <attribute key="attack" value="38" />
        <attribute key="maxHitChance" value="90" />
        <attribute key="weaponType" value="ammunition" />
        <attribute key="ammoType" value="arrow" />
        <attribute key="shootType" value="onyxarrow" />
        <attribute key="ammoAction" value="removecount" />
    </item>
    <item id="7366" article="a" name="viper star" plural="viper stars">
        <attribute key="weight" value="200" />
        <attribute key="attack" value="28" />
        <attribute key="weaponType" value="distance" />
        <attribute key="shootType" value="greenstar" />
        <attribute key="range" value="5" />
        <attribute key="breakChance" value="9" />
        <attribute key="ammoAction" value="moveback" />
    </item>
    <item id="7367" article="an" name="enchanted spear" plural="enchanted spears">
        <attribute key="weight" value="2000" />
        <attribute key="attack" value="38" />
        <attribute key="weaponType" value="distance" />
        <attribute key="shootType" value="enchantedspear" />
        <attribute key="range" value="5" />
        <attribute key="breakChance" value="2" />
        <attribute key="ammoAction" value="moveback" />
    </item>
    <item id="7368" article="an" name="assassin star" plural="assassin stars">
        <attribute key="weight" value="200" />
        <attribute key="attack" value="65" />
        <attribute key="weaponType" value="distance" />
        <attribute key="shootType" value="redstar" />
        <attribute key="range" value="4" />
        <attribute key="breakChance" value="33" />
        <attribute key="ammoAction" value="moveback" />
    </item>
    <item id="7369" article="a" name="golden trophy">
        <attribute key="weight" value="3500" />
    </item>
    <item id="7370" article="a" name="silver trophy">
        <attribute key="weight" value="3000" />
    </item>
    <item id="7371" article="a" name="bronze trophy">
        <attribute key="weight" value="2500" />
    </item>
    <item fromid="7372" toid="7377" article="an" name="ice cream cone">
        <attribute key="weight" value="120" />
    </item>
    <item id="7378" article="a" name="royal spear" plural="royal spears">
        <attribute key="weight" value="2500" />
        <attribute key="attack" value="35" />
        <attribute key="weaponType" value="distance" />
        <attribute key="shootType" value="royalspear" />
        <attribute key="range" value="5" />
        <attribute key="breakChance" value="2" />
        <attribute key="ammoAction" value="moveback" />
    </item>
    <item id="7379" name="brutetamer's staff">
        <attribute key="weight" value="3800" />
        <attribute key="defense" value="15" />
        <attribute key="attack" value="35" />
        <attribute key="weaponType" value="club" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="description" value="Barbarian women are said to use it for conjuring beasts." />
    </item>
    <item id="7380" article="a" name="headchopper">
        <attribute key="weight" value="4500" />
        <attribute key="defense" value="20" />
        <attribute key="attack" value="42" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="weaponType" value="axe" />
    </item>
    <item id="7381" article="a" name="mammoth whopper">
        <attribute key="weight" value="4500" />
        <attribute key="defense" value="10" />
        <attribute key="attack" value="30" />
        <attribute key="weaponType" value="club" />
        <attribute key="description" value="Made from a mammoth's legbones, it is one of the favoured weapons among barbarians." />
    </item>
    <item id="7382" article="a" name="demonrage sword">
        <attribute key="weight" value="15000" />
        <attribute key="defense" value="22" />
        <attribute key="attack" value="47" />
        <attribute key="weaponType" value="sword" />
        <attribute key="slotType" value="two-handed" />
    </item>
    <item id="7383" article="a" name="relic sword">
        <attribute key="weight" value="4800" />
        <attribute key="defense" value="24" />
        <attribute key="attack" value="42" />
        <attribute key="weaponType" value="sword" />
        <attribute key="extradef" value="1" />
    </item>
    <item id="7384" article="a" name="mystic blade">
        <attribute key="weight" value="3500" />
        <attribute key="defense" value="25" />
        <attribute key="attack" value="44" />
        <attribute key="weaponType" value="sword" />
        <attribute key="extradef" value="2" />
    </item>
    <item id="7385" article="a" name="catch info. tool">
        <attribute key="weight" value="0" />
        <attribute key="slotType" value="ring" />
        <attribute key="description" value="Use this tool to see some information about your catching." />
    </item>
    <item id="7386" article="a" name="mercenary sword">
        <attribute key="weight" value="6800" />
        <attribute key="defense" value="27" />
        <attribute key="attack" value="43" />
        <attribute key="weaponType" value="sword" />
        <attribute key="slotType" value="two-handed" />
    </item>
    <item id="7387" article="a" name="diamond sceptre">
        <attribute key="weight" value="1500" />
        <attribute key="defense" value="18" />
        <attribute key="attack" value="34" />
        <attribute key="weaponType" value="club" />
        <attribute key="description" value="The beautiful jewel on the top of this sceptre is sharp enough to cut through glass." />
    </item>
    <item id="7388" article="a" name="vile axe">
        <attribute key="weight" value="5200" />
        <attribute key="defense" value="19" />
        <attribute key="attack" value="43" />
        <attribute key="weaponType" value="axe" />
        <attribute key="extradef" value="3" />
    </item>
    <item id="7389" article="a" name="heroic axe">
        <attribute key="weight" value="6100" />
        <attribute key="defense" value="24" />
        <attribute key="attack" value="44" />
        <attribute key="weaponType" value="axe" />
        <attribute key="extradef" value="1" />
    </item>
    <item id="7390" article="the" name="justice seeker">
        <attribute key="weight" value="5000" />
        <attribute key="defense" value="24" />
        <attribute key="attack" value="47" />
        <attribute key="weaponType" value="sword" />
        <attribute key="extradef" value="3" />
    </item>
    <item id="7391" article="a" name="thaian sword">
        <attribute key="weight" value="6100" />
        <attribute key="defense" value="29" />
        <attribute key="attack" value="46" />
        <attribute key="weaponType" value="sword" />
    </item>
    <item id="7392" article="an" name="orcish maul">
        <attribute key="weight" value="5400" />
        <attribute key="defense" value="18" />
        <attribute key="attack" value="42" />
        <attribute key="weaponType" value="club" />
        <attribute key="slotType" value="two-handed" />
    </item>
    <item id="7393" article="a" name="demon trophy">
        <attribute key="weight" value="500" />
    </item>
    <item id="7394" article="a" name="wolf trophy">
        <attribute key="weight" value="500" />
    </item>
    <item id="7395" article="an" name="orc trophy">
        <attribute key="weight" value="500" />
    </item>
    <item id="7396" article="a" name="behemoth trophy">
        <attribute key="weight" value="500" />
    </item>
    <item id="7397" article="a" name="deer trophy">
        <attribute key="weight" value="500" />
    </item>
    <item id="7398" article="a" name="cyclops trophy">
        <attribute key="weight" value="500" />
    </item>
    <item id="7399" article="a" name="dragon lord trophy">
        <attribute key="weight" value="500" />
    </item>
    <item id="7400" article="a" name="lion trophy">
        <attribute key="weight" value="500" />
    </item>
    <item id="7401" article="a" name="minotaur trophy">
        <attribute key="weight" value="500" />
    </item>
    <item id="7402" article="a" name="dragon slayer">
        <attribute key="weight" value="8200" />
        <attribute key="defense" value="28" />
        <attribute key="attack" value="44" />
        <attribute key="weaponType" value="sword" />
        <attribute key="slotType" value="two-handed" />
    </item>
    <item id="7403" name="berserker">
        <attribute key="weight" value="13000" />
        <attribute key="defense" value="21" />
        <attribute key="attack" value="48" />
        <attribute key="weaponType" value="sword" />
        <attribute key="slotType" value="two-handed" />
    </item>
    <item id="7404" article="an" name="assassin dagger">
        <attribute key="weight" value="1700" />
        <attribute key="defense" value="12" />
        <attribute key="attack" value="40" />
        <attribute key="weaponType" value="sword" />
        <attribute key="extradef" value="-2" />
    </item>
    <item id="7405" article="a" name="havoc blade">
        <attribute key="weight" value="7200" />
        <attribute key="defense" value="34" />
        <attribute key="attack" value="49" />
        <attribute key="weaponType" value="sword" />
        <attribute key="slotType" value="two-handed" />
    </item>
    <item id="7406" article="a" name="blacksteel sword">
        <attribute key="weight" value="5900" />
        <attribute key="defense" value="22" />
        <attribute key="attack" value="42" />
        <attribute key="weaponType" value="sword" />
        <attribute key="slotType" value="two-handed" />
    </item>
    <item id="7407" article="a" name="haunted blade">
        <attribute key="weight" value="3100" />
        <attribute key="defense" value="12" />
        <attribute key="attack" value="40" />
        <attribute key="weaponType" value="sword" />
        <attribute key="slotType" value="two-handed" />
    </item>
    <item id="7408" article="a" name="wyvern fang">
        <attribute key="weight" value="2000" />
        <attribute key="defense" value="19" />
        <attribute key="attack" value="32" />
        <attribute key="weaponType" value="sword" />
        <attribute key="extradef" value="1" />
    </item>
    <item id="7409" article="an" name="imaginary staff">
        <attribute key="weight" value="7500" />
        <attribute key="defense" value="30" />
        <attribute key="attack" value="46" />
        <attribute key="weaponType" value="club" />
        <attribute key="slotType" value="two-handed" />
    </item>
    <item id="7410" article="a" name="queen's sceptre">
        <attribute key="weight" value="2300" />
        <attribute key="defense" value="19" />
        <attribute key="attack" value="43" />
        <attribute key="weaponType" value="club" />
    </item>
    <item id="7411" article="an" name="ornamented axe">
        <attribute key="weight" value="6150" />
        <attribute key="defense" value="22" />
        <attribute key="attack" value="42" />
        <attribute key="weaponType" value="axe" />
        <attribute key="extradef" value="2" />
    </item>
    <item id="7412" article="a" name="butcher's axe">
        <attribute key="weight" value="6800" />
        <attribute key="defense" value="24" />
        <attribute key="attack" value="41" />
        <attribute key="weaponType" value="axe" />
        <attribute key="extradef" value="-2" />
    </item>
    <item id="7413" article="a" name="titan axe">
        <attribute key="weight" value="8100" />
        <attribute key="defense" value="30" />
        <attribute key="attack" value="43" />
        <attribute key="weaponType" value="axe" />
        <attribute key="slotType" value="two-handed" />
    </item>
    <item id="7414" article="a" name="abyss hammer">
        <attribute key="weight" value="5500" />
        <attribute key="defense" value="21" />
        <attribute key="attack" value="47" />
        <attribute key="weaponType" value="club" />
        <attribute key="slotType" value="two-handed" />
    </item>
    <item id="7415" article="a" name="cranial basher">
        <attribute key="weight" value="7800" />
        <attribute key="defense" value="20" />
        <attribute key="attack" value="44" />
        <attribute key="weaponType" value="club" />
        <attribute key="extradef" value="-2" />
    </item>
    <item id="7416" article="a" name="bloody edge">
        <attribute key="weight" value="5200" />
        <attribute key="defense" value="21" />
        <attribute key="attack" value="43" />
        <attribute key="weaponType" value="sword" />
        <attribute key="extradef" value="-3" />
    </item>
    <item id="7417" name="runed sword">
        <attribute key="weight" value="4600" />
        <attribute key="defense" value="32" />
        <attribute key="attack" value="45" />
        <attribute key="weaponType" value="sword" />
        <attribute key="extradef" value="2" />
    </item>
    <item id="7418" article="a" name="nightmare blade">
        <attribute key="weight" value="5900" />
        <attribute key="defense" value="23" />
        <attribute key="attack" value="46" />
        <attribute key="weaponType" value="sword" />
        <attribute key="extradef" value="-3" />
    </item>
    <item id="7419" article="a" name="dreaded cleaver">
        <attribute key="weight" value="3800" />
        <attribute key="defense" value="19" />
        <attribute key="attack" value="40" />
        <attribute key="weaponType" value="axe" />
        <attribute key="extradef" value="-3" />
    </item>
    <item id="7420" article="a" name="reaper's axe">
        <attribute key="weight" value="5900" />
        <attribute key="defense" value="25" />
        <attribute key="attack" value="46" />
        <attribute key="weaponType" value="axe" />
        <attribute key="extradef" value="2" />
    </item>
    <item id="7421" name="onyx flail">
        <attribute key="weight" value="2600" />
        <attribute key="defense" value="18" />
        <attribute key="attack" value="45" />
        <attribute key="weaponType" value="club" />
    </item>
    <item id="7422" name="jade hammer">
        <attribute key="weight" value="3200" />
        <attribute key="defense" value="20" />
        <attribute key="attack" value="46" />
        <attribute key="weaponType" value="club" />
        <attribute key="extradef" value="1" />
    </item>
    <item id="7423" article="a" name="skullcrusher">
        <attribute key="weight" value="12000" />
        <attribute key="defense" value="20" />
        <attribute key="attack" value="51" />
        <attribute key="weaponType" value="club" />
        <attribute key="slotType" value="two-handed" />
    </item>
    <item id="7424" article="a" name="lunar staff">
        <attribute key="weight" value="3800" />
        <attribute key="defense" value="25" />
        <attribute key="attack" value="40" />
        <attribute key="weaponType" value="club" />
        <attribute key="slotType" value="two-handed" />
    </item>
    <item id="7425" article="a" name="taurus mace">
        <attribute key="weight" value="5100" />
        <attribute key="defense" value="18" />
        <attribute key="attack" value="30" />
        <attribute key="weaponType" value="club" />
        <attribute key="slotType" value="two-handed" />
    </item>
    <item id="7426" article="an" name="amber staff">
        <attribute key="weight" value="3500" />
        <attribute key="defense" value="25" />
        <attribute key="attack" value="43" />
        <attribute key="weaponType" value="club" />
        <attribute key="slotType" value="two-handed" />
    </item>
    <item id="7427" article="a" name="chaos mace">
        <attribute key="weight" value="6300" />
        <attribute key="defense" value="21" />
        <attribute key="attack" value="44" />
        <attribute key="weaponType" value="club" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="description" value="Only those who have descended to the deepest depths may wield this hammer without it cursing them." />
    </item>
    <item id="7428" name="bonebreaker">
        <attribute key="weight" value="12000" />
        <attribute key="defense" value="15" />
        <attribute key="attack" value="46" />
        <attribute key="weaponType" value="club" />
        <attribute key="slotType" value="two-handed" />
    </item>
    <item id="7429" article="a" name="blessed sceptre">
        <attribute key="weight" value="3900" />
        <attribute key="defense" value="21" />
        <attribute key="attack" value="47" />
        <attribute key="weaponType" value="club" />
        <attribute key="extradef" value="3" />
    </item>
    <item id="7430" article="a" name="dragonbone staff">
        <attribute key="weight" value="1800" />
        <attribute key="defense" value="18" />
        <attribute key="attack" value="35" />
        <attribute key="weaponType" value="club" />
        <attribute key="description" value="Small flames are dancing around this strange weapon." />
    </item>
    <item id="7431" article="a" name="demonbone">
        <attribute key="weight" value="18000" />
        <attribute key="defense" value="38" />
        <attribute key="extradef" value="-2" />
        <attribute key="attack" value="48" />
        <attribute key="weaponType" value="club" />
    </item>
    <item id="7432" article="a" name="furry club">
        <attribute key="weight" value="4200" />
        <attribute key="defense" value="19" />
        <attribute key="attack" value="31" />
        <attribute key="weaponType" value="club" />
        <attribute key="extradef" value="1" />
    </item>
    <item id="7433" article="a" name="ravenwing">
        <attribute key="weight" value="5500" />
        <attribute key="defense" value="22" />
        <attribute key="attack" value="45" />
        <attribute key="weaponType" value="axe" />
        <attribute key="extradef" value="1" />
    </item>
    <item id="7434" article="a" name="royal axe">
        <attribute key="weight" value="9200" />
        <attribute key="defense" value="25" />
        <attribute key="attack" value="47" />
        <attribute key="weaponType" value="axe" />
        <attribute key="extradef" value="3" />
    </item>
    <item id="7435" article="an" name="impaler">
        <attribute key="weight" value="8200" />
        <attribute key="defense" value="25" />
        <attribute key="attack" value="49" />
        <attribute key="weaponType" value="axe" />
        <attribute key="extradef" value="-2" />
    </item>
    <item id="7436" name="angelic axe">
        <attribute key="weight" value="5600" />
        <attribute key="defense" value="24" />
        <attribute key="attack" value="44" />
        <attribute key="weaponType" value="axe" />
        <attribute key="slotType" value="two-handed" />
    </item>
    <item id="7437" article="a" name="sapphire hammer">
        <attribute key="weight" value="2100" />
        <attribute key="defense" value="18" />
        <attribute key="attack" value="37" />
        <attribute key="weaponType" value="club" />
        <attribute key="description" value="A beautiful gem is embedded in this weapon." />
    </item>
    <item id="7438" article="a" name="elvish bow">
        <attribute key="weight" value="3100" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="weaponType" value="distance" />
        <attribute key="ammoType" value="arrow" />
        <attribute key="range" value="6" />
        <attribute key="hitChance" value="5" />
    </item>
    <item id="7439" article="a" name="berserk potion">
        <attribute key="weight" value="200" />
        <attribute key="description" value="Drinking this potion increases temporarily your fighting skill while decreasing your defense." />
    </item>
    <item id="7440" article="a" name="mastermind potion">
        <attribute key="weight" value="200" />
        <attribute key="description" value="Drinking this is said to increase your magical skills for a while, but to decrease your defense." />
    </item>
    <item id="7441" article="an" name="ice cube">
        <attribute key="weight" value="1000" />
    </item>
    <item id="7442" article="an" name="ice cube">
        <attribute key="weight" value="9000" />
    </item>
    <item id="7443" article="a" name="bullseye potion">
        <attribute key="weight" value="200" />
        <attribute key="description" value="Drinking this potion increases temporarily your distance skill while decreasing your defense." />
    </item>
    <item id="7444" article="an" name="ice cube">
        <attribute key="weight" value="8000" />
    </item>
    <item id="7445" article="an" name="ice cube">
        <attribute key="description" value="It seems to be an elephant sculpture." />
        <attribute key="weight" value="7000" />
    </item>
    <item id="7446" article="a" name="small ice statue">
        <attribute key="weight" value="6500" />
    </item>
    <item id="7447" article="a" name="small ice statue">
        <attribute key="weight" value="5900" />
    </item>
    <item id="7448" article="a" name="small ice statue">
        <attribute key="weight" value="0" />
    </item>
    <item id="7449" article="a" name="crystal sword">
        <attribute key="weight" value="6900" />
        <attribute key="defense" value="26" />
        <attribute key="attack" value="35" />
        <attribute key="weaponType" value="sword" />
        <attribute key="slotType" value="two-handed" />
    </item>
    <item id="7450" article="the" name="hammer of prophecy">
        <attribute key="weight" value="5500" />
    </item>
    <item id="7451" article="a" name="shadow sceptre">
        <attribute key="weight" value="4100" />
        <attribute key="defense" value="17" />
        <attribute key="attack" value="39" />
        <attribute key="weaponType" value="club" />
    </item>
    <item id="7452" article="a" name="spiked squelcher">
        <attribute key="weight" value="6800" />
        <attribute key="defense" value="21" />
        <attribute key="attack" value="41" />
        <attribute key="weaponType" value="club" />
        <attribute key="slotType" value="two-handed" />
    </item>
    <item id="7453" name="executioner">
        <attribute key="weight" value="9900" />
        <attribute key="defense" value="20" />
        <attribute key="attack" value="51" />
        <attribute key="weaponType" value="axe" />
        <attribute key="slotType" value="two-handed" />
    </item>
    <item id="7454" name="glorious axe">
        <attribute key="weight" value="9500" />
        <attribute key="defense" value="23" />
        <attribute key="attack" value="40" />
        <attribute key="weaponType" value="axe" />
        <attribute key="slotType" value="two-handed" />
    </item>
    <item id="7455" article="a" name="mythril axe">
        <attribute key="weight" value="5500" />
        <attribute key="defense" value="28" />
        <attribute key="attack" value="48" />
        <attribute key="weaponType" value="axe" />
        <attribute key="extradef" value="2" />
    </item>
    <item id="7456" article="a" name="noble axe">
        <attribute key="weight" value="3800" />
        <attribute key="defense" value="22" />
        <attribute key="attack" value="39" />
        <attribute key="weaponType" value="axe" />
    </item>
    <item id="7457" article="a" name="fur boots">
        <attribute key="weight" value="1200" />
        <attribute key="armor" value="2" />
        <attribute key="slotType" value="feet" />
        <attribute key="description" value="These boots keep your toes warm in even the iciest regions but they feel kind of heavy." />
        <attribute key="speed" value="-12" />
    </item>
    <item id="7458" article="a" name="fur cap">
        <attribute key="weight" value="1800" />
        <attribute key="armor" value="3" />
        <attribute key="slotType" value="head" />
        <attribute key="description" value="It feels nice and warm on your ears." />
    </item>
    <item id="7459" name="earmuffs">
        <attribute key="weight" value="500" />
        <attribute key="slotType" value="head" />
        <attribute key="absorbPercentIce" value="2" />
    </item>
    <item id="7460" article="a" name="norse shield">
        <attribute key="weight" value="4100" />
        <attribute key="defense" value="28" />
        <attribute key="weaponType" value="shield" />
    </item>
    <item id="7461" article="a" name="krimhorn helmet">
        <attribute key="weight" value="5100" />
        <attribute key="armor" value="6" />
        <attribute key="slotType" value="head" />
        <attribute key="absorbPercentIce" value="2" />
    </item>
    <item id="7462" article="a" name="ragnir helmet">
        <attribute key="weight" value="3100" />
        <attribute key="armor" value="6" />
        <attribute key="slotType" value="head" />
    </item>
    <item id="7463" article="a" name="mammoth fur cape">
        <attribute key="weight" value="2000" />
        <attribute key="armor" value="10" />
        <attribute key="slotType" value="body" />
        <attribute key="description" value="It is imbued with protective magic." />
    </item>
    <item id="7464" article="a" name="mammoth fur shorts">
        <attribute key="weight" value="150" />
        <attribute key="slotType" value="legs" />
        <attribute key="description" value="They offer little protection but will at least provide some comfort and warmth." />
    </item>
    <item fromid="7465" toid="7473" article="a" name="searing fire">
        <attribute key="type" value="magicfield" />
        <attribute key="replaceable" value="0" />
        <attribute key="field" value="fire">
            <attribute key="damage" value="300" />
        </attribute>
    </item>
    <item fromid="7474" toid="7475" article="a" name="sarcophagus" />
    <item id="7476" article="a" name="flower" />
    <item id="7477" article="a" name="vial of lemonade">
        <attribute key="weight" value="180" />
    </item>
    <item id="7478" article="a" name="vial">
        <attribute key="weight" value="180" />
    </item>
    <item id="7479" article="a" name="dwarven beard">
        <attribute key="weight" value="1100" />
    </item>
    <item fromid="7481" toid="7483" article="a" name="crate">
        <attribute key="weight" value="8000" />
    </item>
    <item id="7484" article="a" name="box">
        <attribute key="weight" value="4000" />
    </item>
    <item id="7485" article="a" name="pillow x">
        <attribute key="weight" value="500" />
    </item>
    <item id="7486" article="an" name="animal bed">
        <attribute key="weight" value="1100" />
    </item>
    <item id="7487" article="a" name="stuffed rat">
        <attribute key="weight" value="2500" />
    </item>
    <item id="7488" article="a" name="magic vial">
        <attribute key="weight" value="280" />
    </item>
    <item id="7489" article="a" name="water drink">
        <attribute key="weight" value="280" />
    </item>
    <item id="7490" article="an" name="inkwell">
        <attribute key="weight" value="200" />
    </item>
    <item fromid="7491" toid="7492" article="a" name="paper">
        <attribute key="weight" value="100" />
    </item>
    <item id="7493" article="an" name="orb" />
    <item id="7494" article="a" name="water drink">
        <attribute key="weight" value="280" />
    </item>
    <item fromid="7495" toid="7496" article="a" name="blue bottle">
        <attribute key="weight" value="250" />
    </item>
    <item id="7497" article="a" name="mining helmet">
        <attribute key="weight" value="700" />
        <attribute key="armor" value="1" />
        <attribute key="slotType" value="head" />
    </item>
    <item id="7498" article="a" name="parcel">
        <attribute key="weight" value="1800" />
        <attribute key="containerSize" value="10" />
    </item>
    <item id="7499" article="a" name="cigarette">
        <attribute key="weight" value="200" />
    </item>
    <item id="7500" article="a" name="white tapestry">
        <attribute key="weight" value="1000" />
    </item>
    <item id="7501" article="a" name="green tapestry">
        <attribute key="weight" value="1000" />
    </item>
    <item id="7502" article="a" name="slain mummy">
        <attribute key="weight" value="1000" />
        <attribute key="containerSize" value="10" />
    </item>
    <item id="7503" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a large trunk." />
        <attribute key="weight" value="25000" />
    </item>
    <item fromid="7504" toid="7507" article="a" name="fire shrine" />
    <item fromid="7508" toid="7511" article="an" name="ice shrine" />
    <item fromid="7512" toid="7515" article="an" name="energy shrine" />
    <item fromid="7516" toid="7519" article="an" name="earth shrine" />
    <item fromid="7520" toid="7523" article="a" name="coffin" />
    <item fromid="7524" toid="7525" article="a" name="coffin">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="7526" article="a" name="dwarven beard">
        <attribute key="weight" value="1100" />
    </item>
    <item id="7527" article="a" name="coal basin" />
    <item fromid="7528" toid="7535" article="a" name="parchment" />
    <item id="7536" article="a" name="destroyed cocoon">
        <attribute key="decayTo" value="7537" />
        <attribute key="duration" value="600" />
    </item>
    <item id="7537" article="a" name="cocoon" />
    <item fromid="7538" toid="7543" article="a" name="spider's web" />
    <item id="7544" article="a" name="spider's web">
        <attribute key="decayTo" value="7538" />
        <attribute key="duration" value="240" />
    </item>
    <item id="7545" article="a" name="spider's web">
        <attribute key="decayTo" value="7539" />
        <attribute key="duration" value="240" />
    </item>
    <item fromid="7546" toid="7548" article="a" name="spider's web" />
    <item fromid="7554" toid="7557" article="a" name="human cocoon" />
    <item fromid="7560" toid="7561" article="a" name="coffin" />
    <item fromid="7564" toid="7565" article="a" name="empty coffin" />
    <item id="7566" article="a" name="destroyed cocoon" />
    <item id="7575" article="a" name="buoy" />
    <item fromid="7576" toid="7581" article="a" name="buoy line" />
    <item fromid="7582" toid="7583" article="a" name="vase">
        <attribute key="weight" value="940" />
    </item>
    <item id="7584" article="a" name="ship wall" />
    <item id="7585" article="a" name="cocoon" />
    <item id="7586" article="a" name="destroyed cocoon">
        <attribute key="decayTo" value="7585" />
        <attribute key="duration" value="600" />
    </item>
    <item id="7587" article="a" name="bag">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="8" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="7588" article="a" name="strong health potion">
        <attribute key="weight" value="200" />
        <attribute key="description" value="This potion can only be consumed by paladins and knights of level 50 or higher." />
    </item>
    <item id="7589" article="a" name="strong mana potion">
        <attribute key="weight" value="200" />
        <attribute key="description" value="This potion can only be consumed by sorcerers, druids and paladins of level 50 or higher." />
    </item>
    <item id="7590" article="a" name="great mana potion">
        <attribute key="weight" value="220" />
        <attribute key="description" value="This potion can only be consumed by sorcerers and druids of level 80 or higher." />
    </item>
    <item id="7591" article="a" name="great health potion">
        <attribute key="weight" value="220" />
        <attribute key="description" value="This potion can only be consumed by knights of level 80 or higher." />
    </item>
    <item fromid="7592" toid="7617" article="a" name="tent" />
    <item id="7618" article="a" name="health potion">
        <attribute key="weight" value="180" />
    </item>
    <item id="7619" article="a" name="tent" />
    <item id="7620" article="a" name="mana potion">
        <attribute key="weight" value="180" />
    </item>
    <item id="7621" article="a" name="dead dragon hatchling">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="7623" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="7622" article="a" name="dead dragon lord hatchling">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="7624" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="7623" article="a" name="dead dragon hatchling">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="7626" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="7624" article="a" name="dead dragon lord hatchling">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="7625" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="7625" article="a" name="dead dragon lord hatchling">
        <attribute key="decayTo" value="7627" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7626" article="a" name="dead dragon hatchling">
        <attribute key="decayTo" value="7627" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7627" article="a" name="dead dragon hatchling">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7628" article="a" name="dead squirrel">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="7629" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="7629" article="a" name="dead squirrel">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="7630" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="7630" article="a" name="dead squirrel">
        <attribute key="decayTo" value="7631" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7631" article="a" name="dead squirrel">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item fromid="7632" toid="7633" />
    <item id="7634" article="an" name="empty potion flask">
        <attribute key="weight" value="200" />
        <attribute key="description" value="Return it to a magic store for deposit." />
    </item>
    <item id="7635" article="an" name="empty potion flask">
        <attribute key="weight" value="220" />
        <attribute key="description" value="Return it to a magic store for deposit." />
    </item>
    <item id="7636" article="an" name="empty potion flask">
        <attribute key="weight" value="180" />
        <attribute key="description" value="Return it to a magic store for deposit." />
    </item>
    <item id="7637" article="a" name="dead cat">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="7638" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="7638" article="a" name="dead cat">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="7639" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="7639" article="a" name="dead cat">
        <attribute key="decayTo" value="7640" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7640" article="a" name="dead cat">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item fromid="7641" toid="7652" article="a" name="rock ground" />
    <item fromid="7653" toid="7654" article="a" name="grass" />
    <item id="7655" article="an" name="empty flower bowl">
        <attribute key="weight" value="2500" />
    </item>
    <item fromid="7656" toid="7664" article="a" name="grass" />
    <item id="7665" article="an" name="empty flower bowl">
        <attribute key="weight" value="2500" />
    </item>
    <item fromid="7666" toid="7669" article="a" name="grass" />
    <item id="7670" article="a" name="flower bowl">
        <attribute key="weight" value="2500" />
    </item>
    <item fromid="7671" toid="7672" article="a" name="gravel" />
    <item id="7673" article="an" name="empty flower bowl">
        <attribute key="weight" value="2500" />
    </item>
    <item fromid="7674" toid="7678" article="a" name="flower bowl">
        <attribute key="weight" value="2500" />
    </item>
    <item id="7679" article="an" name="empty flower bowl">
        <attribute key="weight" value="2500" />
    </item>
    <item fromid="7680" toid="7695" article="a" name="flower bowl">
        <attribute key="weight" value="2500" />
    </item>
    <item id="7696" article="a" name="parchment">
        <attribute key="weight" value="200" />
    </item>
    <item id="7697" article="a" name="signet ring">
        <attribute key="weight" value="80" />
        <attribute key="slotType" value="ring" />
    </item>
    <item id="7698" article="a" name="jewel case">
        <attribute key="weight" value="170" />
        <attribute key="containerSize" value="1" />
    </item>
    <item id="7699" article="a" name="beard">
        <attribute key="weight" value="1000" />
    </item>
    <item id="7700" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a goldfish bowl." />
        <attribute key="weight" value="5000" />
    </item>
    <item id="7701" name="wooden trash">
        <attribute key="weight" value="100" />
    </item>
    <item fromid="7702" toid="7703" name="paper">
        <attribute key="weight" value="500" />
    </item>
    <item id="7704" article="a" name="book">
        <attribute key="weight" value="2000" />
    </item>
    <item id="7705" article="a" name="book">
        <attribute key="weight" value="1000" />
    </item>
    <item id="7706" article="a" name="barrel">
        <attribute key="containerSize" value="25" />
    </item>
    <item id="7707" article="a" name="crate">
        <attribute key="weight" value="8000" />
        <attribute key="containerSize" value="15" />
    </item>
    <item id="7708" article="a" name="ring">
        <attribute key="weight" value="40" />
        <attribute key="slotType" value="ring" />
    </item>
    <item fromid="7709" toid="7710" article="a" name="grass" />
    <item id="7711" article="a" name="waterball" />
    <item fromid="7712" toid="7715" article="a" name="beach chair" />
    <item fromid="7716" toid="7718" article="a" name="parasol" />
    <item id="7719" />
    <item id="7720" article="a" name="paper">
        <attribute key="weight" value="100" />
    </item>
    <item id="7721" article="a" name="blank paper">
        <attribute key="weight" value="100" />
        <attribute key="writeable" value="1" />
        <attribute key="maxTextLen" value="512" />
        <attribute key="writeOnceItemId" value="7720" />
    </item>
    <item id="7722" article="a" name="paper">
        <attribute key="weight" value="100" />
    </item>
    <item id="7723" article="a" name="blank paper">
        <attribute key="weight" value="100" />
        <attribute key="writeable" value="1" />
        <attribute key="maxTextLen" value="512" />
        <attribute key="writeOnceItemId" value="7722" />
    </item>
    <item id="7724" article="a" name="paper">
        <attribute key="weight" value="100" />
        <attribute key="writeable" value="1" />
    </item>
    <item id="7725" article="a" name="blank paper">
        <attribute key="weight" value="100" />
        <attribute key="writeable" value="1" />
        <attribute key="maxTextLen" value="512" />
        <attribute key="writeOnceItemId" value="7724" />
    </item>
    <item id="7726" article="a" name="paper">
        <attribute key="weight" value="100" />
    </item>
    <item id="7727" article="a" name="blank paper">
        <attribute key="weight" value="100" />
        <attribute key="writeable" value="1" />
        <attribute key="maxTextLen" value="512" />
        <attribute key="writeOnceItemId" value="7726" />
    </item>
    <item fromid="7728" toid="7729" />
    <item id="7730" name="blue legs">
        <attribute key="weight" value="1800" />
        <attribute key="armor" value="8" />
        <attribute key="slotType" value="legs" />
    </item>
    <item id="7731" name="elvenhair rope">
        <attribute key="weight" value="600" />
    </item>
    <item id="7732" name="seeds">
        <attribute key="weight" value="50" />
        <attribute key="description" value="They might be worth keeping, who knows what will happen to them." />
    </item>
    <item id="7733" name="flower" />
    <item id="7734" article="a" name="waterskin">
        <attribute key="weight" value="800" />
    </item>
    <item id="7735" article="the" name="star tear">
        <attribute key="description" value="This holy wand radiates huge ammount of light." />
        <attribute key="weight" value="1450" />
    </item>
    <item id="7736" article="a" name="root">
        <attribute key="weight" value="1500" />
    </item>
    <item id="7737" article="a" name="purple bag">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="8" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="7738" article="a" name="grey bag">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="8" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="7739" article="a" name="golden bag">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="8" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="7740" article="a" name="dead cyclops smith">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="7741" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="7741" article="a" name="dead cyclops smith">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="7742" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="7742" article="a" name="dead cyclops smith">
        <attribute key="decayTo" value="7743" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7743" article="a" name="dead cyclops">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7744" article="a" name="darkrai portal"></item>
    <item id="7745" article="a" name="Deoxys bag">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="100" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="7746" article="a" name="Lugia bag">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="100" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="7747" article="a" name="Rare Candy"></item>
    <item id="7748" article="a" name="XP Boost"></item>
    <item id="7749" article="a" name="barbarian axe">
        <attribute key="weight" value="5100" />
        <attribute key="defense" value="18" />
        <attribute key="attack" value="28" />
        <attribute key="weaponType" value="axe" />
        <attribute key="extradef" value="1" />
        <attribute key="elementFire" value="5" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="2429" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7750" article="a" name="knight axe">
        <attribute key="weight" value="5900" />
        <attribute key="defense" value="21" />
        <attribute key="attack" value="33" />
        <attribute key="weaponType" value="axe" />
        <attribute key="extradef" value="1" />
        <attribute key="elementFire" value="7" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="2430" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7751" article="a" name="heroic axe">
        <attribute key="weight" value="6100" />
        <attribute key="defense" value="24" />
        <attribute key="attack" value="44" />
        <attribute key="weaponType" value="axe" />
        <attribute key="extradef" value="1" />
        <attribute key="elementFire" value="9" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="7389" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7752" article="a" name="headchopper">
        <attribute key="weight" value="4500" />
        <attribute key="defense" value="20" />
        <attribute key="attack" value="42" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="weaponType" value="axe" />
        <attribute key="elementFire" value="7" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="7380" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7753" article="a" name="war axe">
        <attribute key="weight" value="6150" />
        <attribute key="defense" value="10" />
        <attribute key="attack" value="48" />
        <attribute key="weaponType" value="axe" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="elementFire" value="10" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="2454" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7754" article="a" name="clerical mace">
        <attribute key="weight" value="5800" />
        <attribute key="defense" value="15" />
        <attribute key="attack" value="28" />
        <attribute key="weaponType" value="club" />
        <attribute key="elementFire" value="5" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="2423" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7755" article="a" name="crystal mace">
        <attribute key="weight" value="8000" />
        <attribute key="defense" value="16" />
        <attribute key="attack" value="38" />
        <attribute key="weaponType" value="club" />
        <attribute key="elementFire" value="7" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="2445" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7756" article="a" name="cranial basher">
        <attribute key="weight" value="7800" />
        <attribute key="defense" value="20" />
        <attribute key="attack" value="44" />
        <attribute key="weaponType" value="club" />
        <attribute key="extradef" value="-2" />
        <attribute key="elementFire" value="8" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="7415" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7757" article="an" name="orcish maul">
        <attribute key="weight" value="5400" />
        <attribute key="defense" value="18" />
        <attribute key="attack" value="42" />
        <attribute key="weaponType" value="club" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="elementFire" value="6" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="7392" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7758" article="a" name="war hammer">
        <attribute key="weight" value="8500" />
        <attribute key="defense" value="10" />
        <attribute key="attack" value="45" />
        <attribute key="weaponType" value="club" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="elementFire" value="9" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="2391" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7759" article="a" name="enchanted small sapphire" plural="enchanted small sapphires">
        <attribute key="weight" value="10" />
    </item>
    <item id="7760" article="a" name="enchanted small ruby" plural="enchanted small rubies">
        <attribute key="weight" value="10" />
    </item>
    <item id="7761" article="a" name="enchanted small emerald" plural="enchanted small emeralds">
        <attribute key="weight" value="10" />
    </item>
    <item id="7762" article="a" name="enchanted small amethyst" plural="enchanted small amethysts">
        <attribute key="weight" value="10" />
    </item>
    <item id="7763" article="a" name="spike sword">
        <attribute key="weight" value="5000" />
        <attribute key="defense" value="21" />
        <attribute key="attack" value="24" />
        <attribute key="weaponType" value="sword" />
        <attribute key="extradef" value="2" />
        <attribute key="elementIce" value="4" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="2383" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7764" article="a" name="relic sword">
        <attribute key="weight" value="4800" />
        <attribute key="defense" value="24" />
        <attribute key="attack" value="42" />
        <attribute key="weaponType" value="sword" />
        <attribute key="extradef" value="1" />
        <attribute key="elementIce" value="8" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="7383" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7765" article="a" name="mystic blade">
        <attribute key="weight" value="3500" />
        <attribute key="defense" value="25" />
        <attribute key="attack" value="44" />
        <attribute key="weaponType" value="sword" />
        <attribute key="extradef" value="2" />
        <attribute key="elementIce" value="8" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="7384" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7766" article="a" name="blacksteel sword">
        <attribute key="weight" value="5900" />
        <attribute key="defense" value="22" />
        <attribute key="attack" value="42" />
        <attribute key="weaponType" value="sword" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="elementIce" value="7" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="7406" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7767" article="a" name="dragon slayer">
        <attribute key="weight" value="8200" />
        <attribute key="defense" value="28" />
        <attribute key="attack" value="44" />
        <attribute key="weaponType" value="sword" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="elementIce" value="9" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="7402" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7768" article="a" name="barbarian axe">
        <attribute key="weight" value="5100" />
        <attribute key="defense" value="18" />
        <attribute key="attack" value="28" />
        <attribute key="weaponType" value="axe" />
        <attribute key="extradef" value="1" />
        <attribute key="elementIce" value="5" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="2429" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7769" article="a" name="knight axe">
        <attribute key="weight" value="5900" />
        <attribute key="defense" value="21" />
        <attribute key="attack" value="33" />
        <attribute key="weaponType" value="axe" />
        <attribute key="extradef" value="1" />
        <attribute key="elementIce" value="7" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="2430" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7770" article="a" name="heroic axe">
        <attribute key="weight" value="6100" />
        <attribute key="defense" value="24" />
        <attribute key="attack" value="44" />
        <attribute key="weaponType" value="axe" />
        <attribute key="extradef" value="1" />
        <attribute key="elementIce" value="9" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="7389" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7771" article="a" name="headchopper">
        <attribute key="weight" value="4500" />
        <attribute key="defense" value="20" />
        <attribute key="attack" value="42" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="weaponType" value="axe" />
        <attribute key="elementIce" value="7" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="7380" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7772" article="a" name="war axe">
        <attribute key="weight" value="6150" />
        <attribute key="defense" value="10" />
        <attribute key="attack" value="48" />
        <attribute key="weaponType" value="axe" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="elementIce" value="10" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="2454" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7773" article="a" name="clerical mace">
        <attribute key="weight" value="5800" />
        <attribute key="defense" value="15" />
        <attribute key="attack" value="28" />
        <attribute key="weaponType" value="club" />
        <attribute key="elementIce" value="5" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="2423" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7774" article="a" name="crystal mace">
        <attribute key="weight" value="8000" />
        <attribute key="defense" value="16" />
        <attribute key="attack" value="38" />
        <attribute key="weaponType" value="club" />
        <attribute key="elementIce" value="7" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="2445" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7775" article="a" name="cranial basher">
        <attribute key="weight" value="7800" />
        <attribute key="defense" value="20" />
        <attribute key="attack" value="44" />
        <attribute key="weaponType" value="club" />
        <attribute key="extradef" value="-2" />
        <attribute key="elementIce" value="8" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="7415" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7776" article="an" name="orcish maul">
        <attribute key="weight" value="5400" />
        <attribute key="defense" value="18" />
        <attribute key="attack" value="42" />
        <attribute key="weaponType" value="club" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="elementIce" value="6" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="7392" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7777" article="a" name="war hammer">
        <attribute key="weight" value="8500" />
        <attribute key="defense" value="10" />
        <attribute key="attack" value="45" />
        <attribute key="weaponType" value="club" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="elementIce" value="9" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="2391" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7778" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="2" />
        <attribute key="transformTo" value="1754" />
    </item>
    <item id="7779" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="1" />
        <attribute key="transformTo" value="1760" />
    </item>
    <item id="7780" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="3" />
        <attribute key="transformTo" value="1761" />
    </item>
    <item id="7781" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="2" />
        <attribute key="transformTo" value="1758" />
    </item>
    <item id="7782" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="0" />
        <attribute key="transformTo" value="1759" />
    </item>
    <item id="7783" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="1" />
        <attribute key="transformTo" value="1756" />
    </item>
    <item id="7784" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="3" />
        <attribute key="transformTo" value="1757" />
    </item>
    <item id="7785" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="2" />
        <attribute key="transformTo" value="3836" />
    </item>
    <item id="7786" article="a" name="hammock">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="1" />
        <attribute key="transformTo" value="3838" />
    </item>
    <item id="7787" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="2" />
        <attribute key="transformTo" value="7811" />
    </item>
    <item id="7788" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="0" />
        <attribute key="transformTo" value="7812" />
    </item>
    <item id="7789" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="1" />
        <attribute key="transformTo" value="7813" />
    </item>
    <item id="7790" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="3" />
        <attribute key="transformTo" value="7814" />
    </item>
    <item id="7791" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="2" />
        <attribute key="transformTo" value="7815" />
    </item>
    <item id="7792" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="0" />
        <attribute key="transformTo" value="7816" />
    </item>
    <item id="7793" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="1" />
        <attribute key="transformTo" value="7817" />
    </item>
    <item id="7794" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="3" />
        <attribute key="transformTo" value="7818" />
    </item>
    <item id="7795" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="2" />
        <attribute key="transformTo" value="7819" />
    </item>
    <item id="7796" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="0" />
        <attribute key="transformTo" value="7820" />
    </item>
    <item id="7797" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="1" />
        <attribute key="transformTo" value="7821" />
    </item>
    <item id="7798" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="3" />
        <attribute key="transformTo" value="7822" />
    </item>
    <item id="7799" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="2" />
        <attribute key="transformTo" value="7811" />
    </item>
    <item id="7800" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="0" />
        <attribute key="transformTo" value="7812" />
    </item>
    <item id="7801" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="1" />
        <attribute key="transformTo" value="7813" />
    </item>
    <item id="7802" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="3" />
        <attribute key="transformTo" value="7814" />
    </item>
    <item id="7803" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="2" />
        <attribute key="transformTo" value="7815" />
    </item>
    <item id="7804" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="0" />
        <attribute key="transformTo" value="7816" />
    </item>
    <item id="7805" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="1" />
        <attribute key="transformTo" value="7817" />
    </item>
    <item id="7806" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="3" />
        <attribute key="transformTo" value="7818" />
    </item>
    <item id="7807" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="2" />
        <attribute key="transformTo" value="7819" />
    </item>
    <item id="7808" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="0" />
        <attribute key="transformTo" value="7820" />
    </item>
    <item id="7809" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="1" />
        <attribute key="transformTo" value="7821" />
    </item>
    <item id="7810" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="3" />
        <attribute key="transformTo" value="7822" />
    </item>
    <item id="7811" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="2" />
        <attribute key="maleTransformTo" value="7787" />
        <attribute key="femaleTransformTo" value="7799" />
    </item>
    <item id="7812" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="0" />
        <attribute key="maleTransformTo" value="7788" />
        <attribute key="femaleTransformTo" value="7800" />
    </item>
    <item id="7813" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="1" />
        <attribute key="maleTransformTo" value="7789" />
        <attribute key="femaleTransformTo" value="7801" />
    </item>
    <item id="7814" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="3" />
        <attribute key="maleTransformTo" value="7790" />
        <attribute key="femaleTransformTo" value="7802" />
    </item>
    <item id="7815" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="2" />
        <attribute key="maleTransformTo" value="7791" />
        <attribute key="femaleTransformTo" value="7803" />
    </item>
    <item id="7816" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="0" />
        <attribute key="maleTransformTo" value="7792" />
        <attribute key="femaleTransformTo" value="7804" />
    </item>
    <item id="7817" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="1" />
        <attribute key="maleTransformTo" value="7793" />
        <attribute key="femaleTransformTo" value="7805" />
    </item>
    <item id="7818" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="3" />
        <attribute key="maleTransformTo" value="7794" />
        <attribute key="femaleTransformTo" value="7806" />
    </item>
    <item id="7819" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="2" />
        <attribute key="maleTransformTo" value="7795" />
        <attribute key="femaleTransformTo" value="7807" />
    </item>
    <item id="7820" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="0" />
        <attribute key="maleTransformTo" value="7796" />
        <attribute key="femaleTransformTo" value="7808" />
    </item>
    <item id="7821" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="1" />
        <attribute key="maleTransformTo" value="7797" />
        <attribute key="femaleTransformTo" value="7809" />
    </item>
    <item id="7822" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="3" />
        <attribute key="maleTransformTo" value="7798" />
        <attribute key="femaleTransformTo" value="7810" />
    </item>
    <item id="7823" article="an" name="obsidian statue" />
    <item id="7824" article="a" name="dragon statue" />
    <item id="7825" article="a" name="monk statue" />
    <item id="7826" article="a" name="sea monster statue" />
    <item id="7827" article="a" name="large telescope" />
    <item id="7828" article="an" name="astro clock" />
    <item fromid="7829" toid="7832" article="an" name="astronomical map" />
    <item fromid="7833" toid="7837" article="a" name="ground" />
    <item id="7838" article="a" name="flash arrow" plural="flash arrows">
        <attribute key="weight" value="70" />
        <attribute key="slotType" value="ammo" />
        <attribute key="attack" value="25" />
        <attribute key="maxHitChance" value="90" />
        <attribute key="weaponType" value="ammunition" />
        <attribute key="ammoType" value="arrow" />
        <attribute key="ammoAction" value="removecount" />
        <attribute key="shootType" value="flasharrow" />
    </item>
    <item id="7839" article="a" name="shiver arrow" plural="shiver arrows">
        <attribute key="weight" value="70" />
        <attribute key="slotType" value="ammo" />
        <attribute key="attack" value="25" />
        <attribute key="maxHitChance" value="90" />
        <attribute key="weaponType" value="ammunition" />
        <attribute key="ammoType" value="arrow" />
        <attribute key="ammoAction" value="removecount" />
        <attribute key="shootType" value="shiverarrow" />
    </item>
    <item id="7840" article="a" name="flaming arrow" plural="flaming arrows">
        <attribute key="weight" value="70" />
        <attribute key="slotType" value="ammo" />
        <attribute key="attack" value="25" />
        <attribute key="maxHitChance" value="90" />
        <attribute key="weaponType" value="ammunition" />
        <attribute key="ammoType" value="arrow" />
        <attribute key="ammoAction" value="removecount" />
        <attribute key="shootType" value="flammingarrow" />
    </item>
    <item id="7841" article="a" name="straw mat">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="2" />
        <attribute key="transformTo" value="5502" />
    </item>
    <item id="7842" article="a" name="straw mat">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="0" />
        <attribute key="transformTo" value="5503" />
    </item>
    <item id="7843" article="a" name="straw mat">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="1" />
        <attribute key="transformTo" value="5500" />
    </item>
    <item fromid="7844" toid="7846" article="a" name="paper">
        <attribute key="weight" value="100" />
    </item>
    <item id="7847" article="a" name="dead cyclops drone">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="7848" />
        <attribute key="duration" value="10" />
    </item>
    <item id="7848" article="a" name="dead cyclops drone">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="7849" />
        <attribute key="duration" value="900" />
    </item>
    <item id="7849" article="a" name="dead cyclops drone">
        <attribute key="decayTo" value="7743" />
        <attribute key="duration" value="600" />
    </item>
    <item id="7850" article="an" name="earth arrow" plural="earth arrows">
        <attribute key="weight" value="70" />
        <attribute key="slotType" value="ammo" />
        <attribute key="attack" value="25" />
        <attribute key="maxHitChance" value="90" />
        <attribute key="weaponType" value="ammunition" />
        <attribute key="ammoType" value="arrow" />
        <attribute key="ammoAction" value="removecount" />
        <attribute key="shootType" value="eartharrow" />
    </item>
    <item fromid="7851" toid="7853" article="a" name="fiery archway" />
    <item id="7854" article="a" name="spike sword">
        <attribute key="weight" value="5000" />
        <attribute key="defense" value="21" />
        <attribute key="attack" value="24" />
        <attribute key="weaponType" value="sword" />
        <attribute key="extradef" value="2" />
        <attribute key="elementEarth" value="4" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="2383" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7855" article="a" name="relic sword">
        <attribute key="weight" value="4800" />
        <attribute key="defense" value="24" />
        <attribute key="attack" value="42" />
        <attribute key="weaponType" value="sword" />
        <attribute key="extradef" value="1" />
        <attribute key="elementEarth" value="8" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="7383" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7856" article="a" name="mystic blade">
        <attribute key="weight" value="3500" />
        <attribute key="defense" value="25" />
        <attribute key="attack" value="44" />
        <attribute key="weaponType" value="sword" />
        <attribute key="extradef" value="2" />
        <attribute key="elementEarth" value="8" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="7384" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7857" article="a" name="blacksteel sword">
        <attribute key="weight" value="5900" />
        <attribute key="defense" value="22" />
        <attribute key="attack" value="42" />
        <attribute key="weaponType" value="sword" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="elementEarth" value="7" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="7406" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7858" article="a" name="dragon slayer">
        <attribute key="weight" value="8200" />
        <attribute key="defense" value="28" />
        <attribute key="attack" value="44" />
        <attribute key="weaponType" value="sword" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="elementEarth" value="9" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="7402" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7859" article="a" name="barbarian axe">
        <attribute key="weight" value="5100" />
        <attribute key="defense" value="18" />
        <attribute key="attack" value="28" />
        <attribute key="weaponType" value="axe" />
        <attribute key="extradef" value="1" />
        <attribute key="elementEarth" value="5" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="2429" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7860" article="a" name="knight axe">
        <attribute key="weight" value="5900" />
        <attribute key="defense" value="21" />
        <attribute key="attack" value="33" />
        <attribute key="weaponType" value="axe" />
        <attribute key="extradef" value="1" />
        <attribute key="elementEarth" value="7" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="2430" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7861" article="a" name="heroic axe">
        <attribute key="weight" value="6100" />
        <attribute key="defense" value="24" />
        <attribute key="attack" value="44" />
        <attribute key="weaponType" value="axe" />
        <attribute key="extradef" value="1" />
        <attribute key="elementEarth" value="9" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="7389" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7862" article="a" name="headchopper">
        <attribute key="weight" value="4500" />
        <attribute key="defense" value="20" />
        <attribute key="attack" value="42" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="weaponType" value="axe" />
        <attribute key="elementEarth" value="7" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="7380" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7863" article="a" name="war axe">
        <attribute key="weight" value="6150" />
        <attribute key="defense" value="10" />
        <attribute key="attack" value="48" />
        <attribute key="weaponType" value="axe" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="elementEarth" value="11" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="2454" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7864" article="a" name="clerical mace">
        <attribute key="weight" value="5800" />
        <attribute key="defense" value="15" />
        <attribute key="attack" value="28" />
        <attribute key="weaponType" value="club" />
        <attribute key="elementEarth" value="5" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="2423" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7865" article="a" name="crystal mace">
        <attribute key="weight" value="8000" />
        <attribute key="defense" value="16" />
        <attribute key="attack" value="38" />
        <attribute key="weaponType" value="club" />
        <attribute key="elementEarth" value="7" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="2445" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7866" article="a" name="cranial basher">
        <attribute key="weight" value="7800" />
        <attribute key="defense" value="20" />
        <attribute key="attack" value="44" />
        <attribute key="weaponType" value="club" />
        <attribute key="extradef" value="-2" />
        <attribute key="elementEarth" value="8" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="7415" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7867" article="an" name="orcish maul">
        <attribute key="weight" value="5400" />
        <attribute key="defense" value="18" />
        <attribute key="attack" value="42" />
        <attribute key="weaponType" value="club" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="elementEarth" value="6" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="7392" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7868" article="a" name="war hammer">
        <attribute key="weight" value="8500" />
        <attribute key="defense" value="10" />
        <attribute key="attack" value="45" />
        <attribute key="weaponType" value="club" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="elementEarth" value="9" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="2391" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7869" article="a" name="spike sword">
        <attribute key="weight" value="5000" />
        <attribute key="defense" value="21" />
        <attribute key="attack" value="24" />
        <attribute key="weaponType" value="sword" />
        <attribute key="extradef" value="2" />
        <attribute key="elementEnergy" value="4" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="2383" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7870" article="a" name="relic sword">
        <attribute key="weight" value="4800" />
        <attribute key="defense" value="24" />
        <attribute key="attack" value="42" />
        <attribute key="weaponType" value="sword" />
        <attribute key="extradef" value="1" />
        <attribute key="elementEnergy" value="8" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="7383" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7871" article="a" name="mystic blade">
        <attribute key="weight" value="3500" />
        <attribute key="defense" value="25" />
        <attribute key="attack" value="44" />
        <attribute key="weaponType" value="sword" />
        <attribute key="extradef" value="2" />
        <attribute key="elementEnergy" value="8" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="7384" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7872" article="a" name="blacksteel sword">
        <attribute key="weight" value="5900" />
        <attribute key="defense" value="22" />
        <attribute key="attack" value="42" />
        <attribute key="weaponType" value="sword" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="elementEnergy" value="7" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="7406" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7873" article="a" name="dragon slayer">
        <attribute key="weight" value="8200" />
        <attribute key="defense" value="28" />
        <attribute key="attack" value="44" />
        <attribute key="weaponType" value="sword" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="elementEnergy" value="9" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="7402" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7874" article="a" name="barbarian axe">
        <attribute key="weight" value="5100" />
        <attribute key="defense" value="18" />
        <attribute key="attack" value="28" />
        <attribute key="weaponType" value="axe" />
        <attribute key="extradef" value="1" />
        <attribute key="elementEnergy" value="5" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="2429" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7875" article="a" name="knight axe">
        <attribute key="weight" value="5900" />
        <attribute key="defense" value="21" />
        <attribute key="attack" value="33" />
        <attribute key="weaponType" value="axe" />
        <attribute key="extradef" value="1" />
        <attribute key="elementEnergy" value="7" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="2430" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7876" article="a" name="heroic axe">
        <attribute key="weight" value="6100" />
        <attribute key="defense" value="24" />
        <attribute key="attack" value="44" />
        <attribute key="weaponType" value="axe" />
        <attribute key="extradef" value="1" />
        <attribute key="elementEnergy" value="9" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="7389" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7877" article="a" name="headchopper">
        <attribute key="weight" value="4500" />
        <attribute key="defense" value="20" />
        <attribute key="attack" value="42" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="weaponType" value="axe" />
        <attribute key="elementEnergy" value="7" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="7380" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7878" article="a" name="war axe">
        <attribute key="weight" value="6150" />
        <attribute key="defense" value="10" />
        <attribute key="attack" value="48" />
        <attribute key="weaponType" value="axe" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="elementEnergy" value="10" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="2454" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7879" article="a" name="clerical mace">
        <attribute key="weight" value="5800" />
        <attribute key="defense" value="15" />
        <attribute key="attack" value="28" />
        <attribute key="weaponType" value="club" />
        <attribute key="elementEnergy" value="5" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="2423" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7880" article="a" name="crystal mace">
        <attribute key="weight" value="8000" />
        <attribute key="defense" value="16" />
        <attribute key="attack" value="38" />
        <attribute key="weaponType" value="club" />
        <attribute key="elementEnergy" value="7" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="2445" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7881" article="a" name="cranial basher">
        <attribute key="weight" value="7800" />
        <attribute key="defense" value="20" />
        <attribute key="attack" value="44" />
        <attribute key="weaponType" value="club" />
        <attribute key="extradef" value="-2" />
        <attribute key="elementEnergy" value="8" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="7415" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7882" article="an" name="orcish maul">
        <attribute key="weight" value="5400" />
        <attribute key="defense" value="18" />
        <attribute key="attack" value="42" />
        <attribute key="weaponType" value="club" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="elementEnergy" value="6" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="7392" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7883" article="a" name="war hammer">
        <attribute key="weight" value="8500" />
        <attribute key="defense" value="10" />
        <attribute key="attack" value="45" />
        <attribute key="weaponType" value="club" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="elementEnergy" value="9" />
        <attribute key="charges" value="1000" />
        <attribute key="decayTo" value="2391" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="7884" article="a" name="terra mantle">
        <attribute key="weight" value="2250" />
        <attribute key="armor" value="11" />
        <attribute key="slotType" value="body" />
        <attribute key="absorbPercentEarth" value="8" />
        <attribute key="absorbPercentFire" value="-8" />
    </item>
    <item id="7885" name="terra legs">
        <attribute key="weight" value="1900" />
        <attribute key="armor" value="8" />
        <attribute key="slotType" value="legs" />
        <attribute key="absorbPercentEarth" value="6" />
        <attribute key="absorbPercentFire" value="-6" />
    </item>
    <item id="7886" name="terra boots">
        <attribute key="weight" value="750" />
        <attribute key="armor" value="2" />
        <attribute key="slotType" value="feet" />
        <attribute key="absorbPercentEarth" value="5" />
        <attribute key="absorbPercentFire" value="-5" />
    </item>
    <item id="7887" article="a" name="terra amulet">
        <attribute key="weight" value="500" />
        <attribute key="slotType" value="necklace" />
        <attribute key="charges" value="200" />
        <attribute key="showcharges" value="1" />
        <attribute key="absorbPercentEarth" value="20" />
        <attribute key="absorbPercentFire" value="-10" />
        <attribute key="showattributes" value="1" />
    </item>
    <item id="7888" article="a" name="glacier amulet">
        <attribute key="weight" value="500" />
        <attribute key="slotType" value="necklace" />
        <attribute key="charges" value="200" />
        <attribute key="showcharges" value="1" />
        <attribute key="absorbPercentIce" value="20" />
        <attribute key="absorbPercentEnergy" value="-10" />
        <attribute key="showattributes" value="1" />
    </item>
    <item id="7889" article="a" name="lightning pendant">
        <attribute key="weight" value="500" />
        <attribute key="slotType" value="necklace" />
        <attribute key="charges" value="200" />
        <attribute key="showcharges" value="1" />
        <attribute key="absorbPercentEnergy" value="20" />
        <attribute key="absorbPercentEarth" value="-10" />
        <attribute key="showattributes" value="1" />
    </item>
    <item id="7890" article="a" name="magma amulet">
        <attribute key="weight" value="500" />
        <attribute key="slotType" value="necklace" />
        <attribute key="charges" value="200" />
        <attribute key="showcharges" value="1" />
        <attribute key="absorbPercentFire" value="20" />
        <attribute key="absorbPercentIce" value="-10" />
        <attribute key="showattributes" value="1" />
    </item>
    <item id="7891" name="magma boots">
        <attribute key="weight" value="750" />
        <attribute key="armor" value="2" />
        <attribute key="absorbPercentFire" value="5" />
        <attribute key="absorbPercentIce" value="-5" />
        <attribute key="slotType" value="feet" />
    </item>
    <item id="7892" name="glacier shoes">
        <attribute key="weight" value="750" />
        <attribute key="armor" value="2" />
        <attribute key="absorbPercentIce" value="5" />
        <attribute key="absorbPercentEnergy" value="-5" />
        <attribute key="slotType" value="feet" />
    </item>
    <item id="7893" name="lightning boots">
        <attribute key="weight" value="750" />
        <attribute key="armor" value="2" />
        <attribute key="absorbPercentEnergy" value="5" />
        <attribute key="absorbPercentEarth" value="-5" />
        <attribute key="slotType" value="feet" />
    </item>
    <item id="7894" name="magma legs">
        <attribute key="weight" value="1900" />
        <attribute key="armor" value="8" />
        <attribute key="absorbPercentFire" value="6" />
        <attribute key="absorbPercentIce" value="-6" />
        <attribute key="slotType" value="legs" />
    </item>
    <item id="7895" name="lightning legs">
        <attribute key="weight" value="1900" />
        <attribute key="armor" value="8" />
        <attribute key="absorbPercentEnergy" value="6" />
        <attribute key="absorbPercentEarth" value="-6" />
        <attribute key="slotType" value="legs" />
    </item>
    <item id="7896" name="glacier kilt">
        <attribute key="weight" value="1900" />
        <attribute key="armor" value="8" />
        <attribute key="slotType" value="legs" />
        <attribute key="absorbPercentIce" value="6" />
        <attribute key="absorbPercentEnergy" value="-6" />
    </item>
    <item id="7897" article="a" name="glacier robe">
        <attribute key="weight" value="2250" />
        <attribute key="armor" value="11" />
        <attribute key="slotType" value="body" />
        <attribute key="absorbPercentIce" value="8" />
        <attribute key="absorbPercentEnergy" value="-8" />
    </item>
    <item id="7898" article="a" name="lightning robe">
        <attribute key="weight" value="2250" />
        <attribute key="armor" value="11" />
        <attribute key="absorbPercentEnergy" value="8" />
        <attribute key="absorbPercentEarth" value="-8" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="7899" article="a" name="magma coat">
        <attribute key="weight" value="2250" />
        <attribute key="armor" value="11" />
        <attribute key="absorbPercentFire" value="8" />
        <attribute key="absorbPercentIce" value="-8" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="7900" article="a" name="magma monocle">
        <attribute key="weight" value="1000" />
        <attribute key="armor" value="5" />
        <attribute key="slotType" value="head" />
        <attribute key="absorbPercentFire" value="4" />
        <attribute key="absorbPercentIce" value="-4" />
    </item>
    <item id="7901" article="a" name="lightning headband">
        <attribute key="weight" value="100" />
        <attribute key="armor" value="5" />
        <attribute key="slotType" value="head" />
        <attribute key="absorbPercentEnergy" value="4" />
        <attribute key="absorbPercentEarth" value="-4" />
    </item>
    <item id="7902" article="a" name="glacier mask">
        <attribute key="weight" value="1000" />
        <attribute key="armor" value="5" />
        <attribute key="slotType" value="head" />
        <attribute key="absorbPercentIce" value="4" />
        <attribute key="absorbPercentEnergy" value="-4" />
    </item>
    <item id="7903" article="a" name="terra hood">
        <attribute key="weight" value="1000" />
        <attribute key="armor" value="5" />
        <attribute key="slotType" value="head" />
        <attribute key="absorbPercentFire" value="-4" />
        <attribute key="absorbPercentEarth" value="4" />
    </item>
    <item id="7904" article="a" name="furniture package">
        <attribute key="description" value="It contains a modification kit for a green bed." />
        <attribute key="weight" value="3500" />
    </item>
    <item id="7905" article="a" name="furniture package">
        <attribute key="description" value="It contains a modification kit for a red bed." />
        <attribute key="weight" value="3500" />
    </item>
    <item id="7906" article="a" name="furniture package">
        <attribute key="description" value="It contains a modification kit for a yellow bed." />
        <attribute key="weight" value="3500" />
    </item>
    <item id="7907" article="a" name="furniture package">
        <attribute key="description" value="It will remove your modification bed." />
        <attribute key="weight" value="3500" />
    </item>
    <item id="7908" article="a" name="dead troll">
        <attribute key="weight" value="60000" />
        <attribute key="containerSize" value="10" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="7909" article="a" name="walnut" plural="walnuts">
        <attribute key="weight" value="10" />
    </item>
    <item id="7910" article="a" name="peanut" plural="peanuts">
        <attribute key="weight" value="10" />
    </item>
    <item fromid="7911" toid="7918" article="a" name="machine" />
    <item id="7919" article="a" name="globe" />
    <item fromid="7920" toid="7923" article="a" name="picture" />
    <item id="7924" name="stone stairs">
        <attribute key="floorchange" value="southEx" />
    </item>
    <item id="7925" name="stone stairs">
        <attribute key="floorchange" value="eastEx" />
    </item>
    <item id="7926" article="a" name="dead troll champion">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="7927" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="7927" article="a" name="dead troll champion">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="7928" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="7928" article="a" name="dead troll">
        <attribute key="decayTo" value="7929" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7929" article="a" name="dead troll">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="7930" article="a" name="dead island troll">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="7931" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="7931" article="a" name="dead island troll">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="7928" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="7932" article="a" name="burried hole" />
    <item id="7933" article="a" name="hole">
        <attribute key="floorchange" value="down" />
        <attribute key="decayTo" value="7932" />
        <attribute key="duration" value="600" />
    </item>
    <item id="7934" article="a" name="test-tube holder" />
    <item id="7935" article="a" name="potion stand" />
    <item id="7936" article="a" name="coal basin" />
    <item id="7938" article="a" name="weaved hole">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="7939" article="a" name="mining helmet">
        <attribute key="weight" value="700" />
        <attribute key="armor" value="1" />
        <attribute key="slotType" value="head" />
    </item>
    <item id="7940" name="cave entrance">
        <attribute key="floorchange" value="west" />
    </item>
    <item fromid="7943" toid="7954" name="shallow water">
        <attribute key="fluidSource" value="water" />
    </item>
    <item id="7955" article="a" name="parcel" />
    <item id="7956" article="a" name="waterball" />
    <item id="7957" article="a" name="jester hat">
        <attribute key="weight" value="1000" />
        <attribute key="armor" value="1" />
        <attribute key="slotType" value="head" />
    </item>
    <item id="7958" article="a" name="jester staff">
        <attribute key="weight" value="725" />
        <attribute key="weaponType" value="club" />
    </item>
    <item id="7959" article="the" name="fireflanz">
        <attribute key="weight" value="1000" />
    </item>
    <item id="7960" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a tree stump." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="7961" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a cuckoo clock." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="7962" article="a" name="furniture package">
        <attribute key="description" value="It is a kit for a telescope." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="7963" article="a" name="shark fish" />
    <item id="7966" article="a" name="birthday cake" />
    <item id="7969" article="a" name="dead frost dragon hatchling">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="7970" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="7970" article="a" name="dead frost dragon hatchling">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="7971" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="7971" article="a" name="dead frost dragon hatchling">
        <attribute key="decayTo" value="7627" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item fromid="7975" toid="7976" name="earth" />
    <item fromid="7977" toid="7986" name="sparkling gems" />
    <item fromid="7987" toid="8008" name="earth" />
    <item fromid="8009" toid="8010" article="a" name="bone" />
    <item fromid="8011" toid="8014" article="a" name="flowery wall" />
    <item id="8015" name="earth" />
    <item fromid="8017" toid="8020" name="earth" />
    <item fromid="8021" toid="8028" name="rifty earth" />
    <item fromid="8030" toid="8032" name="rifty earth" />
    <item fromid="8033" toid="8045" name="sand" />
    <item fromid="8048" toid="8057" name="earth" />
    <item id="8058" name="purple fire" />
    <item id="8059" article="a" name="grave" />
    <item id="8062" name="poisonous gas" />
    <item id="8072" article="a" name="small yellow pillow" />
    <item id="8075" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="0" />
    </item>
    <item id="8076" article="a" name="bed">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="3" />
        <attribute key="transformTo" value="1761" />
    </item>
    <item id="8077" article="a" name="hammock">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="0" />
        <attribute key="transformTo" value="3837" />
    </item>
    <item id="8078" article="a" name="hammock">
        <attribute key="type" value="bed" />
        <attribute key="partnerDirection" value="3" />
        <attribute key="transformTo" value="3839" />
    </item>
    <item id="8109" name="some special leaves">
        <attribute key="weight" value="80" />
        <attribute key="description" value="They have an aromatic smell." />
    </item>
    <item id="8110" article="a" name="present">
        <attribute key="weight" value="600" />
    </item>
    <item id="8111" article="a" name="exploding cookie" plural="exploding cookies">
        <attribute key="weight" value="10" />
    </item>
    <item id="8112" article="a" name="scarab cheese">
        <attribute key="description" value="It smells horrible and should not be in the sun for too long." />
        <attribute key="weight" value="400" />
    </item>
    <item fromid="8117" toid="8133" name="earth" />
    <item fromid="8135" toid="8138" name="earth" />
    <item id="8139" article="a" name="snowy pine tree" />
    <item fromid="8168" toid="8169" name="earth" />
    <item id="8170" article="a" name="trapdoor">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="8174" article="a" name="lava wall" />
    <item id="8175" article="a" name="staw mat">
        <attribute key="description" value="Someone is sleeping there." />
    </item>
    <item id="8182" name="fighting spirit">
        <attribute key="weight" value="600" />
        <attribute key="description" value="It contains pure fighting spirit." />
    </item>
    <item id="8187" article="a" name="magical watch">
        <attribute key="weight" value="50" />
    </item>
    <item id="8189" article="a" name="poem scroll">
        <attribute key="weight" value="120" />
        <attribute key="description" value="It contains a love poem, written by an unknown elven poet." />
    </item>
    <item id="8190" article="a" name="spellbook" />
    <item id="8194" article="a" name="birthday cake" />
    <item fromid="8202" toid="8203" name="cave entrance">
        <attribute key="floorchange" value="north" />
    </item>
    <item id="8204" name="easily inflammable sulphur">
        <attribute key="weight" value="50" />
    </item>
    <item id="8205" article="a" name="flask with paint">
        <attribute key="weight" value="180" />
    </item>
    <item id="8208" article="an" name="ice cream cone">
        <attribute key="weight" value="100" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="120" />
    </item>
    <item id="8210" name="cave entrance">
        <attribute key="floorchange" value="north" />
    </item>
    <item fromid="8211" toid="8213" name="cave entrance">
        <attribute key="floorchange" value="west" />
    </item>
    <item fromid="8233" toid="8236" name="dragon head" />
    <item fromid="8237" toid="8239" name="jagged stones" />
    <item fromid="8242" toid="8248" article="an" name="archway" />
    <item fromid="8249" toid="8256" article="a" name="hole">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="8257" name="grass" />
    <item id="8258" name="rocks" />
    <item id="8260" name="rock" />
    <item fromid="8262" toid="8265" article="a" name="piece of broken amulet">
        <attribute key="weight" value="100" />
    </item>
    <item id="8266" name="koshei's ancient amulet">
        <attribute key="description" value="The effects of this amulet are unknown." />
        <attribute key="weight" value="500" />
        <attribute key="slotType" value="necklace" />
        <attribute key="absorbPercentDeath" value="8" />
        <attribute key="absorbPercentHoly" value="-50" />
        <attribute key="showattributes" value="1" />
    </item>
    <item id="8268" article="a" name="sun dial" />
    <item id="8269" article="a" name="slain lich">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="8271" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="8271" article="a" name="slain lich">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="8272" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="8272" article="a" name="slain lich">
        <attribute key="decayTo" value="8273" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="8273" article="a" name="slain lich">
        <attribute key="decayTo" value="8274" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="8274" article="a" name="slain lich">
        <attribute key="decayTo" value="0" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="8275" article="a" name="void" />
    <item fromid="8276" toid="8277" article="a" name="trapdoor">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="8278" article="a" name="rope spot" />
    <item id="8279" article="a" name="trapdoor">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="8280" name="stairs">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="8281" article="a" name="trapdoor">
        <attribute key="floorchange" value="down" />
    </item>
    <item fromid="8282" toid="8283" name="stairs">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="8284" article="a" name="trapdoor">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="8285" name="stairs">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="8286" article="a" name="trapdoor">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="8287" name="wooden flooring" />
    <item fromid="8288" toid="8291" article="a" name="demon oak" />
    <item id="8292" name="mud" />
    <item id="8293" article="a" name="hallowed axe">
        <attribute key="weight" value="4000" />
    </item>
    <item fromid="8294" toid="8295" article="a" name="stone wall" />
    <item id="8298" name="natural soil">
        <attribute key="weight" value="250" />
    </item>
    <item id="8299" name="glimmering soil">
        <attribute key="weight" value="250" />
    </item>
    <item id="8300" article="a" name="flawless ice crystal">
        <attribute key="weight" value="250" />
    </item>
    <item id="8301" name="fine sulphur">
        <attribute key="description" value="It has been extracted from an inactive lava hole." />
        <attribute key="weight" value="50" />
    </item>
    <item id="8302" name="iced soil">
        <attribute key="weight" value="250" />
    </item>
    <item id="8303" name="energy soil">
        <attribute key="weight" value="250" />
    </item>
    <item id="8304" name="eternal flames">
        <attribute key="weight" value="250" />
    </item>
    <item id="8305" name="mother soil">
        <attribute key="weight" value="250" />
    </item>
    <item id="8306" name="pure energy">
        <attribute key="weight" value="100" />
    </item>
    <item id="8307" name="slain sea serpent">
        <attribute key="weight" value="60000" />
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="8308" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="8308" name="slain sea serpent">
        <attribute key="weight" value="55000" />
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="8311" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="blood" />
        <attribute key="fluidSource" value="blood" />
    </item>
    <item id="8309" article="a" name=".nail" plural=".nails">
        <attribute key="weight" value="1" />
    </item>
    <item id="8310" name="neutral matter">
        <attribute key="weight" value="250" />
    </item>
    <item id="8311" name="slain sea serpent">
        <attribute key="weight" value="45000" />
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="8312" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="8312" name="slain sea serpent">
        <attribute key="weight" value="30000" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
    </item>
    <item id="8313" article="a" name="birch" />
    <item id="8314" article="a" name="bare pine" />
    <item fromid="8315" toid="8322" article="a" name="sand dune" />
    <item id="8323" article="a" name="hole">
        <attribute key="floorchange" value="down" />
    </item>
    <item fromid="8324" toid="8325" article="a" name="sand dune" />
    <item fromid="8326" toid="8334" name="dried grass" />
    <item fromid="8335" toid="8346" name="sand" />
    <item fromid="8347" toid="8360" name="dried grass" />
    <item fromid="8362" toid="8364" name="earth" />
    <item id="8365" name="rifty earth" />
    <item fromid="8366" toid="8367" name="earth" />
    <item id="8369" name="earth" />
    <item id="8370" article="a" name="secret letter">
        <attribute key="weight" value="50" />
    </item>
    <item id="8371" name="earth" />
    <item id="8372" name="stairs">
        <attribute key="floorchange" value="east" />
    </item>
    <item id="8373" name="stairs" />
    <item id="8374" name="stairs">
        <attribute key="floorchange" value="west" />
    </item>
    <item id="8375" name="stairs" />
    <item id="8376" name="stairs">
        <attribute key="floorchange" value="south" />
    </item>
    <item id="8377" name="stairs" />
    <item id="8378" name="stairs">
        <attribute key="floorchange" value="north" />
    </item>
    <item id="8379" name="stairs" />
    <item id="8380" article="a" name="tunnel entrance">
        <attribute key="floorchange" value="down" />
    </item>
    <item fromid="8381" toid="8385" article="a" name="tunnel entrance" />
    <item fromid="8386" toid="8415" name="skeletal remains" />
    <item fromid="8416" toid="8417" name="sand" />
    <item fromid="8418" toid="8421" article="a" name="knight statue" />
    <item id="8422" article="a" name="druid statue" />
    <item id="8423" name="brown pavement" />
    <item id="8424" name="earth" />
    <item fromid="8425" toid="8431" name="brown pavement" />
    <item fromid="8432" toid="8434" name="earth" />
    <item fromid="8435" toid="8446" name="cracked earth" />
    <item fromid="8447" toid="8458" name="earth" />
    <item id="8459" article="a" name="strange statue" />
    <item fromid="8460" toid="8471" name="earth" />
    <item id="8472" article="a" name="great spirit potion">
        <attribute key="weight" value="220" />
        <attribute key="description" value="This potion can only be consumed by paladins of level 80 or higher." />
    </item>
    <item id="8473" article="an" name="ultimate health potion">
        <attribute key="weight" value="220" />
        <attribute key="description" value="This potion can only be consumed by knights of level 130 or higher." />
    </item>
    <item id="8474" article="an" name="antidote" plural="antidotes">
        <attribute key="description" value="This cures you from a debuff ailment." />
    </item>
    <item fromid="8475" toid="8517" article="a" name="stone wall" />
    <item fromid="8518" toid="8525" article="a" name="decorated stone wall" />
    <item fromid="8526" toid="8533" article="a" name="gem" />
    <item fromid="8534" toid="8537" article="a" name="buttress" />
    <item fromid="8538" toid="8540" article="a" name="stone pillar" />
    <item fromid="8541" toid="8542" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="8543" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item fromid="8544" toid="8545" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="8546" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="8547" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="8548" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="8549" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="8550" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="8551" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="8552" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="8553" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="8554" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="8555" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="8556" article="an" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item id="8557" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="8558" article="an" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item fromid="8559" toid="8566" name="stairs">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="8567" article="a" name="hole">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="8568" name="sand" />
    <item id="8569" name="rock" />
    <item id="8570" name="ice" />
    <item id="8571" article="an" name="ice block" />
    <item id="8572" article="a" name="mushroom" />
    <item id="8573" article="a" name="magma hole">
        <attribute key="decayTo" value="8575" />
        <attribute key="duration" value="15" />
    </item>
    <item id="8574" article="an" name="ice sculpture" />
    <item id="8575" article="a" name="magma hole" />
    <item id="8577" />
    <item id="8578" name="grass" />
    <item id="8579" article="a" name="hole" />
    <item id="8580" article="a" name="grate" />
    <item id="8581" article="a" name="wooden cart" />
    <item id="8582" article="a" name="branch" />
    <item id="8583" article="a" name="dead tree" />
    <item id="8584" name="jerom's family necklace">
        <attribute key="weight" value="630" />
    </item>
    <item id="8585" article="a" name="hole">
        <attribute key="floorchange" value="down" />
        <attribute key="decayTo" value="8579" />
        <attribute key="duration" value="600" />
    </item>
    <item id="8586" name="dirt" />
    <item id="8587" article="a" name="sturdy chest">
        <attribute key="containerSize" value="8" />
    </item>
    <item fromid="8588" toid="8589" name="skeletal remains" />
    <item id="8590" article="a" name="stone tile" />
    <item id="8591" name="grass" />
    <item id="8592" article="a" name="rope spot" />
    <item id="8593" article="a" name="dead cockroach">
        <attribute key="weight" value="60000" />
        <attribute key="containerSize" value="8" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="90" />
        <attribute key="corpseType" value="venom" />
        <attribute key="fluidSource" value="slime" />
    </item>
    <item id="8594" name="dirt" />
    <item id="8595" name="stairs">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="8596" article="a" name="trapdoor">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="8597" name="wooden flooring" />
    <item id="8598" name="stone flooring" />
    <item id="8599" article="a" name="ladder" />
    <item id="8600" article="a" name="branch" />
    <item id="8601" article="a" name="steel axe">
        <attribute key="weight" value="4100" />
        <attribute key="defense" value="10" />
        <attribute key="attack" value="21" />
        <attribute key="weaponType" value="axe" />
    </item>
    <item id="8602" article="a" name="jagged sword">
        <attribute key="weight" value="1800" />
        <attribute key="defense" value="14" />
        <attribute key="attack" value="21" />
        <attribute key="weaponType" value="sword" />
        <attribute key="extradef" value="1" />
    </item>
    <item fromid="8603" toid="8604" article="a" name="mill" />
    <item fromid="8605" toid="8612" article="a" name="brick wall" />
    <item id="8613" article="a" name="bricklayers' kit">
        <attribute key="weight" value="1800" />
    </item>
    <item id="8614" article="a" name="tusk" plural="tusks">
        <attribute key="weight" value="200" />
    </item>
    <item fromid="8615" toid="8616" article="a" name="dwarven statue" />
    <item fromid="8625" toid="8626" article="a" name="dwarven statue" />
    <item id="8631" article="a" name="lava wall" />
    <item id="8632" article="a" name="whirlpool" />
    <item fromid="8633" toid="8636" article="a" name="large crystal" />
    <item fromid="8637" toid="8640" name="crystal" />
    <item fromid="8641" toid="8642" article="a" name="crucible" />
    <item fromid="8643" toid="8648" article="a" name="mould" />
    <item fromid="8649" toid="8668" name="steaming hot lava" />
    <item fromid="8669" toid="8670" article="a" name="bellow" />
    <item id="8671" article="an" name="anzil" />
    <item fromid="8672" toid="8673" name="steaming hot lava" />
    <item fromid="8674" toid="8677" article="a" name="muzzle" />
    <item fromid="8678" toid="8683" name="tool parts" />
    <item fromid="8684" toid="8687" article="a" name="furnace" />
    <item id="8688" article="a" name="furnace">
        <attribute key="rotateTo" value="8690" />
    </item>
    <item id="8689" article="a" name="furnace">
        <attribute key="rotateTo" value="8691" />
    </item>
    <item id="8690" article="a" name="furnace">
        <attribute key="rotateTo" value="8688" />
    </item>
    <item id="8691" article="a" name="furnace">
        <attribute key="rotateTo" value="8689" />
    </item>
    <item id="8692" article="a" name="heavy package">
        <attribute key="description" value="It is a kit for a furnace." />
        <attribute key="weight" value="60000" />
    </item>
    <item id="8693" article="a" name="furniture package">
        <attribute key="description" value="It is empty." />
        <attribute key="weight" value="2500" />
    </item>
    <item id="8696" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="8697" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="8698" article="a" name="golden trophy" />
    <item id="8699" article="the" name="mona lisa picture">
        <attribute key="weight" value="2500" />
    </item>
    <item id="8701" article="an" name="ancient parchment" />
    <item id="8700" article="a" name="bounty poster" />
    <item id="8702" article="a" name="the witches' grimoire">
        <attribute key="weight" value="1300" />
    </item>
    <item id="8703" article="a" name="coffin" />
    <item id="8704" article="a" name="small health potion">
        <attribute key="weight" value="175" />
    </item>
    <item id="8707" article="your" name="student book">
        <attribute key="description" value="Write down important notes in here." />
        <attribute key="weight" value="900" />
    </item>
    <item id="8709" name="stairs">
        <attribute key="floorchange" value="west" />
    </item>
    <item id="8710" article="a" name="cockroach leg" plural="cockroach legs">
        <attribute key="weight" value="10" />
        <attribute key="description" value="This is proof for Santiago that you have killed a cockroach." />
    </item>
    <item id="8711" article="a" name="glowing shovel">
        <attribute key="weight" value="3500" />
    </item>
    <item id="8712" article="a" name="glowing rope">
        <attribute key="weight" value="1800" />
    </item>
    <item id="8713" article="a" name="glowing fish">
        <attribute key="weight" value="520" />
        <attribute key="showcount" value="0" />
    </item>
    <item id="8715" name="stairs">
        <attribute key="floorchange" value="west" />
    </item>
    <item id="8716" name="stairs">
        <attribute key="floorchange" value="southEx" />
    </item>
    <item id="8717" article="a" name="pocket tool" plural="pocket tools" />
    <item fromid="8728" toid="8729" article="a" name="wagon" />
    <item id="8730" article="a" name="wagon handle" />
    <item fromid="8731" toid="8732" article="a" name="wagon" />
    <item id="8733" article="a" name="wagon handle" />
    <item fromid="8734" toid="8737" article="a" name="covered wagon" />
    <item fromid="8738" toid="8739" article="a" name="covered wagon handle" />
    <item fromid="8740" toid="8743" article="a" name="pile of rocks" />
    <item fromid="8744" toid="8747" article="a" name="bundle of logs" />
    <item fromid="8748" toid="8751" article="a" name="pile of rubble" />
    <item id="8752" article="a" name="the ring of the count">
        <attribute key="weight" value="75" />
        <attribute key="slotType" value="ring" />
    </item>
    <item id="8753" article="a" name="magic barrier">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="60" />
    </item>
    <item id="8754" article="an" name="energy barrier">
        <attribute key="decayTo" value="8753" />
        <attribute key="duration" value="45" />
    </item>
    <item id="8755" article="a" name="fire barrier">
        <attribute key="decayTo" value="8753" />
        <attribute key="duration" value="45" />
    </item>
    <item id="8756" article="an" name="energy barrier">
        <attribute key="decayTo" value="8754" />
        <attribute key="duration" value="45" />
    </item>
    <item id="8757" article="a" name="fire barrier">
        <attribute key="decayTo" value="8755" />
        <attribute key="duration" value="45" />
    </item>
    <item id="8758" article="an" name="energy barrier">
        <attribute key="decayTo" value="8756" />
        <attribute key="duration" value="45" />
    </item>
    <item id="8759" article="a" name="fire barrier">
        <attribute key="decayTo" value="8757" />
        <attribute key="duration" value="45" />
    </item>
    <item id="8760" article="a" name="blue vase">
        <attribute key="weight" value="1800" />
    </item>
    <item id="8761" article="an" name="invitation">
        <attribute key="weight" value="10" />
        <attribute key="description" value="It is the invitation to the king's ball." />
    </item>
    <item id="8769" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item fromid="8770" toid="8776" article="a" name="demon oak" />
    <item fromid="8777" toid="8778" article="a" name="sorcerer statue" />
    <item fromid="8779" toid="8780" article="a" name="statue">
        <attribute key="description" value="Nothing is written on it." />
    </item>
    <item fromid="8781" toid="8784" article="a" name="caged wagon" />
    <item fromid="8785" toid="8791" article="a" name="damaged tree" />
    <item fromid="8792" toid="8796" article="a" name="damaged palm tree" />
    <item id="8797" article="a" name="palm tree stump" />
    <item fromid="8798" toid="8818" article="a" name="dead tree" />
    <item id="8819" article="a" name="magician's robe">
        <attribute key="armor" value="6" />
        <attribute key="slotType" value="body" />
        <attribute key="weight" value="2500" />
        <attribute key="description" value="This robe feels soft and light as a feather." />
    </item>
    <item id="8820" article="a" name="mage hat">
        <attribute key="weight" value="750" />
        <attribute key="armor" value="1" />
        <attribute key="slotType" value="head" />
    </item>
    <item id="8821" article="a" name="witchhunter's cloak">
        <attribute key="weight" value="2500" />
        <attribute key="armor" value="11" />
        <attribute key="absorbPercentDeath" value="2" />
        <attribute key="absorbPercentHoly" value="-2" />
        <attribute key="slotType" value="body" />
    </item>
    <item fromid="8822" toid="8823" />
    <item fromid="8824" toid="8833" name="sparkling gems" />
    <item fromid="8834" toid="8835" article="a" name="sorcerer statue">
        <attribute key="description" value="Nothing is written on it." />
    </item>
    <item fromid="8836" toid="8837" article="a" name="guardian statue">
        <attribute key="description" value="Nothing is written on it." />
    </item>
    <item id="8838" name="potato" plural="potatoes">
        <attribute key="weight" value="150" />
        <attribute key="showcount" value="0" />
    </item>
    <item id="8839" name="plum" plural="plums">
        <attribute key="weight" value="130" />
        <attribute key="showcount" value="0" />
    </item>
    <item id="8840" name="raspberry" plural="raspberries">
        <attribute key="weight" value="020" />
        <attribute key="showcount" value="0" />
    </item>
    <item id="8841" name="lemon" plural="lemons">
        <attribute key="weight" value="020" />
        <attribute key="showcount" value="0" />
    </item>
    <item id="8842" name="cucumber" plural="cucumbers">
        <attribute key="weight" value="200" />
        <attribute key="showcount" value="0" />
    </item>
    <item id="8843" name="onion" plural="onions">
        <attribute key="weight" value="100" />
        <attribute key="showcount" value="0" />
    </item>
    <item id="8844" name="jalapeno pepper" plural="jalapeno peppers">
        <attribute key="weight" value="200" />
        <attribute key="showcount" value="0" />
    </item>
    <item id="8845" name="beetroot" plural="beetroots">
        <attribute key="weight" value="130" />
        <attribute key="showcount" value="0" />
    </item>
    <item id="8846" name="lump of chocolate dough" plural="lumps of chocolate dough">
        <attribute key="weight" value="500" />
        <attribute key="showcount" value="0" />
    </item>
    <item id="8847" name="chocolate cake" plural="chocolate cakes">
        <attribute key="weight" value="500" />
        <attribute key="showcount" value="0" />
    </item>
    <item id="8848" article="a" name="baking tray">
        <attribute key="description" value="There is cookie dough on it." />
        <attribute key="weight" value="1200" />
    </item>
    <item id="8849" article="a" name="modified crossbow">
        <attribute key="weight" value="3500" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="weaponType" value="distance" />
        <attribute key="ammoType" value="bolt" />
        <attribute key="range" value="5" />
        <attribute key="hitChance" value="1" />
    </item>
    <item id="8850" article="a" name="chain bolter">
        <attribute key="weight" value="5500" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="weaponType" value="distance" />
        <attribute key="ammoType" value="bolt" />
        <attribute key="range" value="3" />
        <attribute key="attack" value="8" />
    </item>
    <item id="8851" article="a" name="royal crossbow">
        <attribute key="weight" value="12000" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="weaponType" value="distance" />
        <attribute key="ammoType" value="bolt" />
        <attribute key="range" value="6" />
        <attribute key="hitChance" value="3" />
        <attribute key="attack" value="5" />
    </item>
    <item id="8852" article="the" name="devileye">
        <attribute key="weight" value="5500" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="weaponType" value="distance" />
        <attribute key="ammoType" value="bolt" />
        <attribute key="range" value="6" />
        <attribute key="hitChance" value="-20" />
        <attribute key="attack" value="20" />
    </item>
    <item id="8853" article="the" name="ironworker">
        <attribute key="weight" value="5500" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="weaponType" value="distance" />
        <attribute key="ammoType" value="bolt" />
        <attribute key="range" value="5" />
        <attribute key="attack" value="4" />
    </item>
    <item id="8854" article="a" name="warsinger bow">
        <attribute key="weight" value="4500" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="weaponType" value="distance" />
        <attribute key="ammoType" value="arrow" />
        <attribute key="range" value="7" />
        <attribute key="hitChance" value="5" />
        <attribute key="attack" value="3" />
    </item>
    <item id="8855" article="a" name="composite hornbow">
        <attribute key="weight" value="5200" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="weaponType" value="distance" />
        <attribute key="ammoType" value="arrow" />
        <attribute key="range" value="6" />
        <attribute key="hitChance" value="2" />
        <attribute key="attack" value="3" />
    </item>
    <item id="8856" article="a" name="yol's bow">
        <attribute key="weight" value="3500" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="weaponType" value="distance" />
        <attribute key="ammoType" value="arrow" />
        <attribute key="range" value="7" />
        <attribute key="hitChance" value="7" />
    </item>
    <item id="8857" article="a" name="silkweaver bow">
        <attribute key="weight" value="2200" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="weaponType" value="distance" />
        <attribute key="ammoType" value="arrow" />
        <attribute key="range" value="6" />
        <attribute key="hitChance" value="3" />
    </item>
    <item id="8858" article="a" name="elethriel's elemental bow">
        <attribute key="weight" value="4400" />
        <attribute key="slotType" value="two-handed" />
        <attribute key="weaponType" value="distance" />
        <attribute key="ammoType" value="arrow" />
        <attribute key="range" value="4" />
        <attribute key="attack" value="7" />
    </item>
    <item fromid="8859" toid="8864" />
    <item id="8865" article="a" name="dark lord's cape">
        <attribute key="weight" value="2900" />
        <attribute key="armor" value="11" />
        <attribute key="absorbPercentDeath" value="8" />
        <attribute key="absorbPercentHoly" value="-8" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="8866" article="a" name="serpent coat">
        <attribute key="weight" value="2850" />
        <attribute key="armor" value="12" />
        <attribute key="absorbPercentIce" value="12" />
        <attribute key="absorbPercentEnergy" value="-12" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="8867" article="a" name="dragon robe">
        <attribute key="weight" value="2850" />
        <attribute key="armor" value="12" />
        <attribute key="absorbPercentFire" value="12" />
        <attribute key="absorbPercentIce" value="-12" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="8868" article="a" name="velvet mantle">
        <attribute key="weight" value="2850" />
        <attribute key="armor" value="12" />
        <attribute key="absorbPercentEnergy" value="12" />
        <attribute key="absorbPercentEarth" value="-12" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="8869" article="a" name="greenwood coat">
        <attribute key="weight" value="2850" />
        <attribute key="armor" value="12" />
        <attribute key="absorbPercentEarth" value="12" />
        <attribute key="absorbPercentEnergy" value="-12" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="8870" article="a" name="spirit cloak">
        <attribute key="armor" value="8" />
        <attribute key="slotType" value="body" />
        <attribute key="weight" value="2650" />
        <attribute key="magiclevelpoints" value="1" />
    </item>
    <item id="8871" article="a" name="focus cape">
        <attribute key="weight" value="2100" />
        <attribute key="armor" value="9" />
        <attribute key="slotType" value="body" />
        <attribute key="magiclevelpoints" value="1" />
    </item>
    <item id="8872" article="a" name="belted cape">
        <attribute key="weight" value="3500" />
        <attribute key="armor" value="10" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="8873" article="a" name="hibiscus dress">
        <attribute key="weight" value="1900" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="8874" article="a" name="summer dress">
        <attribute key="weight" value="1000" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="8875" article="a" name="tunic">
        <attribute key="weight" value="1500" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="8876" article="a" name="girl's dress">
        <attribute key="weight" value="1300" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="8877" article="a" name="lavos armor">
        <attribute key="weight" value="8500" />
        <attribute key="armor" value="13" />
        <attribute key="absorbPercentFire" value="3" />
        <attribute key="absorbPercentIce" value="-3" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="8878" article="a" name="crystalline armor">
        <attribute key="weight" value="8450" />
        <attribute key="armor" value="13" />
        <attribute key="absorbPercentIce" value="3" />
        <attribute key="absorbPercentEnergy" value="-3" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="8879" article="a" name="voltage armor">
        <attribute key="weight" value="8450" />
        <attribute key="armor" value="13" />
        <attribute key="absorbPercentEnergy" value="3" />
        <attribute key="absorbPercentEarth" value="-3" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="8880" article="a" name="swamplair armor">
        <attribute key="weight" value="8450" />
        <attribute key="armor" value="13" />
        <attribute key="absorbPercentEarth" value="3" />
        <attribute key="absorbPercentFire" value="-3" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="8881" article="a" name="fireborn giant armor">
        <attribute key="weight" value="12000" />
        <attribute key="armor" value="15" />
        <attribute key="absorbPercentFire" value="5" />
        <attribute key="absorbPercentIce" value="-5" />
        <attribute key="skillSword" value="2" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="8882" article="an" name="earthborn titan armor">
        <attribute key="weight" value="12000" />
        <attribute key="armor" value="15" />
        <attribute key="absorbPercentEarth" value="5" />
        <attribute key="absorbPercentFire" value="-5" />
        <attribute key="skillAxe" value="2" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="8883" article="a" name="windborn colossus armor">
        <attribute key="weight" value="12000" />
        <attribute key="armor" value="15" />
        <attribute key="absorbPercentEnergy" value="5" />
        <attribute key="absorbPercentEarth" value="-5" />
        <attribute key="skillClub" value="2" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="8884" article="an" name="oceanborn leviathan armor">
        <attribute key="weight" value="10000" />
        <attribute key="armor" value="15" />
        <attribute key="absorbPercentIce" value="5" />
        <attribute key="absorbPercentEnergy" value="-5" />
        <attribute key="slotType" value="body" />
        <attribute key="skillShield" value="1" />
    </item>
    <item id="8885" article="a" name="divine plate">
        <attribute key="armor" value="13" />
        <attribute key="slotType" value="body" />
        <attribute key="weight" value="7500" />
        <attribute key="absorbPercentDeath" value="10" />
        <attribute key="absorbPercentHoly" value="-10" />
    </item>
    <item id="8886" article="a" name="molten plate">
        <attribute key="armor" value="13" />
        <attribute key="slotType" value="body" />
        <attribute key="weight" value="7500" />
        <attribute key="absorbPercentFire" value="7" />
        <attribute key="absorbPercentIce" value="-7" />
    </item>
    <item id="8887" article="a" name="frozen plate">
        <attribute key="armor" value="13" />
        <attribute key="slotType" value="body" />
        <attribute key="weight" value="7500" />
        <attribute key="absorbPercentIce" value="7" />
        <attribute key="absorbPercentEnergy" value="-7" />
    </item>
    <item id="8888" article="a" name="master archer's armor">
        <attribute key="armor" value="15" />
        <attribute key="slotType" value="body" />
        <attribute key="weight" value="6900" />
        <attribute key="skillDist" value="3" />
    </item>
    <item id="8889" article="a" name="skullcracker armor">
        <attribute key="weight" value="11000" />
        <attribute key="armor" value="14" />
        <attribute key="absorbPercentDeath" value="5" />
        <attribute key="absorbPercentHoly" value="-5" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="8890" article="a" name="robe of the underworld">
        <attribute key="armor" value="12" />
        <attribute key="slotType" value="body" />
        <attribute key="weight" value="1900" />
        <attribute key="absorbPercentDeath" value="12" />
        <attribute key="absorbPercentHoly" value="-12" />
    </item>
    <item id="8891" article="a" name="paladin armor">
        <attribute key="armor" value="12" />
        <attribute key="slotType" value="body" />
        <attribute key="weight" value="6500" />
        <attribute key="skillDist" value="2" />
    </item>
    <item id="8892" article="an" name="ethno coat">
        <attribute key="armor" value="7" />
        <attribute key="slotType" value="body" />
        <attribute key="weight" value="2550" />
        <attribute key="magiclevelpoints" value="1" />
    </item>
    <item fromid="8893" toid="8899" />
    <item id="8900" article="a" name="spellbook of enlightenment">
        <attribute key="description" value="It shows your spells and can also shield against attack when worn." />
        <attribute key="weight" value="4500" />
        <attribute key="magiclevelpoints" value="1" />
        <attribute key="defense" value="18" />
        <attribute key="weaponType" value="shield" />
    </item>
    <item id="8901" article="a" name="spellbook of warding">
        <attribute key="description" value="It shows your spells and can also shield against attack when worn." />
        <attribute key="weight" value="4500" />
        <attribute key="magiclevelpoints" value="1" />
        <attribute key="defense" value="22" />
        <attribute key="weaponType" value="shield" />
    </item>
    <item id="8902" article="a" name="spellbook of mind control">
        <attribute key="description" value="It shows your spells and can also shield against attack when worn." />
        <attribute key="weight" value="4500" />
        <attribute key="magiclevelpoints" value="2" />
        <attribute key="defense" value="16" />
        <attribute key="weaponType" value="shield" />
    </item>
    <item id="8903" article="a" name="spellbook of lost souls">
        <attribute key="description" value="It shows your spells and can also shield against attack when worn." />
        <attribute key="weight" value="4650" />
        <attribute key="magiclevelpoints" value="2" />
        <attribute key="defense" value="20" />
        <attribute key="weaponType" value="shield" />
    </item>
    <item id="8904" article="a" name="spellscroll of prophecies">
        <attribute key="description" value="It shows your spells and can also shield against attack when worn." />
        <attribute key="weight" value="2850" />
        <attribute key="magiclevelpoints" value="3" />
        <attribute key="defense" value="12" />
        <attribute key="weaponType" value="shield" />
    </item>
    <item id="8905" article="a" name="rainbow shield">
        <attribute key="description" value="Strange elemental magic flows over this shield." />
        <attribute key="weight" value="6900" />
        <attribute key="defense" value="30" />
        <attribute key="weaponType" value="shield" />
    </item>
    <item id="8906" article="a" name="fiery rainbow shield">
        <attribute key="description" value="It has been temporarily imbued with fire magic and boosts your shielding skill." />
        <attribute key="weight" value="6900" />
        <attribute key="defense" value="36" />
        <attribute key="weaponType" value="shield" />
        <attribute key="duration" value="1200" />
        <attribute key="decayTo" value="8905" />
        <attribute key="skillShield" value="3" />
    </item>
    <item id="8907" article="an" name="icy rainbow shield">
        <attribute key="description" value="It has been temporarily imbued with ice magic and has a greatly increased shielding value." />
        <attribute key="weight" value="6900" />
        <attribute key="defense" value="39" />
        <attribute key="weaponType" value="shield" />
        <attribute key="duration" value="1200" />
        <attribute key="decayTo" value="8905" />
    </item>
    <item id="8908" article="a" name="sparking rainbow shield">
        <attribute key="description" value="It has been temporarily imbued with energy magic and increases your speed." />
        <attribute key="weight" value="6900" />
        <attribute key="defense" value="36" />
        <attribute key="weaponType" value="shield" />
        <attribute key="duration" value="1200" />
        <attribute key="decayTo" value="8905" />
        <attribute key="speed" value="20" />
    </item>
    <item id="8909" article="a" name="terran rainbow shield">
        <attribute key="description" value="It has been temporarily imbued with earth magic and boosts your regeneration." />
        <attribute key="weight" value="6900" />
        <attribute key="defense" value="37" />
        <attribute key="weaponType" value="shield" />
        <attribute key="duration" value="1200" />
        <attribute key="decayTo" value="8905" />
        <attribute key="healthGain" value="1" />
        <attribute key="healthTicks" value="3000" />
        <attribute key="manaGain" value="4" />
        <attribute key="manaTicks" value="3000" />
    </item>
    <item id="8910" article="an" name="underworld rod">
        <attribute key="weight" value="2900" />
        <attribute key="weaponType" value="wand" />
        <attribute key="shootType" value="death" />
        <attribute key="range" value="3" />
    </item>
    <item id="8911" article="a" name="northwind rod">
        <attribute key="weight" value="2900" />
        <attribute key="weaponType" value="wand" />
        <attribute key="shootType" value="ice" />
        <attribute key="range" value="3" />
    </item>
    <item id="8912" article="a" name="springsprout rod">
        <attribute key="weight" value="2700" />
        <attribute key="weaponType" value="wand" />
        <attribute key="shootType" value="earth" />
        <attribute key="range" value="3" />
    </item>
    <item fromid="8913" toid="8917" />
    <item id="8918" article="a" name="spellbook of dark mysteries">
        <attribute key="description" value="It shows your spells and can also shield against attack when worn." />
        <attribute key="weight" value="2850" />
        <attribute key="magiclevelpoints" value="3" />
        <attribute key="defense" value="16" />
        <attribute key="weaponType" value="shield" />
    </item>
    <item id="8919" article="a" name="spell rune">
        <attribute key="description" value="It is Yandur's healing rune. You can't remove it from his house, but you may use it." />
    </item>
    <item id="8920" article="a" name="wand of starstorm">
        <attribute key="description" value="It is sparkling with universal energy." />
        <attribute key="weight" value="2550" />
        <attribute key="weaponType" value="wand" />
        <attribute key="shootType" value="energy" />
        <attribute key="range" value="3" />
    </item>
    <item id="8921" article="a" name="wand of draconia">
        <attribute key="description" value="This wand holds the spirit and soul of a dragon lord." />
        <attribute key="weight" value="2700" />
        <attribute key="weaponType" value="wand" />
        <attribute key="shootType" value="fire" />
        <attribute key="range" value="3" />
    </item>
    <item id="8922" article="a" name="wand of voodoo">
        <attribute key="description" value="It is filled with the dark hatred and rage of a tormented demonic being." />
        <attribute key="weight" value="2850" />
        <attribute key="weaponType" value="wand" />
        <attribute key="shootType" value="death" />
        <attribute key="range" value="3" />
    </item>
    <item id="8923" name="ranger legs">
        <attribute key="weight" value="3500" />
        <attribute key="armor" value="4" />
        <attribute key="slotType" value="legs" />
    </item>
    <item id="8924" article="a" name="hellforged axe">
        <attribute key="weight" value="8800" />
        <attribute key="defense" value="28" />
        <attribute key="attack" value="51" />
        <attribute key="weaponType" value="axe" />
        <attribute key="extradef" value="2" />
    </item>
    <item id="8925" article="a" name="solar axe">
        <attribute key="weight" value="11000" />
        <attribute key="defense" value="29" />
        <attribute key="attack" value="52" />
        <attribute key="weaponType" value="axe" />
        <attribute key="extradef" value="3" />
    </item>
    <item id="8926" article="a" name="demonwing axe">
        <attribute key="weight" value="12000" />
        <attribute key="defense" value="20" />
        <attribute key="attack" value="53" />
        <attribute key="weaponType" value="axe" />
        <attribute key="slotType" value="two-handed" />
    </item>
    <item id="8927" article="a" name="dark trinity mace">
        <attribute key="weight" value="9900" />
        <attribute key="defense" value="32" />
        <attribute key="attack" value="51" />
        <attribute key="weaponType" value="club" />
        <attribute key="extradef" value="-1" />
    </item>
    <item id="8928" article="an" name="obsidian truncheon">
        <attribute key="weight" value="6500" />
        <attribute key="defense" value="30" />
        <attribute key="attack" value="50" />
        <attribute key="weaponType" value="club" />
        <attribute key="extradef" value="2" />
    </item>
    <item id="8929" article="the" name="stomper">
        <attribute key="weight" value="11500" />
        <attribute key="defense" value="20" />
        <attribute key="attack" value="51" />
        <attribute key="weaponType" value="club" />
        <attribute key="slotType" value="two-handed" />
    </item>
    <item id="8930" article="an" name="emerald sword">
        <attribute key="weight" value="4100" />
        <attribute key="defense" value="33" />
        <attribute key="attack" value="49" />
        <attribute key="weaponType" value="sword" />
        <attribute key="extradef" value="3" />
    </item>
    <item id="8931" article="a" name="flame blade">
        <attribute key="weight" value="6700" />
        <attribute key="defense" value="30" />
        <attribute key="attack" value="54" />
        <attribute key="weaponType" value="sword" />
        <attribute key="extradef" value="3" />
    </item>
    <item id="8932" article="the" name="calamity">
        <attribute key="weight" value="6800" />
        <attribute key="defense" value="35" />
        <attribute key="attack" value="51" />
        <attribute key="weaponType" value="sword" />
        <attribute key="slotType" value="two-handed" />
    </item>
    <item id="8933" article="a" name="slain earth elemental">
        <attribute key="weight" value="50000" />
        <attribute key="containerSize" value="8" />
        <attribute key="decayTo" value="8934" />
        <attribute key="duration" value="10" />
        <attribute key="corpseType" value="venom" />
    </item>
    <item id="8934" article="a" name="slain earth elemental">
        <attribute key="weight" value="40000" />
        <attribute key="containerSize" value="8" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="venom" />
    </item>
    <item id="8935" article="a" name="fainted yanma">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="8936" article="a" name="slain earth elemental">
        <attribute key="weight" value="20000" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
        <attribute key="corpseType" value="venom" />
    </item>
    <item id="8937" article="a" name="fainted xatu">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="8938" article="a" name="fainted aipom">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="8939" article="a" name="fainted ampharos">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="8940" article="a" name="slain count">
        <attribute key="weight" value="5000" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="8941" article="a" name="fainted ariados">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="8942" article="a" name="fainted azumarill">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="8943" article="a" name="fainted bayleef">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="8944" article="a" name="slain wyrm">
        <attribute key="weight" value="5000" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="8945" article="a" name="error">
    </item>
    <item id="8946" article="a" name="fainted bellossom">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="8947" article="a" name="fainted blissey">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="8948" article="a" name="fainted celebi">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="8949" article="a" name="fainted chikorita">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="8950" article="a" name="fainted chinchou">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="8951" article="a" name="fainted cleffa">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="8952" article="a" name="fainted corsola">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="8953" article="a" name="fainted crobat">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="8954" article="a" name="slain bog raider">
        <attribute key="weight" value="10000" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="venom" />
    </item>
    <item id="8955" article="a" name="fainted croconaw">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="8956" article="a" name="fainted cyndaquil">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="8957" article="a" name="fainted delibird">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="8958" article="a" name="fainted donphan">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="8959" article="a" name="white marble tile" />
    <item id="8960" article="a" name="fainted dunsparce">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="8961" article="a" name="slain halloween pumpkin">
        <attribute key="weight" value="30000" />
        <attribute key="containerSize" value="8" />
        <attribute key="decayTo" value="8962" />
        <attribute key="duration" value="900" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="8962" article="a" name="slain halloween pumpkin">
        <attribute key="weight" value="30000" />
        <attribute key="containerSize" value="8" />
        <attribute key="decayTo" value="8963" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="8963" article="a" name="slain halloween pumpkin">
        <attribute key="weight" value="30000" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="undead" />
    </item>
    <item id="8964" article="a" name="fainted elekid">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="8965" article="a" name="fainted entei">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="8966" article="a" name="fainted espeon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="8967" article="a" name="fainted feraligatr">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="8968" article="a" name="fainted flaaffy">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="8969" article="a" name="fainted forretress">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="8970" name="Santiago's piano" />
    <item id="8971" article="a" name="gland">
        <attribute key="description" value="It is the pheromone gland of a rotworm queen." />
        <attribute key="weight" value="50" />
        <attribute key="showcount" value="0" />
    </item>
    <item id="8972" article="a" name="hole">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="8973" name="buttress" />
    <item fromid="8974" toid="8975" article="a" name="oracle figurine">
        <attribute key="weight" value="800" />
    </item>
    <item id="8976" article="a" name="golden falcon">
        <attribute key="description" value="It is a token of honour granted only by TibiaBR." />
        <attribute key="weight" value="2000" />
    </item>
    <item id="8977" article="a" name="tibiacity encyclopedia">
        <attribute key="description" value="It contains all the knowledge of Tibia." />
        <attribute key="weight" value="1337" />
    </item>
    <item id="8978" article="a" name="key of numerous locks">
        <attribute key="description" value="It opens every locked forum thread." />
        <attribute key="weight" value="150" />
    </item>
    <item id="8979" article="the" name="tibiahispano emblem">
        <attribute key="description" value="Only a brave and true hero of TibiaHispano can possess it." />
        <attribute key="weight" value="500" />
    </item>
    <item id="8980" article="the" name="mexcalibur">
        <attribute key="description" value="Your name is carved on this mighty sword." />
        <attribute key="weight" value="1200" />
    </item>
    <item id="8981" />
    <item id="8982" article="a" name="norseman doll">
        <attribute key="description" value="It is given to the winners of Tibia Nordic competitions." />
        <attribute key="weight" value="1000" />
    </item>
    <item id="8983" article="a" name="heavily bound book">
        <attribute key="description" value="It contains the scribings of many knowledgeable Tibians." />
        <attribute key="weight" value="7800" />
    </item>
    <item id="8984" />
    <item id="8985" article="a" name="norseman doll">
        <attribute key="description" value="It is given to the winners of Tibia Nordic competitions." />
        <attribute key="weight" value="1000" />
    </item>
    <item fromid="8986" toid="8993" />
    <item fromid="8994" toid="8997" article="a" name="dwarven contraption" />
    <item fromid="8998" toid="8999" article="a" name="large blackboard" />
    <item fromid="9000" toid="9001" article="a" name="dead tree" />
    <item id="9002" article="a" name="tibiacity encyclopedia">
        <attribute key="description" value="It contains all the knowledge of Tibia." />
        <attribute key="weight" value="1337" />
    </item>
    <item id="9003" article="a" name="golden falcon">
        <attribute key="description" value="It is a token of honour granted only by TibiaBR." />
        <attribute key="weight" value="2000" />
    </item>
    <item id="9004" article="a" name="Vip On">
        <attribute key="description" value="De use nesse item para ganhar 30 dias de Vip." />
        <attribute key="weight" value="0" />
    </item>
    <item fromid="9005" toid="9008" />
    <item id="9009" article="a" name="fainted furret">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item fromid="9010" toid="9018" />
    <item id="9019" article="a" name="vampire doll">
        <attribute key="weight" value="940" />
    </item>
    <item id="9020" article="a" name="vampire lord token">
        <attribute key="description" value="It is proof that you have killed a vampire lord." />
        <attribute key="weight" value="5" />
    </item>
    <item fromid="9021" toid="9024" name="dirt" />
    <item id="9025" name="muddy floor" />
    <item fromid="9026" toid="9042" name="earth" />
    <item fromid="9043" toid="9058" name="grass" />
    <item id="9059" name="sand" />
    <item id="9060" />
    <item id="9061" name="framework wall" />
    <item fromid="9062" toid="9066" name="wooden wall" />
    <item id="9067" name="wooden floor" />
    <item fromid="9068" toid="9072" name="frozen mud" />
    <item id="9081" article="a" name="fainted girafarig">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9083" article="a" name="fainted gligar">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9084" article="an" name="iron pillar" />
    <item id="9085" article="an" name="iron construction" />
    <item id="9107" article="a" name="fainted granbull">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item fromid="9118" toid="9133" article="a" name="stone wall" />
    <item fromid="9135" toid="9139" article="a" name="stone wall" />
    <item fromid="9142" toid="9143" article="a" name="stone wall" />
    <item id="9141" article="a" name="blood crystal ">
        <attribute key="description" value="It has the power to store magic energy." />
        <attribute key="weight" value="890" />
    </item>
    <item fromid="9144" toid="9146" name="white marble floor" />
    <item fromid="9159" toid="9164" article="an" name="archway" />
    <item fromid="9165" toid="9166" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="9167" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item fromid="9168" toid="9169" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="9170" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="9171" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="9172" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="9173" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="9174" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="9175" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="9176" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="9177" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="9178" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="9179" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="9180" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item id="9181" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="9182" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item fromid="9183" toid="9186" article="a" name="stone wall" />
    <item fromid="9192" toid="9206" name="iron floor" />
    <item fromid="9224" toid="9232" article="a" name="wooden floor" />
    <item fromid="9235" toid="9238" article="a" name="sun clock" />
    <item fromid="9239" toid="9240" article="a" name="vampire bride statue" />
    <item id="9241" article="a" name="vampire lord statue" />
    <item fromid="9249" toid="9250" name="golden ornament" />
    <item fromid="9252" toid="9262" name="copper pipes" />
    <item fromid="9267" toid="9268" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="9269" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item fromid="9270" toid="9271" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="9272" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="9273" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="9274" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="9275" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="9276" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="9277" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="9278" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="9279" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="9280" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="9281" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="9282" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item id="9283" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="9284" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item fromid="9307" toid="9319" name="golden ornament" />
    <item fromid="9320" toid="9326" article="an" name="archway" />
    <item id="9330" name="copper pipes" />
    <item fromid="9333" toid="9334" name="slime" />
    <item fromid="9337" toid="9340" article="a" name="golden ornament" />
    <item fromid="9343" toid="9346" article="a" name="copper pipes" />
    <item fromid="9347" toid="9348" article="a" name="copper wheel" />
    <item fromid="9349" toid="9350" article="a" name="boiler" />
    <item fromid="9351" toid="9352" article="a" name="copper pipe" />
    <item fromid="9353" toid="9368" article="a" name="golden ornament" />
    <item fromid="9387" toid="9392" article="a" name="stone railing" />
    <item fromid="9393" toid="9399" article="a" name="small tower" />
    <item fromid="9405" toid="9414" article="a" name="stone wall" />
    <item fromid="9419" toid="9422" article="a" name="stone pile" />
    <item fromid="9424" toid="9433" article="a" name="tapestry" />
    <item id="9434" article="a" name="stone wall" />
    <item fromid="9435" toid="9438" article="a" name="heavy wooden chair" />
    <item fromid="9449" toid="9459" article="a" name="tapestry" />
    <item fromid="9471" toid="9486" article="a" name="gate" />
    <item id="9531" article="a" name="mechanism" />
    <item id="9534" article="a" name="mechanism" />

    <item id="9562" article="the" name="Entrance for PVP on Time Red">
        <attribute key="weight" value="0" />
    </item>
    <item id="9563" article="the" name="Entrance for PVP on Time Blue">
        <attribute key="weight" value="0" />
    </item>

    <item fromid="9564" toid="9565" article="a" name="large gem" />
    <item fromid="9567" toid="9568" name="small gems" />
    <item fromid="9569" toid="9570" name="wooden floor" />
    <item id="9573" name="corkscrew stairs">
        <attribute key="floorchange" value="north" />
    </item>
    <item id="9574" name="corkscrew stairs">
        <attribute key="floorchange" value="down" />
    </item>
    <item fromid="9575" toid="9582" article="a" name="street lamp" />
    <item fromid="9588" toid="9595" article="a" name="large well" />
    <item id="9596" article="a" name="stone pedestal" />
    <item fromid="9597" toid="9599" article="a" name="statue" />
    <item id="9606" name="stairs">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="9624" name="closed trapdoor" />
    <item id="9625" name="open trapdoor">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="9633" article="the" name="dust of arthei">
        <attribute key="weight" value="100" />
    </item>
    <item id="9634" article="the" name="dust of boreth">
        <attribute key="weight" value="100" />
    </item>
    <item id="9635" article="the" name="dust of lersatio">
        <attribute key="weight" value="100" />
    </item>
    <item id="9636" article="the" name="dust of marziel">
        <attribute key="weight" value="100" />
    </item>
    <item id="9654" article="a" name="fainted heracross">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9655" article="a" name="wooden pole" />
    <item id="9658" article="a" name="fainted hitmontop">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9659" article="a" name="slain vampire bride">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="9660" article="a" name="fainted ho-oh">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9662" article="a" name="ghost's tear">
        <attribute key="weight" value="1000" />
    </item>
    <item id="9690" article="a" name="gear wheel">
        <attribute key="weight" value="5" />
    </item>
    <item id="9693" article="a" name="jester doll">
        <attribute key="weight" value="1200" />
    </item>
    <item id="9694" article="the" name="head of a jester doll">
        <attribute key="weight" value="400" />
    </item>
    <item id="9695" article="the" name="torso of a jester doll">
        <attribute key="weight" value="400" />
    </item>
    <item id="9696" article="the" name="part of a jester doll">
        <attribute key="weight" value="100" />
        <attribute key="description" value="It seems to be the left arm." />
    </item>
    <item id="9697" article="the" name="part of a jester doll">
        <attribute key="weight" value="100" />
        <attribute key="description" value="It seems to be the right arm." />
    </item>
    <item id="9698" article="the" name="part of a jester doll">
        <attribute key="weight" value="100" />
        <attribute key="description" value="It seems to be the left leg." />
    </item>
    <item id="9699" article="the" name="part of a jester doll">
        <attribute key="weight" value="100" />
        <attribute key="description" value="It seems to be the right leg." />
    </item>
    <item fromid="9708" toid="9713" name="burnt wall" />
    <item fromid="9729" toid="9730" article="a" name="small window" />
    <item id="9745" article="a" name="box ramp">
        <attribute key="floorchange" value="north" />
    </item>
    <item id="9746" article="a" name="box ramp">
        <attribute key="floorchange" value="west" />
    </item>
    <item fromid="9747" toid="9750" article="a" name="lit wall lamp" />
    <item fromid="9751" toid="9752" article="a" name="statue" />
    <item fromid="9759" toid="9766" article="a" name="roof" />
    <item fromid="9768" toid="9769" article="a" name="street lamp" />
    <item fromid="9770" toid="9771" article="a" name="wall lamp" />
    <item id="9774" article="a" name="fainted hoothoot">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9775" article="a" name="fainted hoppip">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9776" article="a" name="yalahari armor">
        <attribute key="weight" value="7000" />
        <attribute key="armor" value="16" />
        <attribute key="slotType" value="body" />
        <attribute key="absorbPercentDeath" value="3" />
    </item>
    <item id="9777" article="a" name="yalahari leg piece">
        <attribute key="weight" value="6500" />
        <attribute key="armor" value="8" />
        <attribute key="slotType" value="legs" />
        <attribute key="absorbPercentDeath" value="5" />
        <attribute key="skillDist" value="2" />
    </item>
    <item id="9778" article="a" name="yalahari mask">
        <attribute key="weight" value="3500" />
        <attribute key="armor" value="5" />
        <attribute key="slotType" value="head" />
        <attribute key="magiclevelpoints" value="2" />
    </item>
    <item id="9779" article="a" name="crystal column" />
    <item id="9780" article="a" name="fainted houndoom">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9781" article="a" name="fainted houndour">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9783" article="a" name="fainted igglybuff">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="17488" article="a" name="fainted shiny igglybuff">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9801" article="a" name="fainted jumpluff">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9802" article="a" name="fainted kingdra">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9803" article="a" name="fainted lanturn">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9804" article="a" name="dead worker golem">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="venom" />
    </item>
    <item fromid="9808" toid="9810" article="a" name="rusty armor">
        <attribute key="description" value="If you can remove the rust layer and dirt from the armor you will be able to see what it is." />
        <attribute key="weight" value="10000" />
        <attribute key="armor" value="1" />
        <attribute key="slotType" value="body" />
    </item>
    <item fromid="9811" toid="9813" article="a" name="rusty legs">
        <attribute key="description" value="If you can remove the rust layer and dirt from the legs you will be able to see what it is." />
        <attribute key="weight" value="2800" />
        <attribute key="armor" value="1" />
        <attribute key="slotType" value="legs" />
    </item>
    <item id="9823" article="a" name="fainted larvitar">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9824" article="a" name="fainted ledian">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item fromid="9825" toid="9828" article="a" name="lever" />
    <item id="9829" article="a" name="fainted ledyba">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9830" article="a" name="fainted lugia">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9831" article="a" name="fainted magby">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9832" article="a" name="dead mutated bat">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item fromid="9835" toid="9836" article="a" name="velvet tapestry">
        <attribute key="forceSerialize" value="1" />
    </item>
    <item id="9837" article="a" name="velvet tapestry">
        <attribute key="weight" value="1000" />
    </item>
    <item id="9846" name="corkscrew stairs">
        <attribute key="floorchange" value="down" />
    </item>
    <item id="9867" article="a" name="fainted magcargo">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9868" article="a" name="fainted mantine">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9869" article="a" name="fainted mareep">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9870" article="a" name="dead haunted treeling">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="venom" />
    </item>
    <item id="9871" article="a" name="fainted marill">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9872" article="a" name="fainted meganium">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9873" article="a" name="fainted miltank">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9874" article="a" name="dead mutated rat">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="9875" article="a" name="fainted misdreavus">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9876" article="a" name="fainted murkrow">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9877" article="a" name="fainted natu">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9878" article="a" name="slain zombie">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="9879" article="a" name="fainted noctowl">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9880" article="a" name="fainted octillery">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9881" article="a" name="fainted phanpy">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9882" article="a" name="fainted pichu">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9913" article="a" name="fainted piloswine">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9914" article="a" name="fainted pineco">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9915" article="a" name="fainted politoed">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9916" article="a" name="fainted porygon2">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9917" article="a" name="fainted pupitar">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9918" article="a" name="dead nightstalker">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="9919" article="a" name="fainted quagsire">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9920" article="a" name="fainted quilava">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9921" article="a" name="fainted qwilfish">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9922" article="a" name="fainted raikou">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9923" article="a" name="fainted remoraid">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9924" article="a" name="fainted shuckle">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9925" article="a" name="fainted scizor">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9926" article="a" name="dead hellspawn">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="9927" article="a" name="flower wreath">
        <attribute key="weight" value="500" />
    </item>
    <item id="9928" article="a" name="leaf legs">
        <attribute key="weight" value="1200" />
    </item>
    <item id="9929" article="a" name="flower dress">
        <attribute key="weight" value="1900" />
    </item>
    <item id="9930" article="a" name="rust remover">
        <attribute key="weight" value="250" />
    </item>
    <item id="9931" article="a" name="coconut shoes">
        <attribute key="weight" value="600" />
    </item>
    <item id="9932" article="a" name="firewalker boots">
        <attribute key="description" value="Wearing these boots reduces the damage gotten from fiery ground." />
        <attribute key="weight" value="950" />
        <attribute key="armor" value="2" />
        <attribute key="slotType" value="feet" />
        <attribute key="absorbPercentFire" value="90" />
        <attribute key="decayTo" value="10022" />
        <attribute key="transformDeEquipTo" value="9933" />
        <attribute key="duration" value="3600" />
        <attribute key="showduration" value="1" />
    </item>
    <item id="9933" article="a" name="firewalker boots">
        <attribute key="description" value="Wearing these boots reduces the damage gotten from fiery ground." />
        <attribute key="weight" value="950" />
        <attribute key="armor" value="2" />
        <attribute key="slotType" value="feet" />
        <attribute key="absorbPercentFire" value="90" />
        <attribute key="transformEquipTo" value="9932" />
        <attribute key="stopduration" value="1" />
        <attribute key="showduration" value="1" />
    </item>
    <item id="9934" article="an" name="old worn firewalker boots">
        <attribute key="description" value="They can be recharged with an enchanted ruby." />
        <attribute key="weight" value="950" />
    </item>
    <item id="9935" article="a" name="fainted sentret">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9936" article="a" name="fainted skarmory">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9937" article="a" name="fainted skiploom">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9938" article="a" name="fainted slowking">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9941" article="a" name="crystal of focus">
        <attribute key="description" value="It is said to increase your ability to concentrate and make the right decisions." />
        <attribute key="weight" value="800" />
    </item>
    <item id="9942" article="a" name="crystal of balance">
        <attribute key="description" value="It is said to to make your calmer and less afflicted by anger and anxiety." />
        <attribute key="weight" value="850" />
    </item>
    <item fromid="9948" toid="9949" article="a" name="dracoyle statue">
        <attribute key="description" value="This rare treasure is said to protect its owner from misery and curses." />
        <attribute key="weight" value="1500" />
    </item>
    <item fromid="9953" toid="9954" article="a" name="dracoyle statue">
        <attribute key="description" value="This rare treasure is said to protect its owner from misery and curses." />
        <attribute key="weight" value="1500" />
    </item>
    <item id="9955" article="a" name="vampiric crest">
        <attribute key="description" value="This crest seems important. You shouldn't lose it." />
        <attribute key="weight" value="500" />
    </item>
    <item id="9956" article="a" name="magical torch">
        <attribute key="description" value="You have a day to light all important locations before the torch stops burning." />
        <attribute key="weight" value="1500" />
        <attribute key="defense" value="25" />
        <attribute key="speed" value="50" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="3600" />
        <attribute key="showduration" value="1" />
    </item>
    <item id="9960" article="a" name="fainted slugma">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9961" article="a" name="fainted smeargle">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9962" article="a" name="fainted smoochum">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9963" article="a" name="fainted sneasel">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9964" article="a" name="fainted snubbull">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9965" article="a" name="fainted spinarak">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="9966" article="a" name="glob of mercury">
        <attribute key="weight" value="10" />
    </item>
    <item id="9967" article="a" name="glob of acid slime">
        <attribute key="weight" value="10" />
    </item>
    <item id="9968" article="a" name="glob of tar">
        <attribute key="weight" value="10" />
    </item>
    <item id="9969" article="a" name="black skull">
        <attribute key="weight" value="2400" />
    </item>
    <item id="9970" article="a" name="small topaz">
        <attribute key="weight" value="10" />
    </item>
    <item id="9971" article="a" name="gold ingot">
        <attribute key="weight" value="1800" />
    </item>
    <item id="9976" article="a" name="crystal pedestal">
        <attribute key="weight" value="4000" />
        <attribute key="decayTo" value="9977" />
        <attribute key="duration" value="15" />
    </item>
    <item id="9977" article="a" name="crystal pedestal">
        <attribute key="weight" value="4000" />
        <attribute key="decayTo" value="9978" />
        <attribute key="duration" value="10" />
    </item>
    <item id="9978" article="a" name="crystal pedestal">
        <attribute key="weight" value="4000" />
        <attribute key="decayTo" value="9979" />
        <attribute key="duration" value="11" />
    </item>
    <item id="9979" article="a" name="crystal pedestal">
        <attribute key="weight" value="4000" />
        <attribute key="decayTo" value="9976" />
        <attribute key="duration" value="9" />
    </item>
    <item id="9980" article="a" name="crystal of power">
        <attribute key="description" value="It is said to make you more resistant to weaknesses and to supply you with energy." />
        <attribute key="weight" value="850" />
    </item>
    <item id="9992" article="a" name="rotworm stew">
        <attribute key="description" value="It's hot, beefy and delicious. The perfect food for knights." />
        <attribute key="weight" value="1200" />
    </item>
    <item id="9993" article="a" name="hydra tongue salad">
        <attribute key="description" value="Though the hydra tongue is commonly considered a pest plant it tastes surprisingly aromatic." />
        <attribute key="weight" value="550" />
    </item>
    <item id="9994" article="a" name="roasted dragon wings">
        <attribute key="description" value="You know why it's called 'dragon' when you feel the fire in your throat." />
        <attribute key="weight" value="850" />
    </item>
    <item id="9995" article="a" name="fried tropical terrorbird">
        <attribute key="description" value="It's the ideal snack for a beach barbecue." />
        <attribute key="weight" value="780" />
    </item>
    <item id="9996" article="a" name="banana chocolate shake">
        <attribute key="description" value="Sweetness." />
        <attribute key="weight" value="300" />
    </item>
    <item id="9997" article="a" name="veggie casserole">
        <attribute key="description" value="This one would be quite healthy if it wasn't for all the melted cheese on top." />
        <attribute key="weight" value="1100" />
    </item>
    <item id="9998" article="a" name="filled jalapeño peppers">
        <attribute key="description" value="The creamy cheese makes a great combination with spicy peppers." />
        <attribute key="weight" value="650" />
    </item>
    <item id="9999" article="a" name="blessed steak">
        <attribute key="description" value="It's nicely decorated with plums and pumpkin." />
        <attribute key="weight" value="950" />
    </item>
    <item id="10000" article="a" name="carrot cake">
        <attribute key="description" value="This spicy-sweet cake will probably put you into a sugar rush." />
        <attribute key="weight" value="680" />
    </item>
    <item id="10001" article="a" name="northern fishburger">
        <attribute key="description" value="It's only suited for those who like maritime food." />
        <attribute key="weight" value="460" />
    </item>
    <item id="10002" article="a" name="fainted stantler">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="10003" article="a" name="fainted steelix">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="10004" article="a" name="dead war golem">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="venom" />
    </item>
    <item id="10005" article="a" name="fainted sudowoodo">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="10007" article="a" name="fainted suicune">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="10008" article="a" name="fainted sunflora">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="10009" article="a" name="dead mutated human">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="10015" article="a" name="fainted sunkern">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="10016" article="a" name="batwing hat">
        <attribute key="weight" value="600" />
        <attribute key="armor" value="3" />
        <attribute key="slotType" value="head" />
        <attribute key="magiclevelpoints" value="1" />
    </item>
    <item id="10017" article="a" name="football" />
    <item id="10020" article="a" name="dragon claw">
        <attribute key="weight" value="1250" />
    </item>
    <item id="10021" article="a" name="pair of worn soft boots">
        <attribute key="description" value="Someone specialised in shoes might be able to repair them for you." />
        <attribute key="weight" value="800" />
    </item>
    <item id="10022" article="a" name="worn firewalker boots">
        <attribute key="description" value="They can be recharged with an enchanted ruby." />
        <attribute key="weight" value="950" />
    </item>
    <item id="10032" article="a" name="purple key">
        <attribute key="type" value="key" />
        <attribute key="weight" value="100" />
    </item>
    <item id="10035" article="a" name="ladder" />
    <item id="10038" article="a" name="crucible" />
    <item fromid="10039" toid="10040" article="a" name="bellow" />
    <item fromid="10041" toid="10043" article="a" name="crucible" />
    <item id="10066" article="a" name="dark essence">
        <attribute key="weight" value="260" />
    </item>
    <item id="10091" article="a" name="crystal key">
        <attribute key="type" value="key" />
        <attribute key="weight" value="100" />
    </item>
    <item id="10143" article="a" name="cherry blossom tree" />
    <item id="10150" article="a" name="cocktail glass">
        <attribute key="weight" value="2000" />
    </item>
    <item id="10151" article="a" name="golem part">
        <attribute key="weight" value="35" />
    </item>
    <item id="10153" article="a" name="golem disassembler">
        <attribute key="description" value="It looks suspiciously similar to a crowbar." />
        <attribute key="weight" value="1500" />
    </item>
    <item id="10156" article="a" name="dark essence" plural="dark essences">
        <attribute key="weight" value="260" />
    </item>
    <item id="10165" article="a" name="golem blueprint">
        <attribute key="weight" value="120" />
    </item>
    <item id="10169" article="a" name="elemental crystal">
        <attribute key="weight" value="320" />
    </item>
    <item id="10171" article="a" name="fainted swinub">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="10173" article="a" name="golem head">
        <attribute key="weight" value="3000" />
    </item>
    <item id="10176" name="dirt" />
    <item fromid="10177" toid="10187" article="a" name="limestone wall" />
    <item fromid="10188" toid="10189" article="a" name="broken limestone wall" />
    <item fromid="10190" toid="10191" article="a" name="limestone railing" />
    <item fromid="10192" toid="10193" article="a" name="stone wall" />
    <item id="10194" article="a" name="limestone railing" />
    <item fromid="10195" toid="10196" article="a" name="stone wall" />
    <item id="10197" article="a" name="limestone railing" />
    <item fromid="10198" toid="10203" article="a" name="limestone pillar" />
    <item fromid="10204" toid="10207" article="a" name="limestone wall" />
    <item id="10209" article="a" name="Carlin banner" />
    <item fromid="10210" toid="10212" article="a" name="limestone wall" />
    <item fromid="10213" toid="10217" article="a" name="limestone pedestal" />
    <item id="10218" article="an" name="amulet">
        <attribute key="weight" value="700" />
        <attribute key="slotType" value="necklace" />
        <attribute key="charges" value="5" />
        <attribute key="showcharges" value="1" />
    </item>
    <item id="10219" article="a" name="sacred tree amulet">
        <attribute key="description" value="Its leaves stretch out to cover your whole body if you receive earth damage." />
        <attribute key="weight" value="700" />
        <attribute key="slotType" value="necklace" />
        <attribute key="charges" value="5" />
        <attribute key="showcharges" value="1" />
        <attribute key="absorbPercentPhysical" value="60" />
        <attribute key="absorbPercentEarth" value="40" />
    </item>
    <item id="10220" article="a" name="leviathan's amulet">
        <attribute key="weight" value="700" />
        <attribute key="slotType" value="necklace" />
        <attribute key="charges" value="5" />
        <attribute key="showcharges" value="1" />
        <attribute key="absorbPercentPhysical" value="60" />
        <attribute key="absorbPercentIce" value="40" />
    </item>
    <item id="10221" article="a" name="shockwave amulet">
        <attribute key="description" value="It tickles your neck in a rather pleasant way and absorbs loads of damage." />
        <attribute key="weight" value="700" />
        <attribute key="slotType" value="necklace" />
        <attribute key="charges" value="5" />
        <attribute key="showcharges" value="1" />
        <attribute key="absorbPercentPhysical" value="60" />
        <attribute key="absorbPercentEnergy" value="40" />
    </item>
    <item id="10223" article="a" name="mechanical fishing rod">
        <attribute key="weight" value="920" />
    </item>
    <item id="10224" article="a" name="mechanical fish">
        <attribute key="weight" value="750" />
    </item>
    <item fromid="10226" toid="10248" article="a" name="framework wall" />
    <item fromid="10249" toid="10261" article="a" name="stone wall" />
    <item fromid="10264" toid="10265" article="a" name="framework window">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item fromid="10266" toid="10267" article="a" name="framework window">
        <attribute key="type" value="door" />
    </item>
    <item id="10268" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="10269" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="10270" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="10271" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="10272" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="10273" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="10274" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="10275" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="10276" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="10277" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="10278" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="10279" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="10280" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="10281" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="10282" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="10283" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item id="10284" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="10285" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item id="10291" article="a" name="odd hat">
        <attribute key="description" value="It has to be one of the fabled helmets of light." />
        <attribute key="weight" value="700" />
        <attribute key="armor" value="5" />
        <attribute key="slotType" value="head" />
    </item>
    <item id="10293" article="a" name="stale bread of ancientness">
        <attribute key="description" value="This bread is so old that it has become unbreakable and a formidable weapon." />
        <attribute key="weight" value="500" />
        <attribute key="defense" value="8" />
        <attribute key="attack" value="18" />
        <attribute key="weaponType" value="club" />
    </item>
    <item id="10296" article="a" name="heavy metal t-shirt">
        <attribute key="description" value="Oddly enough it is not made of metal at all, but years without washing grant it added protection." />
        <attribute key="weight" value="800" />
        <attribute key="armor" value="6" />
        <attribute key="slotType" value="body" />
    </item>
    <item id="10298" article="a" name="helmet of ultimate terror">
        <attribute key="description" value="There is evil inside." />
        <attribute key="weight" value="1250" />
        <attribute key="armor" value="3" />
        <attribute key="slotType" value="head" />
    </item>
    <item id="10309" article="a" name="claw of the noxious spawn">
        <attribute key="description" value="It's like a glove and you can't wear a ring on it. You are not sure if you should really put it on." />
        <attribute key="weight" value="500" />
    </item>
    <item id="10316" article="a" name="mighty helm of green sparks">
        <attribute key="description" value="This helmet spawns green stars. Awesome." />
        <attribute key="weight" value="4600" />
        <attribute key="armor" value="6" />
        <attribute key="slotType" value="head" />
    </item>
    <item fromid="10325" toid="10340" article="a" name="roof" />
    <item id="10344" article="a" name="stone ledge" />
    <item fromid="10345" toid="10346" article="a" name="pillar" />
    <item fromid="10349" toid="10354" article="a" name="statue" />
    <item fromid="10355" toid="10356" article="a" name="statue of Fafnar" />
    <item fromid="10365" toid="10368" article="a" name="goddess statue" />
    <item fromid="10369" toid="10372" article="a" name="sun emblem" />
    <item id="10383" article="a" name="Carlin banner" />
    <item id="10393" article="a" name="Carlin banner" />
    <item fromid="10398" toid="10404" name="pavement" />
    <item fromid="10405" toid="10416" article="a" name="wooden floor" />
    <item fromid="10417" toid="10428" name="pavement" />
    <item fromid="10429" toid="10430" article="a" name="Carlin shield" />
    <item fromid="10431" toid="10432" article="a" name="serpent shield" />
    <item fromid="10433" toid="10434" article="a" name="stone ledge" />
    <item id="10435" article="a" name="stone wall" />
    <item fromid="10436" toid="10440" article="a" name="stone pedestal" />
    <item fromid="10441" toid="10448" name="sand" />
    <item id="10454" article="a" name="headache pill">
        <attribute key="weight" value="20" />
    </item>
    <item id="10455" article="an" name="pigeon trophy">
        <attribute key="description" value="It's a symbol of peace handed out by Tibia ML." />
        <attribute key="weight" value="500" />
    </item>
    <item id="10468" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="10469" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="10470" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="10471" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="10472" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="10473" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="10474" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item id="10475" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="10476" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="10477" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="10478" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="10479" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="10480" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="10481" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="10482" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="10483" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item id="10484" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="10485" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item fromid="10486" toid="10487" article="a" name="limestone window" />
    <item fromid="10488" toid="10489" article="a" name="limestone window">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item fromid="10490" toid="10491" article="a" name="limestone window">
        <attribute key="type" value="door" />
    </item>
    <item fromid="10492" toid="10498" name="pavement" />
    <item id="10502" article="a" name="engraved wedding ring">
        <attribute key="weight" value="40" />
        <attribute key="slotType" value="ring" />
    </item>
    <item id="10503" article="a" name="wedding outfit box">
        <attribute key="weight" value="2500" />
    </item>
    <item id="10508" article="a" name="fainted teddiursa">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="10510" article="a" name="broken wedding ring">
        <attribute key="description" value="It is a memory of a lost love." />
        <attribute key="weight" value="40" />
        <attribute key="slotType" value="ring" />
    </item>
    <item fromid="10511" toid="10512" name="squeezing gear of girlpower">
        <attribute key="description" value="This nifty gadget can be used for many vital and less vital purposes. If it's not jammed, that is." />
        <attribute key="weight" value="300" />
    </item>
    <item fromid="10513" toid="10514" name="sneaky stabber of eliteness">
        <attribute key="description" value="This nifty gadget can be used for many vital and less vital purposes. If it's not jammed, that is." />
        <attribute key="weight" value="300" />
    </item>
    <item fromid="10515" toid="10516" name="whacking driller of fate">
        <attribute key="description" value="This nifty gadget can be used for many vital and less vital purposes. If it's not jammed, that is." />
        <attribute key="weight" value="300" />
    </item>
    <item id="10518" article="a" name="fainted togepi">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="10519" article="a" name="fainted togetic">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="10520" article="a" name="fainted totodile">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="10521" article="a" name="fainted typhlosion">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="10522" article="a" name="fainted tyranitar">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="10523" article="a" name="egg of the many">
        <attribute key="weight" value="5000" />
    </item>
    <item id="10524" article="a" name="fainted tyrogue">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="10525" article="a" name="fainted umbreon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="10526" article="a" name="fainted unown">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="10527" article="a" name="dead medusa">
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
    <item id="10529" article="a" name="sea serpent trophy">
        <attribute key="weight" value="500" />
    </item>
    <item id="10530" article="a" name="the famous golden bug">
        <attribute key="description" value="It's given to skilled discoverers of extra nasty bugs and to great scholars writing useful reports." />
        <attribute key="weight" value="1250" />
        <attribute key="writeable" value="1" />
        <attribute key="maxTextLen" value="64" />
    </item>
    <item id="10531" article="a" name="midnight shard">
        <attribute key="description" value="You read: Lucius might be interested in those shards." />
        <attribute key="weight" value="300" />
    </item>
    <item id="10532" article="a" name="telescope">
        <attribute key="rotateTo" value="2584" />
    </item>
    <item id="10533" article="a" name="telescope">
        <attribute key="rotateTo" value="2582" />
    </item>
    <item id="10534" article="a" name="telescope">
        <attribute key="rotateTo" value="2583" />
    </item>
    <item id="10535" article="a" name="telescope">
        <attribute key="rotateTo" value="2581" />
    </item>
    <item id="10538" article="a" name="fainted ursaring">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="10539" article="a" name="fainted wobbuffet">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="10542" article="a" name="golden lightbearer's trophy">
        <attribute key="description" value="You read: |PLAYERNAME| helped to keep the fire basins burning and is one of the lightbearers of |YEAR|" />
        <attribute key="weight" value="900" />
    </item>
    <item id="10543" article="a" name="silver lightbearer's trophy">
        <attribute key="description" value="You read: |PLAYERNAME| helped to keep the fire basins burning and is one of the lightbearers of |YEAR|" />
        <attribute key="weight" value="900" />
    </item>
    <item id="10547" article="a" name="scarab pincers" plural="scarab pincers">
        <attribute key="weight" value="280" />
    </item>
    <item id="10549" article="a" name="bloody pincer">
        <attribute key="weight" value="120" />
    </item>
    <item id="10550" article="a" name="cobra tongue">
        <attribute key="weight" value="75" />
    </item>
    <item id="10551" article="a" name="elvish talisman">
        <attribute key="weight" value="110" />
    </item>
    <item id="10552" article="a" name="fiery heart">
        <attribute key="weight" value="120" />
    </item>
    <item id="10553" article="a" name="hellhound slobber">
        <attribute key="weight" value="75" />
    </item>
    <item id="10554" article="a" name="cultish mask">
        <attribute key="weight" value="165" />
    </item>
    <item id="10555" article="a" name="cultish robe">
        <attribute key="weight" value="200" />
    </item>
    <item id="10556" article="a" name="poisonous slime">
        <attribute key="weight" value="80" />
    </item>
    <item id="10557" article="a" name="piece of scarab shell" plural="pieces of scarab shell">
        <attribute key="weight" value="142" />
    </item>
    <item id="10558" article="a" name="spookey blue eye">
        <attribute key="weight" value="86" />
    </item>
    <item id="10559" article="a" name="thorn">
        <attribute key="weight" value="120" />
    </item>
    <item id="10560" article="a" name="wyvern talisman">
        <attribute key="weight" value="225" />
    </item>
    <item id="10561" article="a" name="black hood">
        <attribute key="weight" value="175" />
    </item>
    <item id="10562" article="a" name="book of prayers" plural="books of prayers">
        <attribute key="weight" value="120" />
    </item>
    <item id="10563" article="a" name="demonic skeletal hand">
        <attribute key="weight" value="132" />
    </item>
    <item id="10564" article="a" name="frosty ear of a troll">
        <attribute key="weight" value="180" />
    </item>
    <item id="10565" article="a" name="gauze bandage">
        <attribute key="weight" value="97" />
    </item>
    <item id="10566" article="a" name="polar bear paw">
        <attribute key="weight" value="150" />
    </item>
    <item id="10567" article="a" name="scorpion tail">
        <attribute key="weight" value="120" />
    </item>
    <item id="10568" article="a" name="witch broom">
        <attribute key="weight" value="333" />
    </item>
    <item id="10569" name="witch hat">
        <attribute key="weight" value="780" />
        <attribute key="armor" value="3" />
        <attribute key="absorbPercentManaDrain" value="5" />
        <attribute key="slotType" value="head" />
    </item>
    <item id="10570" article="a" name="war crystal">
        <attribute key="weight" value="145" />
    </item>
    <item id="10571" article="a" name="gear crystal">
        <attribute key="weight" value="95" />
    </item>
    <item id="10572" article="a" name="broken gladiator shield">
        <attribute key="weight" value="640" />
    </item>
    <item id="10573" article="a" name="cyclops toe">
        <attribute key="weight" value="111" />
    </item>
    <item id="10574" article="a" name="frost giant pelt">
        <attribute key="weight" value="248" />
    </item>
    <item id="10575" article="a" name="half-eaten brain">
        <attribute key="weight" value="64" />
    </item>
    <item id="10576" article="a" name="mystical hourglass" plural="mystical hourglasses">
        <attribute key="weight" value="96" />
    </item>
    <item id="10577" article="a" name="frosty heart">
        <attribute key="weight" value="186" />
    </item>
    <item id="10578" article="a" name="mutated bat ear">
        <attribute key="weight" value="175" />
    </item>
    <item id="10579" article="a" name="piece of dead brain" plural="pieces of dead brain">
        <attribute key="weight" value="132" />
    </item>
    <item id="10580" article="a" name="piece of hellfire armor" plural="pieces of hellfire armor">
        <attribute key="weight" value="250" />
    </item>
    <item id="10581" article="a" name="wyrm scale">
        <attribute key="weight" value="180" />
    </item>
    <item id="10582" article="a" name="sea serpent scale">
        <attribute key="weight" value="150" />
    </item>
    <item id="10583" article="a" name="boggy dreads" plural="boggy's dreads">
        <attribute key="weight" value="169" />
    </item>
    <item id="10584" article="a" name="mutated rat tail">
        <attribute key="weight" value="143" />
    </item>
    <item id="10600" article="a" name="tattered piece of robe" plural="tattered pieces of robe">
        <attribute key="weight" value="70" />
    </item>
    <item id="10601" article="a" name="vampire teeth" plural="vampire's teeth">
        <attribute key="weight" value="50" />
    </item>
    <item id="10602" article="a" name="swamp grass" plural="swamp grass">
        <attribute key="weight" value="169" />
    </item>
    <item id="10603" article="a" name="fainted wooper">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    <item id="10604" article="a" name="bundle of cursed straw" plural="bundles of cursed straw">
        <attribute key="weight" value="169" />
    </item>
    <item id="10605" article="a" name="bunch of troll hair" plural="bunches of troll hair">
        <attribute key="weight" value="85" />
    </item>
    <item id="10606" article="a" name="ghostly tissue">
        <attribute key="weight" value="50" />
    </item>
    <item id="10607" article="a" name="lion mane" plural="lion's mane">
        <attribute key="weight" value="180" />
    </item>
    <item id="10608" article="a" name="lump of dirt" plural="lumps of dirt">
        <attribute key="weight" value="68" />
    </item>
    <item id="10609" article="a" name="pig foot" plural="pig feet">
        <attribute key="weight" value="98" />
    </item>
    <item id="10610" article="a" name="snake skin">
        <attribute key="weight" value="100" />
    </item>
    <item id="10612" name="plans for a strange device">
        <attribute key="description" value="You should bring them to Spectulus in Edron." />
        <attribute key="weight" value="250" />
    </item>
    <item id="10613" name="rare crystal">
        <attribute key="description" value="An extremely rare crystal you recovered from the Lost Mines." />
        <attribute key="weight" value="180" />
    </item>
    <item id="10614" name="carrying device">
        <attribute key="description" value="The astronomer Spectulus gave you this device to safely transport the mirror crystal." />
        <attribute key="weight" value="3500" />
    </item>
    <item id="10615" name="filled carrying device">
        <attribute key="description" value="The special carrying device Spetulus gave you now contains a mirror crystal." />
        <attribute key="weight" value="3500" />
    </item>
    <item id="10774" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="10775" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="10776" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="10779" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="10780" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item id="10781" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="10782" article="a" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="10783" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>
    <item id="10784" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="10785" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item id="10788" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="10789" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>
    <item id="10790" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>
    <item id="10791" article="a" name="open door">
        <attribute key="type" value="door" />
    </item>
    <item fromid="11059" toid="11060" name="glowing switch" />
    <item fromid="11061" toid="11072" article="a" name="window" />
    <item id="11095" article="a" name="magic wall">
        <attribute key="type" value="magicfield" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="20" />
    </item>
    <item id="11096" article="a" name="rush wood">
        <attribute key="type" value="magicfield" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="45" />
    </item>
    <item id="11109" article="a" name="orc tooth" plural="orc teeth">
        <attribute key="weight" value="100" />
    </item>
    <item id="11111" name="tribal crest">
        <attribute key="description" value="This crest seems important. You shouldn't lose it." />
        <attribute key="weight" value="500" />
    </item>
    <item id="11112" name="serpent crest">
        <attribute key="description" value="This crest seems important. You shouldn't lose it." />
        <attribute key="weight" value="500" />
    </item>
    <item id="11113" name="crystal boots">
        <attribute key="slotType" value="feet" />
        <attribute key="weight" value="2250" />
    </item>
    <item id="11115" article="a" name="heart backpack">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="20" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="11117" article="a" name="stone stairs">
        <attribute key="floorchange" value="north" />
    </item>
    <item fromid="11123" toid="11126" name="dragon statue" />
    <item id="11128" name="tome of knowledge">
        <attribute key="description" value="Bring this encrypted book to a sage in Farmine to gain wisdom or unlock more of Zao's culture." />
        <attribute key="weight" value="1500" />
    </item>
    <item id="11130" name="crocodile steak">
        <attribute key="weight" value="440" />
    </item>
    <item id="11138" name="nightmare doll">
        <attribute key="weight" value="1800" />
    </item>

    <item fromid="11139" toid="11285" article="a" name="portrait">
        <attribute key="weight" value="0" />                 <!-- alterado v1.9 -->
        <attribute key="slotType" value="legs" />
    </item>

    <item fromid="11288" toid="11387" article="a" name="portrait">
        <attribute key="weight" value="0" />                 <!-- alterado v1.9 -->
        <attribute key="slotType" value="legs" />
    </item>

    <item id="11388" name="lucky clover amulet">
        <attribute key="description" value="It is rumoured to bring you good luck! Luck sponsored by TibiaLottery." />
        <attribute key="weight" value="150" />
        <attribute key="slotType" value="necklace" />
    </item>
    <item id="20001" name="water" />
    <item id="20002" name="blood" />
    <item id="20003" name="beer" />
    <item id="20004" name="slime" />
    <item id="20005" name="lemonade" />
    <item id="20006" name="milk" />
    <item id="20007" name="manafluid" />
    <item id="20010" name="lifefluid" />
    <item id="20011" name="oil" />
    <item id="20013" name="urine" />
    <item id="20014" name="coconut milk" />
    <item id="20015" name="wine" />
    <item id="20019" name="mud" />
    <item id="20021" name="fruit juice" />
    <item id="20026" name="lava" />
    <item id="20027" name="rum" />
    <item id="20028" name="swamp" />
    <item id="20035" name="tea" />
    <item id="11389" article="a" name="gym sign"/>
    <item fromid="11390" toid="11394" article="a" name="sign"/>
    <item id="11395" article="a" name="big black television">
        <attribute key="rotateTo" value="11396" />
    </item>
    <item id="11396" article="a" name="big black television">
        <attribute key="rotateTo" value="11395" />
    </item>
    <item id="11397" article="a" name="black plasma television">
        <attribute key="rotateTo" value="11398" />
    </item>
    <item id="11398" article="a" name="black plasma television">
        <attribute key="rotateTo" value="11397" />
    </item>
    <item id="11399" article="an" name="advanced computer"/>
    <item id="11400" article="a" name="pokemon trainer's statue"/>
    <item id="11401" article="a" name="wooden television">
        <attribute key="rotateTo" value="11402" />
    </item>
    <item id="11402" article="a" name="wooden television">
        <attribute key="rotateTo" value="11401" />
    </item>
    <item id="11403" article="a" name="black television">
        <attribute key="rotateTo" value="11404" />
    </item>

    <item id="11404" article="a" name="black television">
        <attribute key="rotateTo" value="11403" />
    </item>

    <item id="11405" article="a" name="white stove">
        <attribute key="rotateTo" value="11406" />
    </item>

    <item id="11406" article="a" name="white stove">
        <attribute key="rotateTo" value="11405" />
    </item>

    <item id="11407" article="a" name="black stove">
        <attribute key="rotateTo" value="11408" />
    </item>

    <item id="11408" article="a" name="black stove">
        <attribute key="rotateTo" value="11407" />
    </item>

    <item id="11409" article="a" name="modern black stove">
        <attribute key="rotateTo" value="11410" />
    </item>

    <item id="11410" article="a" name="modern black stove">
        <attribute key="rotateTo" value="11409" />
    </item>

    <item fromid="11411" toid="11414" article="a" name="fossil collection">
        <attribute key="description" value="These are some very old bones discovered by scientits and researchers. They are under study." />
    </item>

    <item id="11415" article="a" name="master ball under development">
        <attribute key="description" value="This ball is being developed to be able to catch any pokemon species without difficulty. It has not been finished yet." />
    </item>

    <item fromid="11416" toid="11418" article="a" name="public television">
        <attribute key="description" value="You can watch some channels for free." />
    </item>

    <item id="11419" article="a" name="marble wall"/>

    <item fromid="11420" toid="11421" article="a" name="casino slot machine">
        <attribute key="description" value="You can gamble in this machine if you place some casino coins here!" />
    </item>

    <item fromid="11422" toid="11425" article="a" name="wall lamp"/>
    <item id="11426" article="a" name="green tree"/>
    <item fromid="11427" toid="11429" article="a" name="meowth's balloon"/>
    <item fromid="11430" toid="11433" article="a" name="cubone's monument"/>
    <item fromid="11434" toid="11437" article="a" name="power generator"/>
    <item id="11438" article="a" name="street lamp"/>
    <item fromid="11439" toid="11440" name="mimic wall">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="11" />
    </item>

    <item id="11441" article="a" name="Leaf Stone">
        <attribute key="description" value="A peculiar stone that may cause some pokemon to evolve." />
    </item>

    <item id="11442" article="a" name="Water Stone">
        <attribute key="description" value="A peculiar stone that may cause some pokemon to evolve." />
    </item>

    <item id="11443" article="a" name="Venom Stone">
        <attribute key="description" value="A peculiar stone that may cause some pokemon to evolve." />
    </item>

    <item id="11444" article="a" name="Thunder Stone" plural="Thunder Stones">
        <attribute key="description" value="A peculiar stone that may cause some pokemon to evolve." />
    </item>

    <item id="11445" article="a" name="Rock Stone">
        <attribute key="description" value="A peculiar stone that may cause some pokemon to evolve." />
    </item>

    <item id="11446" article="a" name="Punch Stone">
        <attribute key="description" value="A peculiar stone that may cause some pokemon to evolve." />
    </item>

    <item id="11447" article="a" name="Fire Stone" plural="Fire Stones">
        <attribute key="description" value="A peculiar stone that may cause some pokemon to evolve." />
    </item>

    <item id="11448" article="a" name="Coccon Stone" plural="Coccon Stones">
        <attribute key="description" value="A peculiar stone that may cause some pokemon to evolve." />
    </item>

    <item id="11449" article="a" name="Crystal Stone" plural="Crystal Stones">
        <attribute key="description" value="A peculiar stone that may cause some pokemon to evolve." />
    </item>

    <item id="11450" article="a" name="Darkness Stone" plural="Darkness Stones">
        <attribute key="description" value="A peculiar stone that may cause some pokemon to evolve." />
    </item>

    <item id="11451" article="an" name="Earth Stone" plural="Earth Stones">
        <attribute key="description" value="A peculiar stone that may cause some pokemon to evolve." />
    </item>

    <item id="11452" article="an" name="Enigma Stone" plural="Enigma Stones">
        <attribute key="description" value="A peculiar stone that may cause some pokemon to evolve." />
    </item>

    <item id="11453" article="a" name="Heart Stone" plural="Hearth Stones">
        <attribute key="description" value="A peculiar stone that may cause some pokemon to evolve." />
    </item>

    <item id="11454" article="an" name="Ice Stone" plural="Ice Stones">
        <attribute key="description" value="A peculiar stone that may cause some pokemon to evolve." />
    </item>

    <item id="12232" article="a" name="Metal Stone" plural="Metal Stones">
        <attribute key="description" value="A peculiar object that may cause some pokemon to evolve." />
    </item>

    <item id="12242" article="a" name="Sun Stone" plural="Sun Stones">
        <attribute key="description" value="A peculiar stone that may cause some pokemon to evolve." />
    </item>

    <item id="12244" article="a" name="Ancient Stone" plural="Ancient Stones">
        <attribute key="description" value="A peculiar object that may cause some pokemon to evolve." />
    </item>

    <item id="12245" article="a" name="Magmarizer" plural="Magmarizers">
        <attribute key="description" value="A peculiar object that may cause some pokemon to evolve." />
    </item>

    <item id="12417" article="a" name="Dragon Scale" plural="Dragon Scales">
        <attribute key="description" value="A peculiar object that may cause some pokemon to evolve." />
    </item>

    <item id="12418" article="a" name="Soothe Bell" plural="Soothe Bells">
        <attribute key="description" value="A peculiar object that may cause some pokemon to evolve." />
    </item>

    <item id="12419" article="a" name="Up-Grade" plural="Up-Grade">
        <attribute key="description" value="A peculiar object that may cause some pokemon to evolve." />
    </item>

    <item id="11455" article="a" name="playstation 2">
        <attribute key="rotateTo" value="11456" />
    </item>

    <item id="11456" article="a" name="playstation 2">
        <attribute key="rotateTo" value="11455" />
    </item>

    <item id="11457" article="a" name="super nintendo">
        <attribute key="rotateTo" value="11458" />
    </item>

    <item id="11458" article="a" name="super nintendo">
        <attribute key="rotateTo" value="11457" />
    </item>

    <item id="11459" article="a" name="game cube">
        <attribute key="rotateTo" value="11460" />
    </item>

    <item id="11460" article="a" name="super nintendo">
        <attribute key="rotateTo" value="11459" />
    </item>

    <item id="11461" article="a" name="game boy advanced"/>

    <item id="11462" article="a" name="computer">
        <attribute key="rotateTo" value="11463" />
    </item>

    <item id="11463" article="a" name="computer">
        <attribute key="rotateTo" value="11462" />
    </item>

    <item id="11464" article="a" name="desktop">
        <attribute key="rotateTo" value="11465" />
    </item>

    <item id="11465" article="a" name="desktop">
        <attribute key="rotateTo" value="11464" />
    </item>

    <item id="11466" article="a" name="black desktop">
        <attribute key="rotateTo" value="11467" />
    </item>

    <item id="11467" article="a" name="black desktop">
        <attribute key="rotateTo" value="11466" />
    </item>

    <item id="11468" article="a" name="notebook">
        <attribute key="rotateTo" value="11469" />
    </item>

    <item id="11469" article="a" name="notebook">
        <attribute key="rotateTo" value="11468" />
    </item>

    <item fromid="11470" toid="11472" article="a" name="round chair"/>
    <item fromid="11473" toid="11475" article="a" name="big stone table"/>
    <item id="11476" article="a" name="big wooden table"/>
    <item id="11477" article="a" name="red table"/>
    <item id="11478" article="a" name="purple table"/>
    <item id="11479" article="an" name="icy table"/>
    <item id="11480" article="a" name="stone table"/>
    <item id="11481" article="a" name="wooden table"/>

    <item id="11482" article="a" name="green refrigerator">
        <attribute key="rotateTo" value="11483" />
    </item>

    <item id="11483" article="a" name="green refrigerator">
        <attribute key="rotateTo" value="11482" />
    </item>

    <item id="11484" article="a" name="white refrigerator">
        <attribute key="rotateTo" value="11485" />
    </item>

    <item id="11485" article="a" name="white refrigerator">
        <attribute key="rotateTo" value="11484" />
    </item>

    <item id="11486" article="a" name="white freezer">
        <attribute key="rotateTo" value="11487" />
    </item>

    <item id="11487" article="a" name="white freezer">
        <attribute key="rotateTo" value="11486" />
    </item>

    <item id="11488" article="a" name="black freezer">
        <attribute key="rotateTo" value="11489" />
    </item>

    <item id="11489" article="a" name="black freezer">
        <attribute key="rotateTo" value="11488" />
    </item>

    <item id="11490" article="a" name="blue work chair">
        <attribute key="rotateTo" value="11491" />
    </item>

    <item id="11491" article="a" name="blue work chair">
        <attribute key="rotateTo" value="11492" />
    </item>

    <item id="11492" article="a" name="blue work chair">
        <attribute key="rotateTo" value="11493" />
    </item>

    <item id="11493" article="a" name="blue work chair">
        <attribute key="rotateTo" value="11490" />
    </item>

    <item id="11495" article="a" name="black work chair">
        <attribute key="rotateTo" value="11496" />
    </item>

    <item id="11496" article="a" name="black work chair">
        <attribute key="rotateTo" value="11494" />
    </item>

    <item id="11494" article="a" name="black work chair">
        <attribute key="rotateTo" value="11497" />
    </item>

    <item id="11497" article="a" name="black work chair">
        <attribute key="rotateTo" value="11495" />
    </item>

    <item id="11499" article="a" name="red work chair">
        <attribute key="rotateTo" value="11500" />
    </item>

    <item id="11500" article="a" name="red work chair">
        <attribute key="rotateTo" value="11498" />
    </item>

    <item id="11498" article="a" name="red work chair">
        <attribute key="rotateTo" value="11501" />
    </item>

    <item id="11501" article="a" name="red work chair">
        <attribute key="rotateTo" value="11499" />
    </item>

    <item id="11502" article="a" name="dojo symbol"/>
    <item id="11503" article="a" name="sale shelf">
          <attribute key="containerSize" value="10" />
    </item>

       <item fromid="11518" toid="11519" article="a" name="pikachu tapestry">
        <attribute key="forceSerialize" value="1" />
    </item>
    <item id="11520" article="a" name="pikachu tapestry">
        <attribute key="weight" value="0" />
    </item>

    <item id="11504" article="a" name="rocket symbol"/>
    <item id="11505" article="a" name="pokemart sign"/>
    <item id="11506" article="a" name="pokemon center sign"/>
    <item id="11507" article="a" name="churry poster"/>
    <item id="11508" article="an" name="offer poster"/>
    <item id="11509" article="a" name="farfetch'd restaurant sign"/>
    <item id="11510" article="a" name="silph corporation sign"/>
    <item id="11511" article="a" name="max food shop sign"/>
    <item id="11512" article="a" name="eletronics shop sign"/>
    <item id="11513" article="a" name="pokemon poster"/>
    <item id="11514" article="a" name="casino sign"/>
    <item id="11515" article="a" name="shopping center sign"/>
    <item id="11516" article="a" name="star clothes shop sign"/>
    <item id="11517" article="a" name="pokemon laboratory sign"/>
    <item id="11521" article="a" name="museum sign"/>
    <item id="11522" article="a" name="coco store sign"/>
    <item fromid="11523" toid="11526" article="a" name="clothes standing">
          <attribute key="description" value="You can try some new clothers to see what flatters you clicking here!" />
    </item>
    <item id="11527" article="a" name="high speed subway"/>
    <item fromid="11528" toid="11529" article="an" name="air plane"/>
    <item id="11530" article="a" name="cash register"/>
    <item fromid="11531" toid="11537" article="a" name="moon rock"/>

       <item fromid="11538" toid="11539" article="a" name="japanese tapestry">
        <attribute key="forceSerialize" value="1" />
    </item>
    <item id="11540" article="a" name="japanese tapestry">
        <attribute key="weight" value="0" />
    </item>

    <item id="11541" article="a" name="pizza place sign"/>
    <item id="11542" article="a" name="toys store sign"/>
    <item id="11543" article="a" name="vip store sign"/>
    <item id="11544" article="a" name="giant christmas tree"/>
    <item id="11545" article="a" name="soccer ball"/>
    <item fromid="11546" toid="11547" article="a" name="megalithic monument"/>
    <item fromid="11548" toid="11550" article="a" name="legendary bird sculpture"/>
    <item fromid="11551" toid="11552" article="an" name="icy megalithic monument"/>

    <item id="11553" article="a" name="pink fruit tree">
          <attribute key="description" value="It is rumoured to turn some pokemons in a pink color, or have any other effects on them." />
    </item>

    <item id="11554" article="a" name="meowth golden armchair"/>
    <item fromid="11555" toid="11580" article="a" name="meowth golden statue"/>
    <item id="11581" article="a" name="police station sign"/>
    <item id="11582" article="a" name="stone monument"/>
    <item id="11583" article="an" name="icy stone monument"/>
    <item id="11584" article="a" name="shiny monument"/>
    <item id="11585" name="fire light"/>
    <item fromid="11586" toid="11623" article="a" name="pokemon statue"/>
    <item fromid="11624" toid="11631" article="a" name="giant crystal"/>
    <item fromid="11632" toid="11633" article="a" name="small crystal"/>
    <item id="11634" article="a" name="hot dog shop sign"/>
    <item id="11635" article="a" name="lan house sign"/>
    <item id="11636" article="a" name="danger poster"/>
    <item id="11637" article="a" name="japanese food restaurant sign"/>
        <item id="11638" article="a" name="Light Pokémon Egg"/>
        <item id="11639" article="a" name="Average Pokémon Egg"/>
        <item id="11640" article="a" name="Heavy Pokémon Egg"/>
        <item id="11641" article="a" name="Mysterious Pokémon Egg"/>
    <item id="17560" article="a" name="Rare Pokémon Egg"/>
    <item id="18054" article="a" name="Latios"></item>
    <item id="18055" article="a" name="Latias"></item>

        <item id="17104" article="a" name="Moltres card">
    </item>
            <item id="17105" article="a" name="Moltres Card Box">
          <attribute key="description" value="Contem: Boost Stone , X-Hellfire T1,  X-Hellfire T2, Fire Box Boosted +20, X-Hellfire T3, Misterioso Held T1, Misterioso Held T2, Pokemon Prize 4" />
    </item>
            <item id="17115" article="a" name="Articuno Card">
    </item>
              <item id="17112" article="a" name="Articuno Card Box">
          <attribute key="description" value="Contem: Boost Stone , Box do Gelo Boosted +20, Misterioso Held T1, Misterioso Held T2, Misterioso Held T3, Ice stone." />
    </item>
              <item id="17111" article="a" name="Zapdos Card Box">
          <attribute key="description" value="Contem: Items Exclusivos dessa Durgeon" />
    </item>
              <item id="17109" article="a" name="Zapdos Card">
    </item>
            <item id="17102" article="a" name="Box do Fogo Boosted +20">
          <attribute key="description" value="Uma Box Que contem pokes do tipo Fogo com boost +20." />
    </item>
        <item id="17116" article="a" name="Box do Gelo Boosted +20">
          <attribute key="description" value="Uma Box Que contem pokes do tipo Gelo com boost +20." />
    </item>
         <item id="17101" article="a" name="Box do Fogo Boosted +50">
          <attribute key="description" value="Uma Box Que contem pokes do tipo Fogo com boost +50." />
    </item>
         <item id="12331" article="a" name="Box do Trovao Boosted +50">
          <attribute key="description" value="Uma Box Que contem pokes do tipo Eletrico com boost +50." />
    </item>
         <item id="17108" article="a" name="Box de Gelo Boosted +50">
          <attribute key="description" value="Uma Box Que contem pokes do tipo gelo com boost +50." />
    </item>
    <item id="17103" article="a" name="Shiny Box do Fogo">
          <attribute key="description" value="Uma Box Que contem Pokes Shiny do tipo Fogo." />
    </item>
    <item id="17106" article="a" name="Shiny Box do Gelo">
          <attribute key="description" value="Uma Box Que contem Pokes Shiny do tipo Gelo." />
    </item>
    <item id="17107" article="a" name="Shiny Box do Trovao">
          <attribute key="description" value="Uma Box Que contem Pokes Shiny do tipo Eletrico." />
    </item>
    <item id="17400" article="a" name="Espeon Box">
          <attribute key="description" value="Tem 50% de chance de sair um Shiny Espeon" />
    </item>
    <item id="17561" article="a" name="Pokemon Prize +6">
          <attribute key="description" value="What poke surprise is hidden in this box?" />
    </item>
    <item id="17562" article="a" name="Pokemon Prize +7">
          <attribute key="description" value="What poke surprise is hidden in this box?" />
    </item>
            <item id="17119" article="a" name="Flareon Box">
          <attribute key="description" value="Esta box contem um Flareon e tem 50% de chance de sair Shiny Flareon." />
    </item>
         <item id="17269" article="a" name="Vaporeon Box">
          <attribute key="description" value="Esta box contem um Vaporeon e tem 50% de chance de sair Shiny Vaporeon." />
    </item>
    <item id="2149" article="a" name="Ametista" plural="Ametistas">
    </item>


    <item id="11642" name="stone floor" />
    <item fromid="11643" toid="11644" name="decorative floor"/>
    <item id="11645" name="sidewalk pavement" />
    <item id="11646" article="a" name="downtake pipe" />
    <item id="11647" name="sidewalk pavement" />
    <item fromid="11648" toid="11649" name="green decorative floor"/>
    <item id="11650" name="blue carpet" />
    <item id="11651" name="green carpet" />
    <item id="11652" name="orange carpet" />
    <item id="11653" name="orange decorative floor" />
    <item fromid="11654" toid="11664" name="sidewalk pavement"/>
    <item id="11665" name="asphalt" />
    <item id="11666" name="chef farfetch'd decorative floor" />
    <item id="11667" name="purple carpet" />
    <item id="11668" name="blue decorative floor" />
    <item fromid="11669" toid="11671" name="ornamented floor"/>
    <item id="11672" name="stone floor" />
    <item id="11673" name="ornamented floor" />
    <item id="11674" name="gray carpet" />
    <item fromid="11675" toid="11677" name="indicative floor"/>
    <item id="11678" article="a" name="zapdos statue"/>
    <item id="11679" article="a" name="moltres statue"/>
    <item id="11680" article="an" name="articuno statue"/>
    <item fromid="11681" toid="11684" article="a" name="stone pokebench"/>
    <item fromid="11685" toid="11692" article="a" name="white sofa"/>

    <item id="11693" article="a" name="white armchair">
        <attribute key="rotateTo" value="11694" />
    </item>

    <item id="11694" article="a" name="white armchair">
        <attribute key="rotateTo" value="11695" />
    </item>

    <item id="11695" article="a" name="white armchair">
        <attribute key="rotateTo" value="11696" />
    </item>

    <item id="11696" article="a" name="white armchair">
        <attribute key="rotateTo" value="11693" />
    </item>

    <item fromid="11697" toid="11704" article="a" name="black sofa"/>

    <item id="11705" article="a" name="black armchair">
        <attribute key="rotateTo" value="11706" />
    </item>

    <item id="11706" article="a" name="black armchair">
        <attribute key="rotateTo" value="11707" />
    </item>

    <item id="11707" article="a" name="black armchair">
        <attribute key="rotateTo" value="11708" />
    </item>

    <item id="11708" article="a" name="black armchair">
        <attribute key="rotateTo" value="11705" />
    </item>

    <item id="11709" article="a" name="pink-white armchair">
        <attribute key="rotateTo" value="11710" />
    </item>

    <item id="11710" article="a" name="pink-white armchair">
        <attribute key="rotateTo" value="11711" />
    </item>

    <item id="11711" article="a" name="pink-white armchair">
        <attribute key="rotateTo" value="11712" />
    </item>

    <item id="11712" article="a" name="pink-white armchair">
        <attribute key="rotateTo" value="11709" />
    </item>

    <item id="11713" article="a" name="blue armchair">
        <attribute key="rotateTo" value="11714" />
    </item>

    <item id="11714" article="a" name="blue armchair">
        <attribute key="rotateTo" value="11715" />
    </item>

    <item id="11715" article="a" name="blue armchair">
        <attribute key="rotateTo" value="11716" />
    </item>

    <item id="11716" article="a" name="blue armchair">
        <attribute key="rotateTo" value="11713" />
    </item>

    <item id="11717" article="a" name="orange armchair">
        <attribute key="rotateTo" value="11717" />
    </item>

    <item id="11718" article="a" name="orange armchair">
        <attribute key="rotateTo" value="11718" />
    </item>

    <item id="11719" article="a" name="orange armchair">
        <attribute key="rotateTo" value="11720" />
    </item>

    <item id="11720" article="a" name="orange armchair">
        <attribute key="rotateTo" value="11717" />
    </item>

    <item fromid="11721" toid="11736" article="a" name="pokemon battle field"/>

    <item id="11737" article="a" name="Shining normalball">
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="11738" article="a" name="Shining normalball being used">
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="11739" article="a" name="Shining discharged normalball">
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="11740" article="a" name="Shining greatball">
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="11741" article="a" name="Shining greatball being used">
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="11742" article="a" name="Shining discharged greatball">
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="11743" article="a" name="Shining superball">
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="11744" article="a" name="Shining superball being used">
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="11745" article="a" name="Shining discharged superball">
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="11746" article="a" name="Shining ultraball">
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="11747" article="a" name="Shining ultraball being used">
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="11748" article="a" name="Shining discharged ultraball">
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item fromid="11749" toid="11751" name="underwater"/>
    <item fromid="11752" toid="11753" name="ornamented floor"/>
    <item fromid="11754" toid="11755" name="wooden floor"/>
    <item id="11756" name="deep water">
        <attribute key="type" value="trashholder" />
        <attribute key="effect" value="bluebubble" />
        <attribute key="fluidSource" value="water" />
        <attribute key="allowpickupable" value="1" />
    </item>
    <item fromid="11757" toid="11760" article="a" name="ornamented stone railing"/>
    <item fromid="11761" toid="11768" article="a" name="blue sofa"/>
    <item fromid="11769" toid="11776" article="an" name="orange sofa"/>
    <item fromid="11777" toid="11785" article="a" name="marble wall"/>
    <item id="11825" article="an" name="marble wall"/>
    <item fromid="11786" toid="11788" article="an" name="archway"/>
    <item id="11824" article="an" name="archway"/>
    <item id="11789" article="a" name="wooden table"/>

    <item id="11790" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>

    <item id="11791" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>

    <item id="11792" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>

    <item id="11793" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
        <attribute key="description" value="It is locked." />
    </item>

    <item id="11794" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>

    <item id="11795" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>

    <item id="11796" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>

    <item id="11797" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>

    <item id="11798" article="a" name="closed door">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>

    <item id="11799" article="an" name="open door">
        <attribute key="type" value="door" />
    </item>

    <item id="11800" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>

    <item id="11801" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>

    <item id="11802" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
        <attribute key="levelDoor" value="1000" />
        <attribute key="blockprojectile" value="1" />
    </item>

    <item id="11803" article="a" name="gate of expertise">
        <attribute key="type" value="door" />
    </item>

    <item id="11804" article="a" name="wooden chair">
        <attribute key="rotateTo" value="11805" />
    </item>

    <item id="11805" article="a" name="wooden chair">
        <attribute key="rotateTo" value="11806" />
    </item>

    <item id="11806" article="a" name="wooden chair">
        <attribute key="rotateTo" value="11807" />
    </item>

    <item id="11807" article="a" name="wooden chair">
        <attribute key="rotateTo" value="11804" />
    </item>

    <item id="11808" name="stairs">
        <attribute key="floorchange" value="north" />
    </item>

    <item fromid="11810" toid="11811" article="a" name="marble wall window">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />
    </item>

    <item id="11812" name="stairs">
        <attribute key="floorchange" value="west" />
    </item>

    <item id="16690" name="stairs">
        <attribute key="floorchange" value="west" />
    </item>

    <item id="16694" name="stairs">
        <attribute key="floorchange" value="north" />
    </item>

    <item fromid="11813" toid="11821" article="a" name="white stone railing" />

    <item fromid="11822" toid="11823" article="a" name="mimic wall" />

    <item id="11826" article="a" name="normalball">
          <attribute key="weight" value="0" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="11827" article="a" name="normalball being used">
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="11828" article="a" name="discharged normalball">
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="11829" article="a" name="ultraball">
          <attribute key="weight" value="0" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="11830" article="a" name="ultraball being used">
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="11831" article="a" name="discharged ultraball">
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="11832" article="a" name="greatball">
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="11833" article="a" name="greatball being used">
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="11834" article="a" name="discharged greatball">
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="11835" article="a" name="superball">
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="11836" article="a" name="superball being used">
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="11837" article="a" name="discharged superball">
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="11838" article="a" name="fainted abra">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11839" article="a" name="fainted aerodactyl">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11840" article="a" name="fainted alakazam">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11841" article="a" name="fainted arbok">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11842" article="a" name="fainted arcanine">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11843" article="a" name="fainted articuno">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11844" article="a" name="fainted beedrill">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11845" article="a" name="fainted bellsprout">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11846" article="a" name="fainted blastoise">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11847" article="a" name="fainted bulbasaur">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11848" article="a" name="fainted butterfree">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11849" article="a" name="fainted caterpie">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11850" article="a" name="fainted chansey">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11851" article="a" name="fainted charizard">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11852" article="a" name="fainted charmander">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="11853" article="a" name="fainted charmeleon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11854" article="a" name="fainted clefable">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11855" article="a" name="fainted clefairy">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11856" article="a" name="fainted cloyster">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11857" article="a" name="fainted crystal onix">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11858" article="a" name="fainted cubone">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11859" article="a" name="fainted dewgong">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11860" article="a" name="fainted diglett">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11861" article="a" name="fainted ditto">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11862" article="a" name="fainted dodrio">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11863" article="a" name="fainted doduo">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11864" article="a" name="fainted dragonair">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11865" article="a" name="fainted dragonite">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11866" article="a" name="fainted dratini">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11867" article="a" name="fainted drowzee">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11868" article="a" name="fainted dugtrio">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11869" article="a" name="fainted eevee">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11870" article="a" name="fainted ekans">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11871" article="a" name="fainted electabuzz">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11872" article="a" name="fainted electrode">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11873" article="a" name="fainted exeggcute">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11874" article="a" name="fainted exeggutor">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11875" article="a" name="fainted farfetch'd">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11876" article="a" name="fainted fearow">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11877" article="a" name="fainted flareon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11878" article="a" name="fainted gastly">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11879" article="a" name="fainted gengar">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11880" article="a" name="fainted geodude">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11881" article="a" name="fainted gloom">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11882" article="a" name="fainted golbat">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11883" article="a" name="fainted goldeen">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11884" article="a" name="fainted golduck">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11885" article="a" name="fainted golem">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11886" article="a" name="fainted grimer">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11887" article="a" name="fainted growlithe">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11888" article="a" name="fainted gyarados">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11889" article="a" name="fainted haunter">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11890" article="a" name="fainted hitmonchan">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11891" article="a" name="fainted hitmonlee">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11892" article="a" name="fainted horsea">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11893" article="a" name="fainted hypno">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11894" article="a" name="fainted ivysaur">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11895" article="a" name="fainted jigglypuff">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11896" article="a" name="fainted jolteon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11897" article="a" name="fainted jynx">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11898" article="a" name="fainted kabuto">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11899" article="a" name="fainted kabutops">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11900" article="a" name="fainted kadabra">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11901" article="a" name="fainted kakuna">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11902" article="a" name="fainted kangaskhan">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11903" article="a" name="fainted kingler">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11904" article="a" name="fainted koffing">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11905" article="a" name="fainted krabby">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11906" article="a" name="fainted lapras">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11907" article="a" name="fainted lickitung">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11908" article="a" name="fainted machamp">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11909" article="a" name="fainted machoke">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11910" article="a" name="fainted machop">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11911" article="a" name="fainted magikarp">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12749" article="a" name="fainted giant magikarp">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12748" article="a" name="fainted shiny giant magikarp">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="11912" article="a" name="fainted magmar">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11913" article="a" name="fainted magnemite">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11914" article="a" name="fainted magneton">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11915" article="a" name="fainted mankey">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11916" article="a" name="fainted marowak">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11917" article="a" name="fainted meowth">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11918" article="a" name="fainted metapod">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11919" article="a" name="fainted mew">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11920" article="a" name="fainted mewtwo">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11921" article="a" name="fainted moltres">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11922" article="a" name="fainted mr. mime">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11923" article="a" name="fainted muk">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11924" article="a" name="fainted nidoking">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11925" article="a" name="fainted nidoqueen">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11926" article="a" name="fainted nidoran female">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11927" article="a" name="fainted nidoran male">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11928" article="a" name="fainted nidorina">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11929" article="a" name="fainted nidorino">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11930" article="a" name="fainted ninetales">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11931" article="a" name="fainted oddish">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11932" article="a" name="fainted omanyte">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11933" article="a" name="fainted omastar">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11934" article="a" name="fainted onix">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11935" article="a" name="fainted paras">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11936" article="a" name="fainted parasect">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11937" article="a" name="fainted persian">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11938" article="a" name="fainted pidgeot">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11939" article="a" name="fainted pidgeotto">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11940" article="a" name="fainted pidgey">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11941" article="a" name="fainted pikachu">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11942" article="a" name="fainted pinsir">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11943" article="a" name="fainted poliwag">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11944" article="a" name="fainted poliwhirl">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11945" article="a" name="fainted poliwrath">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11946" article="a" name="fainted ponyta">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11947" article="a" name="fainted porygon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11948" article="a" name="fainted primeape">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11949" article="a" name="fainted psyduck">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11950" article="a" name="fainted raichu">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11951" article="a" name="fainted rapidash">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11952" article="a" name="fainted raticate">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11953" article="a" name="fainted rattata">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11954" article="a" name="fainted rhydon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11955" article="a" name="fainted rhyhorn">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11956" article="a" name="fainted sandshrew">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11957" article="a" name="fainted sandslash">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11958" article="a" name="fainted scyther">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11959" article="a" name="fainted seadra">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11960" article="a" name="fainted seaking">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11961" article="a" name="fainted seel">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11962" article="a" name="fainted shellder">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11963" article="a" name="fainted slowbro">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11964" article="a" name="fainted slowpoke">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11965" article="a" name="fainted snorlax">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11966" article="a" name="fainted spearow">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11967" article="a" name="fainted squirtle">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11968" article="a" name="fainted starmie">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11969" article="a" name="fainted staryu">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11970" article="a" name="fainted tangela">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11971" article="a" name="fainted tauros">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11972" article="a" name="fainted tentacool">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11973" article="a" name="fainted tentacruel">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11974" article="a" name="fainted vaporeon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11975" article="a" name="fainted venomoth">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11976" article="a" name="fainted venonat">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11977" article="a" name="fainted venusaur">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11978" article="a" name="fainted victreebel">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11979" article="a" name="fainted vileplume">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11980" article="a" name="fainted voltorb">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11981" article="a" name="fainted vulpix">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11982" article="a" name="fainted wartortle">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11983" article="a" name="fainted weedle">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11984" article="a" name="fainted weepinbell">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11985" article="a" name="fainted weezing">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11986" article="a" name="fainted wigglytuff">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11987" article="a" name="fainted zapdos">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="11988" article="a" name="fainted zubat">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item fromid="11989" toid="12139" article="a" name="portrait"/>

    <item id="12140" article="a" name="fainted graveler">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="12142" name="iron piece" plural="iron pieces">
        <attribute key="weight" value="0" />
        <attribute key="description" value="A very hard piece that can be found on wild steel-type pokemon." />
    </item>

    <item id="12148" article="a" name="gyarados tail" plural="gyarados tails">
        <attribute key="weight" value="0" />
        <attribute key="description" value="The remains of a very aggressive pokemon." />
    </item>

    <item id="12149" article="a" name="teal feather" plural="teal feathers">
        <attribute key="weight" value="0" />
        <attribute key="description" value="This feather are very cold. They belong to a very rare pokemon." />
    </item>

    <item id="12150" article="a" name="yellow feather" plural="yellow feathers">
        <attribute key="weight" value="0" />
        <attribute key="description" value="This feather are very charged. They belong to a very rare pokemon." />
    </item>

    <item id="12151" article="a" name="red feather" plural="red feathers">
        <attribute key="weight" value="0" />
        <attribute key="description" value="This feather are very hot. They belong to a very rare pokemon." />
    </item>

    <item id="12152" article="a" name="pot of lava" plural="pots of lava">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Liquid lava inside a bottle that can be found on fire-type pokemon." />
    </item>

    <item id="12153" article="a" name="bag of pollem" plural="bags of pollem">
        <attribute key="weight" value="0" />
        <attribute key="description" value="A little container that has pollem inside. Usually carried by grass-type pokemon." />
    </item>

    <item id="12154" article="a" name="bulb" plural="bulbs">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Remains of a species of pokemon." />
    </item>

    <item id="12155" article="a" name="pair of leaves" plural="pairs of leaves">
        <attribute key="weight" value="0" />
        <attribute key="description" value="A pair of green leaves, grass-type pokemon love to carry those." />
    </item>

    <item id="12156" article="a" name="long fang" plural="long fangs">
        <attribute key="weight" value="0" />
        <attribute key="description" value="The tooth of a pokemon." />
    </item>

    <item id="12157" article="a" name="nail" plural="nails">
        <attribute key="weight" value="0" />
        <attribute key="description" value="A pokemon must have broken it and left behind." />
    </item>

    <item id="12158" article="a" name="turtle hull" plural="turtle hull">
        <attribute key="weight" value="0" />
        <attribute key="description" value="A hull used by turtle like pokemon." />
    </item>

    <item id="12159" article="a" name="dragon tooth" plural="dragon teeth">
        <attribute key="weight" value="0" />
        <attribute key="description" value="It probably broke during a pokemon bite." />
    </item>

    <item id="12160" article="an" name="iron pin" plural="iron pins">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Steel-pokemon like to carry some of those." />
    </item>

    <item id="12161" article="a" name="water gem" plural="water gems">
        <attribute key="weight" value="0" />
        <attribute key="description" value="A very simple and common item found with water-like pokemon." />
    </item>

    <item id="12162" article="a" name="essence of fire" plural="essences of fire">
        <attribute key="weight" value="0" />
        <attribute key="description" value="This item is very hot and valuable, carried by fire-type pokemon." />
    </item>

    <item id="12163" article="a" name="seed" plural="seeds">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Grass-type pokemon most of the time are carrying some of these with them." />
    </item>

    <item id="12164" article="a" name="screw" plural="screws">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Steel-type pokemon like very much some of these." />
    </item>

    <item id="12165" article="a" name="bottle of poison" plural="bottles of poison">
        <attribute key="weight" value="0" />
        <attribute key="description" value="A toxic and poisonous liquid stored in a small bottle." />
    </item>

    <item id="12166" name="mimic clothes" plural="mimic clothes">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Outfit that mimic pokemon like to use." />
    </item>

    <item id="12167" article="a" name="scythe" plural="scythes">
        <attribute key="weight" value="0" />
        <attribute key="description" value="A very sharp scythe, remained from a hurt pokemon." />
    </item>

    <item id="12168" article="a" name="Ice Bra" plural="Ice Bras">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Remains of a specific pokemon species." />
    </item>

    <item id="12169" article="a" name="buzz tail" plural="buzz tails">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Remains of a specific pokemon species." />
    </item>

    <item id="12170" article="a" name="water pendant" plural="water pendants">
        <attribute key="weight" value="0" />
        <attribute key="description" value="An amulet with water in it. A lot of water-type pokemon use them." />
    </item>

    <item id="12171" article="a" name="pot of moss bug" plural="pots of moss bug">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Some moss of bug stored in a bottle." />
    </item>

    <item id="12172" article="a" name="bird beak" plural="bird beaks">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Remains of a bird like pokemon." />
    </item>

    <item id="12173" article="an" name="apple bite" plural="apple bites">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Someone bit this apple!" />
    </item>

    <item id="12174" article="a" name="rat tail" plural="rat tails">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Remains of a rat like pokemon." />
    </item>

    <item id="12175" article="a" name="tooth" plural="teeth">
        <attribute key="weight" value="0" />
        <attribute key="description" value="A pokemon must have broken it during a battle." />
    </item>

    <item id="12176" article="an" name="electric box" plural="electric boxes">
        <attribute key="weight" value="0" />
        <attribute key="description" value="This box contains stored energy." />
    </item>

    <item id="12177" article="a" name="sandbag" plural="sandbags">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Some sand inside a small bag." />
    </item>

    <item id="12178" article="a" name="long horn" plural="long horns">
        <attribute key="weight" value="0" />
        <attribute key="description" value="A horned pokemon lost it." />
    </item>

    <item id="12179" article="a" name="comb" plural="combs">
        <attribute key="weight" value="0" />
        <attribute key="description" value="A very vain pokemon lost it." />
    </item>

    <item id="12180" article="a" name="fox tail" plural="fox tail">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Very hot tail, probably from a fire-type pokemon." />
    </item>

    <item id="12181" article="a" name="fur" plural="furs">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Fur of a pokemon." />
    </item>

    <item id="12182" article="a" name="bat wing" plural="bat wings">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Remains of a bat like pokemon." />
    </item>

    <item id="12183" article="a" name="some mushroom" plural="some mushrooms">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Mushrooms can be used as food for some pokemon." />
    </item>

    <item id="12184" article="a" name="bug antenna" plural="bug antennas">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Insect like pokemon might have dropped these." />
    </item>

    <item id="12185" article="a" name="bug venom" plural="bug venoms">
        <attribute key="weight" value="0" />
        <attribute key="description" value="It belongs to bug-type pokemon." />
    </item>

    <item id="12186" article="a" name="luck medalion" plural="luck medalions">
        <attribute key="weight" value="0" />
        <attribute key="description" value="It might give you some luck!" />
    </item>

    <item id="12187" article="a" name="wool ball" plural="wool balls">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Cat like pokemon get crazy playing with these." />
    </item>

    <item id="12188" article="a" name="ruby" plural="rubies">
        <attribute key="weight" value="0" />
        <attribute key="description" value="A very rare stone found in deep ocean." />
    </item>

    <item id="12189" article="a" name="psyduck mug" plural="psyduck mugs">
        <attribute key="weight" value="0" />
        <attribute key="description" value="A mug with the form of a psyduck." />
    </item>

    <item id="12190" article="a" name="item" plural="items">
        <attribute key="weight" value="0" />
        <attribute key="description" value="This is an unknown item, report it to a gamemaster." />
    </item>

    <item id="12191" article="a" name="punch toy" plural="punch toys">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Fighting-type pokemon like to play with these." />
    </item>

    <item id="12192" article="an" name="iron bracelet" plural="iron bracelets">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Used by a fighting-type pokemon species." />
    </item>

    <item id="12193" article="a" name="twisted spoon" plural="twisted spoons">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Psychic-type pokemon like to do this with spoons to train theyr abilities." />
    </item>

    <item id="12194" article="a" name="future orb" plural="future orbs">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Orbs usually carried by psychic-type pokemon." />
    </item>

    <item id="12195" article="a" name="champion belt" plural="champion belt">
        <attribute key="weight" value="0" />
        <attribute key="description" value="A belt weared by champions." />
    </item>

    <item id="12196" article="a" name="stone orb" plural="stone orbs">
        <attribute key="weight" value="0" />
        <attribute key="description" value="A very heavy orb usually carried by rock-type pokemon." />
    </item>

    <item id="12197" article="a" name="slowpoke tail" plural="slowpoke tails">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Remains of a slowpoke." />
    </item>

    <item id="12198" article="an" name="imam" plural="imams">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Steel-type pokemon like to play with magnetism." />
    </item>

    <item id="12199" article="a" name="stick slash" plural="stick slashes">
        <attribute key="weight" value="0" />
        <attribute key="description" value="This slash are commonly found with farfetchds." />
    </item>

    <item id="12200" article="a" name="feather" plural="feathers">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Feathers that bird like pokemon dropped." />
    </item>

    <item id="12201" article="an" name="ice orb" plural="ice orbs">
        <attribute key="weight" value="0" />
        <attribute key="description" value="A very cold and heavy orb usually carried by ice-type pokemon." />
    </item>

    <item id="12202" article="a" name="gosme" plural="gosmes">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Remains of a very smelly pokemon." />
    </item>

    <item id="12203" article="a" name="locksmith of shell" plural="locksmithes of shell">
        <attribute key="weight" value="0" />
        <attribute key="description" value="You can found those with shellders." />
    </item>

    <item id="12204" name="traces of ghost"  plural="traces of ghosts" >
        <attribute key="weight" value="0" />
        <attribute key="description" value="Remains of ghost-type pokemon." />
    </item>

    <item id="12205" article="a" name="onix tail" plural="onix tails">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Remains of an onix. This tail is very heavy." />
    </item>

    <item id="12206" article="a" name="essence of darkness" plural="essences of darkness">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Ghost/Dark-type pokemon like very much some of these." />
    </item>

    <item id="12207" article="a" name="crab claw" plural="crab claws">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Crab like pokemon dropped those." />
    </item>

    <item id="12208" article="a" name="bone" plural="bones">
        <attribute key="weight" value="0" />
        <attribute key="description" value="There are species of pokemon that love to use bones to battle and play." />
    </item>

    <item id="12209" article="a" name="big tongue" plural="big tongues">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Remains a pokemon that probably likes to lick." />
    </item>

    <item id="12210" article="a" name="venom flute" plural="venom flutes">
        <attribute key="weight" value="0" />
        <attribute key="description" value="This is a very rare and unique item." />
    </item>

    <item id="12211" article="a" name="big egg" plural="big eggs">
        <attribute key="weight" value="0" />
        <attribute key="description" value="This egg is always found in some pokemons like Chansey, which can also be used as food." />
    </item>
    
-------------------------------------------------------------------------------------------NOVOS LOOTS----------------------------------------------------------------------
        <item id="13782" article="a" name="noctowl own" plural="noctowl owns">
        <attribute key="weight" value="0" />
    </item>
    
        <item id="13783" article="a" name="bug gosme" plural="bug gosmes">
        <attribute key="weight" value="0" />
    </item>
    
        <item id="13784" article="a" name="togepi egg" plural="togepi eggs">
        <attribute key="weight" value="0" />
    </item>
    
        <item id="13785" article="a" name="enchanted gem" plural="enchanted gems">
        <attribute key="weight" value="0" />
    </item>
    
        <item id="13789" article="a" name="horn" plural="horns">
        <attribute key="weight" value="0" />
    </item>

        <item id="13794" article="a" name="snow ball" plural="snow balls">
        <attribute key="weight" value="0" />
    </item>
    
        <item id="13795" article="a" name="venom piece" plural="venom pieces">
        <attribute key="weight" value="0" />
    </item>
    
        <item id="12141" article="a" name="pinsir horn">
        <attribute key="weight" value="0" />
    </item>
    --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    <item id="12213" name="japanese food">
        <attribute key="weight" value="0" />
        <attribute key="description" value="You can feed some pokemon with this, but there may be some pokemons that don't like it!" />
    </item>

    <item id="12214" name="french fries">
        <attribute key="weight" value="0" />
        <attribute key="description" value="You can feed some pokemon with this, but there may be some pokemons that don't like it!" />
    </item>

    <item id="12215" article="a" name="hot dog">
        <attribute key="weight" value="0" />
        <attribute key="description" value="You can feed some pokemon with this, but there may be some pokemons that don't like it!" />
    </item>

    <item id="12216" article="a" name="cup of lemonade" plural="cups of lemonade">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Some pokemons like this drink, others don't!" />
    </item>

    <item id="12217" article="a" name="coconut" plural="coconuts">
        <attribute key="weight" value="0" />
    </item>

    <item id="12218" article="a" name="cheeseburguer" plural="cheeseburguers">
        <attribute key="weight" value="0" />
        <attribute key="description" value="You can feed some pokemon with this, but there may be some pokemons that don't like it!" />
    </item>

    <item id="12219" article="a" name="chocolate churry" plural="chocolate curries">
        <attribute key="weight" value="0" />
        <attribute key="description" value="You can feed some pokemon with this, but there may be some pokemons that don't like it!" />
    </item>

    <item id="12220" article="a" name="caramel churry" plural="caramel churries">
        <attribute key="weight" value="0" />
        <attribute key="description" value="You can feed some pokemon with this, but there may be some pokemons that don't like it!" />
    </item>

    <item id="12221" article="a" name="vanilla churry" plural="vanilla churries">
        <attribute key="weight" value="0" />
        <attribute key="description" value="You can feed some pokemon with this, but there may be some pokemons that don't like it!" />
    </item>

    <item id="12222" article="a" name="pizza" plural="pizzas">
        <attribute key="weight" value="0" />
        <attribute key="description" value="You can feed some pokemon with this, but there may be some pokemons that don't like it!" />
    </item>

    <item fromid="12223" toid="12225" article="a" name="power orb" plural="power orbs">
        <attribute key="weight" value="0" />
        <attribute key="description" value="There is an strange light glowing from it." />
    </item>

       <item id="12226" article="a" name="bracelet" plural="bracelets">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Pokemons like to wear accessories too." />
    </item>

    <item id="12227" article="a" name="Elemental Pokémon Egg"/>

    <item id="12228" article="a" name="star" plural="stars">
          <attribute key="description" value="This is considered a rare item." />
    </item>

    <item id="12229" article="a" name="magma orb" plural="magma orbs">
          <attribute key="description" value="The magma is very hot, but the orb can withstand it's temperature." />
    </item>

    <item id="12230" article="a" name="black stone">
          <attribute key="description" value="This is a round-shaped stone, made of onyx." />
    </item>

    <item id="12231" article="a" name="white stone">
          <attribute key="description" value="This is a oval-shaped stone, made of an unknown material." />
    </item>

    <item id="12234" article="a" name="yellow shell" plural="yellow shells">
        <attribute key="description" value="It's probably found on sea pokemons." />
    </item>

    <item id="12235" article="a" name="shell" plural="shells">
        <attribute key="description" value="It's probably found on sea pokemons." />
    </item>

    <item id="12236" article="an" name="alligator skin" plural="alligator skin">
        <attribute key="description" value="It's color come across as violent and aggressive." />
    </item>

    <item id="12237" article="a" name="black diamond" plural="black diamonds">
        <attribute key="description" value="It's color come across as violent and aggressive." />
    </item>

    <item id="12238" article="an" name="energy orb" plural="energy orbs">
        <attribute key="description" value="An orb made of dense material that produces strange energy." />
    </item>

    <item id="12239" article="an" name="iron bar" plural="iron bars">
        <attribute key="description" value="A bar used to build structures." />
    </item>

    <item id="12240" article="a" name="bag of poisonous dust" plural="bags of poisonous dust">
        <attribute key="description" value="It is poisonous and can be very dangerous." />
    </item>

    <item id="12241" article="a" name="steel wing" plural="steel wings">
        <attribute key="description" value="A wing with very sharp red feathers." />
    </item>

    <item id="12243" article="a" name="green orb" plural="green orbs">
        <attribute key="description" value="Grass-type pokemons like to carry some of these." />
    </item>

    <item id="12246" article="an" name="old fishing rod">
        <attribute key="description" value="It only catches weak and low level pokemon." />
    </item>

    <item id="12247" article="a" name="great fishing rod">
        <attribute key="description" value="It catches strong and high level pokemon." />
    </item>

    <item id="12248" article="a" name="super fishing rod">
        <attribute key="description" value="It catches strong and medium level pokemon." />
    </item>

    <item id="12249" article="an" name="ultra fishing rod">
        <attribute key="description" value="It catches the strongest pokemons found on sea." />
    </item>

    <item id="12250" article="a" name="steel ore" plural="steel ores">
        <attribute key="description" value="A little ball made of steel." />
    </item>

    <item id="12252" article="a" name="boulder badge">
        <attribute key="description" value="You won this badge from the gym leader Brock." />
    </item>

    <item id="12253" article="a" name="cascade badge">
        <attribute key="description" value="You won this badge from the gym leader Misty." />
    </item>

    <item id="12254" article="a" name="thunder badge">
        <attribute key="description" value="You won this badge from the gym leader Surge." />
    </item>

    <item id="12255" article="a" name="rainbow badge">
        <attribute key="description" value="You won this badge from the gym leader Erika." />
    </item>

    <item id="12256" article="a" name="marsh badge">
        <attribute key="description" value="You won this badge from the gym leader Sabrina." />
    </item>

    <item id="12257" article="a" name="soul badge">
        <attribute key="description" value="You won this badge from the gym leader Koga." />
    </item>

    <item id="12258" article="a" name="volcano badge">
        <attribute key="description" value="You won this badge from the gym leader Blaine." />
    </item>

    <item id="12259" article="an" name="earth badge">
        <attribute key="description" value="You won this badge from the gym leader Giovanni." />
    </item>

    <item fromid="12260" toid="12267" article="a" name="badge slot">
        <attribute key="description" value="You have to win battles against gym leaders in order to receive a badge." />
    </item>

    <item id="12268" article="a" name="majesty wing">
        <attribute key="description" value="This wing belongs to one very rare pokemon species." />
    </item>

    <item id="12269" article="a" name="pair of claws">
        <attribute key="description" value="This is worth twice the price of one single claw." />
    </item>

    <item id="12270" article="a" name="charizard's wing">
        <attribute key="description" value="This wing belongs to a very strong pokemon." />
    </item>

    <item id="12271" article="a" name="magma box" plural="magma boxes">
        <attribute key="description" value="This box is very rare." />
    </item>

    <item id="12272" article="a" name="giant turtle hull" plural="giant turtle hulls">
        <attribute key="description" value="Big turtle-like pokemon use this for protection." />
    </item>

    <item id="12273" article="a" name="red gyarados tail" plural="red gyarados tails">
        <attribute key="description" value="This is a tail that belongs to a very rare kind of gyarados." />
    </item>

    <item id="12274" article="a" name="crystal tail" plural="crystal tails">
        <attribute key="description" value="This is a very rare tail made of crystal." />
    </item>

    <item id="12275" article="a" name="big wing" plural="big wings">
        <attribute key="description" value="This wing in big enough to make a giant pokemon fly." />
    </item>

    <item id="12276" article="a" name="dragon tail" plural="dragon tail">
        <attribute key="description" value="This is the most beautiful tail." />
    </item>

    <item id="12277" article="a" name="purple tail" plural="purple tails">
        <attribute key="description" value="It's color advise that it's owner is poisonous." />
    </item>

    <item id="12278" article="a" name="green apple bite" plural="green apple bites">
        <attribute key="description" value="This apple is different!" />
    </item>

    <item id="12279" article="a" name="leaf pendant" plural="leaf pendants">
        <attribute key="description" value="Grass-type pokemon like to wear these as accessories." />
    </item>

    <item id="12280" article="a" name="bone mask" plural="bone masks">
        <attribute key="description" value="A very hard mask that certainly grants protection." />
    </item>

    <item id="12281" name="big mushrooms" plural="big mushrooms">
        <attribute key="description" value="You can feed some pokemon with this, but they can be poisonous!" />
    </item>

    <item id="12282" article="a" name="venom pendant" plural="venom pendats">
        <attribute key="description" value="Poison-type pokemon like to wear these as accessories." />
    </item>

    <item id="12283" article="a" name="water orb" plural="water orbs">
        <attribute key="description" value="An orb that contains some pure water." />
    </item>

    <item id="12284" article="a" name="pikachu tail" plural="pikachu tails">
        <attribute key="description" value="A yellow tail that belongs to a pikachu." />
    </item>

    <item id="12285" article="a" name="raichu tail" plural="raichu tails">
        <attribute key="description" value="A yellow tail that belongs to a raichu." />
    </item>

    <item id="12286" article="a" name="double experience pendant" plural="double experience pendants">
        <attribute key="description" value="Use e ganhe double experience por 2 horas." />
    </item>

    <item id="12287" article="a" name="magma stone" plural="magma stones">
        <attribute key="description" value="This is very hot solid magma." />
    </item>

    <item id="12288" article="a" name="pot of venom" plural="pots of venom">
        <attribute key="description" value="A very poisonous liquid stored in a pot." />
    </item>

    <item id="12289" article="a" name="white rune" plural="white runes">
        <attribute key="description" value="Item uses to sell in npcs" />
    </item>

    <item fromid="12290" toid="12300" article="a" name="grid wall"/>

    <item fromid="12304" toid="12324" article="a" name="pokemon egg">
        <attribute key="description" value="What pokemon will hatch from this egg?" />
    </item>

    <item id="12251"  article="a" name="pokemon chest"/>

    <item id="12325" article="a" name="red pokemon bag">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="48" />
    </item>

    <item id="12326" article="a" name="white pokemon bag">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="40" />
    </item>

    <item id="12327" article="a" name="yellow pokemon bag">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="32" />
    </item>

    <item id="12328" article="a" name="green pokemon bag">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="24" />
    </item>

    <item id="12329" article="a" name="blue pokemon bag">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="16" />
    </item>

    <item id="12332" article="a" name="pokemon bag">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="8" />
    </item>

    <item id="12212" article="a" name="pokemon healing machine">
        <attribute key="containerSize" value="1" />
    </item>

    <item id="12330" article="a" name="recording camera">
        <attribute key="weight" value="0" />
    </item>

    <item id="12331" article="a" name="Mystery Pokémon Box"/>

    <item id="12334" article="a" name="remains of magikarp" plural="remains of magikarp">
        <attribute key="description" value="This is the tail of a defeated magikarp." />
    </item>

    <item id="12335" article="a" name="blue stone ball" plural="blue stone balls">
        <attribute key="description" value="A ball made of a blue-colored stone." />
    </item>

    <item id="12336" article="an" name="bronze ball" plural="bronze balls">
        <attribute key="description" value="A ball made of bronze." />
    </item>

    <item id="12337" article="a" name="small stone" plural="small stones">
        <attribute key="description" value="A ball made of bronze." />
    </item>

    <item id="12338" article="a" name="Bag box">
        <attribute key="description" value="Bag box." />
    </item>
    
    <item id="17143" article="a" name="Misterioso Held T1">
        <attribute key="description" value="Box que da um held item T1 aleatorio." />
    </item>
        
    <item id="17142" article="a" name="Misterioso Held T2">
        <attribute key="description" value="Box que da um held item T2 aleatorio." />
    </item>
        
    <item id="17141" article="a" name="Misterioso Held T3">
        <attribute key="description" value="Box que da um held item T3 aleatorio." />
    </item>
        
    <item id="17140" article="a" name="Misterioso Held T4">
        <attribute key="description" value="Box que da um held item T4 aleatorio." />
    </item>
        
    <item id="17139" article="a" name="Misterioso Held T5">
        <attribute key="description" value="Box que da um held item T5 aleatorio." />
    </item>
        
    <item id="17138" article="a" name="Misterioso Held T6">
        <attribute key="description" value="Box que da um held item T6 aleatorio." />
    </item>
        
    <item id="17137" article="a" name="Misterioso Held T7">
        <attribute key="description" value="Box que da um held item T7 aleatorio." />
    </item>

    <item id="12339" article="a" name="Boosted Box">
        <attribute key="description" value="Box que da um pokemon aleatorio bostado." />
    </item>

    <item id="14185" article="a" name="Box Held T5-T7">
        <attribute key="description" value="Box que da um misterioso held item T5-T7 aleatorio." />
    </item>
    
            <item id="14186" article="a" name="Box Held T1-T4">
        <attribute key="description" value="Box que da um misterioso held item T1-T4 aleatorio." />
    </item>
    
            <item id="14188" article="a" name="Box Held T3">
        <attribute key="description" value="Box que da um held item T3 aleatorio." />
    </item>
    
            <item id="14187" article="a" name="Box Held T6">
        <attribute key="description" value="Box que da um held item T6 aleatorio." />
    </item>
    
    
    
    <item id="12341" name="blue vines" plural="blue vines">
        <attribute key="description" value="This are the remains of a tangela." />
    </item>

    <item id="12342" article="a" name="pot with fire" plural="pots with fire">
        <attribute key="description" value="There is actually fire inside this pot." />
    </item>

    <item id="12344" article="a" name="revive" plural="revives">
        <attribute key="description" value="This potion can cure a fainted pokemon and remove all status ailment." />
    </item>

    <item id="12343" article="a" name="full restore" plural="full restore">
        <attribute key="description" value="This pots restores your pokemon life to it's maximum." />
    </item>

    <item id="12345" article="an" name="hyper potion" plural="hyper potions">
        <attribute key="description" value="This potion restores 90% of a pokemon's life." />
    </item>

    <item id="12346" article="a" name="ultra potion" plural="ultra potions">
        <attribute key="description" value="This potion restores 80% of a pokemon's life." />
    </item>

    <item id="12347" article="a" name="super potion" plural="super potions">
        <attribute key="description" value="This potion restores 30% of a pokemon's life." />
    </item>

    <item id="12348" article="a" name="great potion" plural="great potions">
        <attribute key="description" value="This potion restores 60% of a pokemon's life." />
    </item>

    <item id="12349" article="an" name="medicine" plural="medicine">
        <attribute key="description" value="This cures your pokemon from a poison ailment." />
    </item>

    <item id="12350" article="a" name="stone altar"/>
    <item id="12351" name="stone stairs"/>

    <item fromid="12358" toid="12359" name="shallow water"/>

    <item id="12352" article="a" name="running boost machine">
        <attribute key="description" value="This boost machine is running." />
        <attribute key="containerSize" value="1"/>
    </item>

    <item id="12353" article="a" name="running boost machine">
        <attribute key="description" value="This boost machine is running." />
        <attribute key="containerSize" value="28"/>
    </item>

    <item id="12354" article="a" name="stone slot">
        <attribute key="description" value="This is the stone slot. You have to put a stone here to boost a pokemon." />
        <attribute key="containerSize" value="28"/>
    </item>

    <item id="12355" article="a" name="pokemon slot">
        <attribute key="description" value="This is the ball slot. Put here to pokemon you want to boost." />
        <attribute key="containerSize" value="1"/>
    </item>

    <item id="12356" article="a" name="boost machine">
        <attribute key="description" value="This is the turn on button. You can start it when you are ready to boost a pokemon." />
    </item>

    <item id="12357" article="a" name="running boost machine"/>

    <item id="12401" article="a" name="Shining Fire Stone">
        <attribute key="description" value="This stone glows in intense light. It has an unknown power on pokemon." />
    </item>

    <item id="12402" article="a" name="Shining Water Stone">
        <attribute key="description" value="This stone glows in intense light. It has an unknown power on pokemon." />
    </item>

    <item id="12403" article="a" name="Shining Leaf Stone">
        <attribute key="description" value="This stone glows in intense light. It has an unknown power on pokemon." />
    </item>

    <item id="12404" article="a" name="Shining Heart Stone">
        <attribute key="description" value="This stone glows in intense light. It has an unknown power on pokemon." />
    </item>

    <item id="12405" article="a" name="Shining Enigma Stone">
        <attribute key="description" value="This stone glows in intense light. It has an unknown power on pokemon." />
    </item>

    <item id="12406" article="a" name="Shining Rock Stone">
        <attribute key="description" value="This stone glows in intense light. It has an unknown power on pokemon." />
    </item>

    <item id="12407" article="a" name="Shining Venom Stone">
        <attribute key="description" value="This stone glows in intense light. It has an unknown power on pokemon." />
    </item>

    <item id="12408" article="a" name="Shining Ice Stone">
        <attribute key="description" value="This stone glows in intense light. It has an unknown power on pokemon." />
    </item>

    <item id="12409" article="a" name="Shining Thunder Stone">
        <attribute key="description" value="This stone glows in intense light. It has an unknown power on pokemon." />
    </item>

    <item id="12410" article="a" name="Shining Crystal Stone">
        <attribute key="description" value="This stone glows in intense light. It has an unknown power on pokemon." />
    </item>

    <item id="12411" article="a" name="Shining Coccon Stone">
        <attribute key="description" value="This stone glows in intense light. It has an unknown power on pokemon." />
    </item>

    <item id="12412" article="a" name="Shining Darkness Stone">
        <attribute key="description" value="This stone glows in intense light. It has an unknown power on pokemon." />
    </item>

    <item id="12413" article="a" name="Shining Punch Stone">
        <attribute key="description" value="This stone glows in intense light. It has an unknown power on pokemon." />
    </item>

    <item id="12414" article="a" name="Shining Earth Stone">
        <attribute key="description" value="This stone glows in intense light. It has an unknown power on pokemon." />
    </item>

    <item id="12416" article="a" name="cent" plural="cents">
        <attribute key="description" value="One hundred of these can be converted in a dollar." />
        <attribute key="duration" value="5" />
        <attribute key="worth" value="1" />
    </item>

   <item id="17480" article="a" name="fainted shiny bulbasaur">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17485" article="a" name="fainted shiny ivysaur">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12422" article="a" name="fainted shiny venusaur">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="17481" article="a" name="fainted shiny charmander">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17482" article="a" name="fainted shiny charmeleon">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12425" article="a" name="fainted shiny charizard">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="90" />
    </item>

   <item id="17490" article="a" name="fainted shiny squirtle">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17491" article="a" name="fainted shiny wartortle">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12428" article="a" name="fainted shiny blastoise">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="17492" article="a" name="fainted shiny caterpie">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17493" article="a" name="fainted shiny metapod">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12431" article="a" name="fainted shiny butterfree">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="17494" article="a" name="fainted shiny weedle">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17495" article="a" name="fainted shiny kakuna">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12434" article="a" name="fainted shiny beedrill">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="17496" article="a" name="fainted shiny pidgey">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17497" article="a" name="fainted shiny pidgeotto">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12437" article="a" name="fainted shiny pidgeot">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12438" article="a" name="fainted shiny rattata">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12439" article="a" name="fainted shiny raticate">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="17500" article="a" name="fainted shiny spearow">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12441" article="a" name="fainted shiny fearow">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="17498" article="a" name="fainted shiny ekans">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17499" article="a" name="fainted shiny arbok">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="17506" article="a" name="fainted shiny pikachu">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    
       <item id="17574" article="a" name="fainted shiny kabutops">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    
       <item id="17593" article="a" name="fainted shiny Scizor">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12445" article="a" name="fainted shiny raichu">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="17501" article="a" name="fainted shiny sandshrew">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17502" article="a" name="fainted shiny sandslash">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="17503" article="a" name="fainted shiny nidoran female">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17503" article="a" name="fainted shiny nidorina">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12450" article="a" name="fainted shiny nidoqueen">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17479" article="a" name="fainted shiny nidorino">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12453" article="a" name="fainted shiny nidoking">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="17507" article="a" name="fainted shiny clefairy">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17508" article="a" name="fainted shiny clefable">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17509" article="a" name="fainted shiny vulpix">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12457" article="a" name="fainted shiny ninetales">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="17510" article="a" name="fainted shiny jigglypuff">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17511" article="a" name="fainted shiny wigglytuff">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12460" article="a" name="fainted shiny zubat">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12461" article="a" name="fainted shiny golbat">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12462" article="a" name="fainted shiny oddish">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="17513" article="a" name="fainted shiny gloom">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12464" article="a" name="fainted shiny vileplume">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12465" article="a" name="fainted shiny paras">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12466" article="a" name="fainted shiny parasect">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12467" article="a" name="fainted shiny venonat">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12468" article="a" name="fainted shiny venomoth">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="17555" article="a" name="fainted shiny diglett">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17514" article="a" name="fainted shiny dugtrio">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17515" article="a" name="fainted shiny meowth">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12472" article="a" name="fainted shiny persian">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17517" article="a" name="fainted shiny psyduck">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17518" article="a" name="fainted shiny golduck">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17519" article="a" name="fainted shiny mankey">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17520" article="a" name="fainted shiny primeape">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12477" article="a" name="fainted shiny growlithe">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12478" article="a" name="fainted shiny arcanine">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="17521" article="a" name="fainted shiny poliwag">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17522" article="a" name="fainted shiny poliwhirl">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17523" article="a" name="fainted shiny poliwrath">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12482" article="a" name="fainted shiny abra">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="20" />
    </item>

   <item id="12483" article="a" name="fainted shiny kadabra">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12484" article="a" name="fainted shiny alakazam">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>
    
       <item id="14036" article="a" name="fainted beldum">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="30" />
    </item>
    
       <item id="14041" article="a" name="fainted metang">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="50" />
    </item>
    
       <item id="14046" article="a" name="fainted metagross">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="60" />
    </item>

   <item id="17524" article="a" name="fainted shiny machop">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17526" article="a" name="fainted shiny machoke">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12487" article="a" name="fainted shiny machamp">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17528" article="a" name="fainted shiny bellsprout">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17529" article="a" name="fainted shiny weepinbell">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17530" article="a" name="fainted shiny victreebel">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12491" article="a" name="fainted shiny tentacool">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12492" article="a" name="fainted shiny tentacruel">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="17531" article="a" name="fainted shiny geodude">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17532" article="a" name="fainted shiny graveler">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12495" article="a" name="fainted shiny golem">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="17533" article="a" name="fainted shiny ponyta">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17556" article="a" name="fainted shiny rapidash">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17536" article="a" name="fainted shiny slowpoke">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17537" article="a" name="fainted shiny slowbro">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12500" article="a" name="fainted shiny magnemite">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12501" article="a" name="fainted shiny magneton">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12502" article="a" name="fainted shiny farfetch'd">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="17538" article="a" name="fainted shiny doduo">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12504" article="a" name="fainted shiny dodrio">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="17558" article="a" name="fainted shiny seel">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17557" article="a" name="fainted shiny dewgong">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12507" article="a" name="fainted shiny grimer">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12508" article="a" name="fainted shiny muk">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="17539" article="a" name="fainted shiny shellder">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17540" article="a" name="fainted shiny cloyster">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17541" article="a" name="fainted shiny gastly">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17542" article="a" name="fainted shiny haunter">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12513" article="a" name="fainted shiny gengar">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12514" article="a" name="fainted shiny onix">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="17543" article="a" name="fainted shiny drowzee">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12516" article="a" name="fainted shiny hypno">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12517" article="a" name="fainted shiny krabby">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12518" article="a" name="fainted shiny kingler">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12519" article="a" name="fainted shiny voltorb">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12520" article="a" name="fainted shiny electrode">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="17544" article="a" name="fainted shiny exeggcute">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17545" article="a" name="fainted shiny exeggutor">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12524" article="a" name="fainted shiny cubone">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12525" article="a" name="fainted shiny marowak">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12526" article="a" name="fainted shiny hitmonlee">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12527" article="a" name="fainted shiny hitmonchan">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="17546" article="a" name="fainted shiny lickitung">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17547" article="a" name="fainted shiny koffing">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12530" article="a" name="fainted shiny weezing">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="17548" article="a" name="fainted shiny rhyhorn">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12532" article="a" name="fainted shiny rhydon">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="17549" article="a" name="fainted shiny chansey">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12534" article="a" name="fainted shiny tangela">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12535" article="a" name="fainted shiny kangaskhan">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12536" article="a" name="fainted shiny horsea">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12537" article="a" name="fainted shiny seadra">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="17550" article="a" name="fainted shiny goldeen">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17551" article="a" name="fainted shiny seaking">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17552" article="a" name="fainted shiny staryu">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="17553" article="a" name="fainted shiny starmie">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12542" article="a" name="fainted shiny mr. mime">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12543" article="a" name="fainted shiny scyther">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12544" article="a" name="fainted shiny jynx">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12545" article="a" name="fainted shiny electabuzz">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12546" article="a" name="fainted shiny magmar">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

  <item id="13931" article="a" name="fainted shiny magmortar">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>
    
    <item id="13940" article="a" name="fainted shiny electivire">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>
    
        <item id="14014" article="a" name="fainted shiny mantine">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>
    
   <item id="12547" article="a" name="fainted shiny pinsir">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12548" article="a" name="fainted shiny tauros">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12549" article="a" name="fainted shiny magikarp">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12550" article="a" name="fainted shiny gyarados">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12551" article="a" name="fainted shiny lapras">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12552" article="a" name="fainted shiny ditto">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12553" article="a" name="fainted shiny eevee">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12554" article="a" name="fainted shiny vaporeon">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12555" article="a" name="fainted shiny jolteon">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12556" article="a" name="fainted shiny flareon">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="17554" article="a" name="fainted shiny porygon">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12558" article="a" name="fainted shiny omanyte">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12559" article="a" name="fainted shiny omastar">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12560" article="a" name="fainted shiny kabuto">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12561" article="a" name="fainted shiny kabutops">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12562" article="a" name="fainted shiny aerodactyl">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12680" article="a" name="fainted shiny snorlax">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>
    
   <item id="17489" article="a" name="fainted shiny Cleffa">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12564" article="a" name="fainted shiny articuno">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12565" article="a" name="fainted shiny zapdos">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12566" article="a" name="fainted shiny moltres">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12567" article="a" name="fainted shiny dratini">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12568" article="a" name="fainted shiny dragonair">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12569" article="a" name="fainted shiny dragonite">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12570" article="a" name="fainted shiny mewtwo">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12571" article="a" name="fainted shiny mew">
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3267" article="a" name="fainted aipom">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3268" article="a" name="fainted ampharos">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3269" article="a" name="fainted ariados">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3270" article="a" name="fainted azumarill">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3584" article="a" name="fainted pichu">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3271" article="a" name="fainted bayleef">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3272" article="a" name="fainted bellossom">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3273" article="a" name="fainted blissey">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3274" article="a" name="fainted celebi">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3275" article="a" name="fainted chikorita">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3276" article="a" name="fainted chinchou">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3277" article="a" name="fainted cleffa">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3278" article="a" name="fainted corsola">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3279" article="a" name="fainted crobat">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3280" article="a" name="fainted croconaw">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3281" article="a" name="fainted cyndaquil">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3282" article="a" name="fainted delibird">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3283" article="a" name="fainted donphan">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3284" article="a" name="fainted dunsparce">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3285" article="a" name="fainted elekid">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3286" article="a" name="fainted entei">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3287" article="a" name="fainted espeon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4567" article="a" name="fainted umbreon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3288" article="a" name="fainted feraligatr">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3289" article="a" name="fainted flaaffy">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3290" article="a" name="fainted forretress">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3291" article="a" name="fainted furret">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3292" article="a" name="fainted girafarig">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3293" article="a" name="fainted gligar">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3294" article="a" name="fainted granbull">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3295" article="a" name="fainted heracross">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3296" article="a" name="fainted hitmontop">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3297" article="a" name="fainted ho-oh">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3553" article="a" name="fainted hoothoot">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3554" article="a" name="fainted hoppip">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3555" article="a" name="fainted houndoom">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3559" article="a" name="fainted kingdra">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3583" article="a" name="fainted phanpy">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3556" article="a" name="fainted houndour">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3557" article="a" name="fainted igglybuff">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3560" article="a" name="fainted lanturn">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3561" article="a" name="fainted larvitar">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3562" article="a" name="fainted ledian">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3563" article="a" name="fainted ledyba">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3564" article="a" name="fainted lugia">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3565" article="a" name="fainted magby">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3566" article="a" name="fainted magcargo">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3567" article="a" name="fainted mantine">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3568" article="a" name="fainted mareep">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3575" article="a" name="fainted marill">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3576" article="a" name="fainted meganium">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3577" article="a" name="fainted miltank">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3578" article="a" name="fainted misdreavus">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3579" article="a" name="fainted murkrow">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3580" article="a" name="fainted natu">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3581" article="a" name="fainted noctowl">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3582" article="a" name="fainted octillery">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3585" article="a" name="fainted piloswine">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="3586" article="a" name="fainted pineco">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4422" article="a" name="fainted politoed">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4423" article="a" name="fainted porygon2">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4424" article="a" name="fainted pupitar">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4425" article="a" name="fainted quagsire">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4426" article="a" name="fainted quilava">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4427" article="a" name="fainted qwilfish">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4428" article="a" name="fainted raikou">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4429" article="a" name="fainted remoraid">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4431" article="a" name="fainted scizor">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4432" article="a" name="fainted sentret">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4430" article="a" name="fainted shuckle">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4433" article="a" name="fainted skarmory">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4434" article="a" name="fainted skiploom">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4435" article="a" name="fainted slowking">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4436" article="a" name="fainted slugma">
        <attribute key="containerSize" value="8" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4438" article="a" name="fainted smoochum">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4439" article="a" name="fainted sneasel">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4440" article="a" name="fainted snubbull">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4441" article="a" name="fainted spinarak">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4442" article="a" name="fainted stantler">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4437" article="a" name="fainted smeargle">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4455" article="a" name="fainted tyrogue">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4443" article="a" name="fainted steelix">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4444" article="a" name="fainted sudowoodo">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4445" article="a" name="fainted suicune">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4446" article="a" name="fainted sunflora">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4447" article="a" name="fainted sunkern">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4448" article="a" name="fainted swinub">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4449" article="a" name="fainted teddiursa">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4450" article="a" name="fainted togepi">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4451" article="a" name="fainted togetic">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4452" article="a" name="fainted totodile">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4453" article="a" name="fainted typhlosion">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4454" article="a" name="fainted tyranitar">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4568" article="a" name="fainted unown v">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4569" article="a" name="fainted ursaring">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4756" article="a" name="fainted wobbuffet">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4757" article="a" name="fainted wooper">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4758" article="a" name="fainted xatu">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="4759" article="a" name="fainted yanma">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12743" article="a" name="fainted shiny crobat">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

   <item id="12744" article="a" name="fainted shiny magmar">
   <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

    <item id="12745" article="a" name="darkness gem" plural="darkness gems">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Dark/Ghost-type pokemon most of the time are carrying some of these with them." />
    </item>

    <item id="12573" article="a" name="PvP Tile">
    </item>
    <item id="12574" article="a" name="Blue Team Tile">
    </item>
    <item id="12575" article="a" name="Red Team Tile">
    </item>
    <item id="12576" article="a" name="Black Tile">
    </item>

    <item id="102" article="a" name="test normalball">
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="105" article="a" name="test normalball being used">
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="107" article="a" name="test discharged normalball">
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="10974" article="a" name="Bulbasaur's normalball">
          <attribute key="ispokeball" value="1"/>
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="10975" article="a" name="saffari. ball.">   <!-- alterado v1.9 \/ -->
          <attribute key="ispokeball" value="1"/>
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="10976" article="a" name="saffari ball being used">
          <attribute key="ispokeball" value="1"/>
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="10977" article="a" name="discharged saffari ball">
          <attribute key="ispokeball" value="1"/>
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>                                              <!-- alterado v1.9 /\ -->

    <item id="12832" article="a" name="master ball">
        <attribute key="weight" value="0" />
        <attribute key="description" value="This is pokeball used to catch fainted pokemon. It has a 100x catch rate." />
    </item>

    <item id="12826" article="a" name="master ball.">
          <attribute key="ispokeball" value="1"/>
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="12827" article="a" name="master ball being used">
          <attribute key="ispokeball" value="1"/>
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="12828" article="a" name="discharged master ball">
          <attribute key="ispokeball" value="1"/>
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>    

    <item id="12590" article="a" name="dead human">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="50" />
    </item>
    <item id="12589" article="a" name="dead female hunter">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="50" />
    </item>
    <item id="12588" article="a" name="dead hunter">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="50" />
    </item>
    <item id="12587" article="a" name="dead female officer">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="50" />
    </item>
    <item id="12586" article="a" name="dead officer">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="50" />
    </item>
    <item id="12585" article="a" name="dead female rocket">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="50" />
    </item>
    <item id="12584" article="a" name="dead rocket">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="50" />
    </item>

    <item id="12583" article="a" name="fainted shiny blastoise">
    <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>
    <item id="12582" article="a" name="fainted shiny onix">
    <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>

    <item fromid="12577" toid="12578" article="a" name="portrait"/>

    <item id="12581" article="a" name="Old Amber">
        <attribute key="description" value="A rare and old pokemon fossil." />
    </item>
    <item id="12580" article="a" name="Helix Fossil">
        <attribute key="description" value="A rare and old pokemon fossil." />
    </item>
    <item id="12579" article="a" name="Dome Fossil">
        <attribute key="description" value="A rare and old pokemon fossil." />
    </item>

    <item id="12591" article="a" name="Big Tree">
        <attribute key="description" value="A Big Tree, maybe have some pokemons in this tree." />
    </item>
    <item id="12592" article="a" name="Broken Big Tree">
        <attribute key="description" value="A Broken Big Tree, someone broke this tree." />
    </item>
    <item id="12593" article="a" name="Tree">
        <attribute key="description" value="It looks like a sudowoodo, don't you think?" />
    </item>
    <item id="12594" article="a" name="Squirtle Bottle">
        <attribute key="description" value="A rare bottle, if you use it in a sudowoodo he can attack you." />
    </item>

    <item id="12595" article="a" name="fainted shiny mr. mime">  <!--alterado v1.9  \/ -->
    <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>
    <item id="12596" article="a" name="fainted shiny rhydon">
    <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>
    <item id="12597" article="a" name="fainted shiny ninetales">
    <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>
    <item id="12598" article="a" name="fainted shiny ariados">
    <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>
    <item id="12599" article="a" name="fainted shiny magneton">
    <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>
    
        <item id="14181" article="a" name="fainted magnezone">
    <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>
    
            <item id="14154" article="a" name="fainted milotic">
    <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>
    
    <item id="12600" article="a" name="fainted shiny espeon">
    <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>
    <item id="12601" article="a" name="fainted shiny politoed">
    <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>
    <item id="12602" article="a" name="fainted shiny umbreon">
    <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>
    <item id="12603" article="a" name="fainted shiny stantler">
    <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>
    <item id="12604" article="a" name="fainted shiny dodrio">
    <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
    </item>


    <item id="12605" article="a" name="portrait">
        <attribute key="weight" value="0" />
        <attribute key="slotType" value="legs" />
    </item>
    <item id="12606" article="a" name="portrait">
        <attribute key="weight" value="0" />
        <attribute key="slotType" value="legs" />
    </item>
    <item id="12607" article="a" name="portrait">
        <attribute key="weight" value="0" />
        <attribute key="slotType" value="legs" />
    </item>
    <item id="12608" article="a" name="portrait">
        <attribute key="weight" value="0" />
        <attribute key="slotType" value="legs" />
    </item>
    <item id="12609" article="a" name="portrait">
        <attribute key="weight" value="0" />
        <attribute key="slotType" value="legs" />
    </item>
    <item id="12610" article="a" name="portrait">
        <attribute key="weight" value="0" />
        <attribute key="slotType" value="legs" />
    </item>
    <item id="12611" article="a" name="portrait">
        <attribute key="weight" value="0" />
        <attribute key="slotType" value="legs" />
    </item>
    <item id="12612" article="a" name="portrait">
        <attribute key="weight" value="0" />
        <attribute key="slotType" value="legs" />
    </item>
    <item id="12613" article="a" name="portrait">
        <attribute key="weight" value="0" />
        <attribute key="slotType" value="legs" />
    </item>
    <item id="12614" article="a" name="portrait">
        <attribute key="weight" value="0" />
        <attribute key="slotType" value="legs" />
    </item>
    <item id="12615" article="a" name="portrait">
        <attribute key="weight" value="0" />
        <attribute key="slotType" value="legs" />
    </item>
    <item id="12616" article="a" name="portrait">
        <attribute key="weight" value="0" />
        <attribute key="slotType" value="legs" />
    </item>
    <item id="12741" article="a" name="portrait">
        <attribute key="weight" value="0" />
        <attribute key="slotType" value="legs" />
    </item>
    <item id="12742" article="a" name="portrait">
        <attribute key="weight" value="0" />
        <attribute key="slotType" value="legs" />
    </item>
    <item id="13932" article="a" name="portrait">
        <attribute key="weight" value="0" />
        <attribute key="slotType" value="legs" />
    </item>
    <item id="13936" article="a" name="portrait">
        <attribute key="weight" value="0" />
        <attribute key="slotType" value="legs" />
    </item>
        <item id="14019" article="a" name="portrait">
        <attribute key="weight" value="0" />
        <attribute key="slotType" value="legs" />
    </item>
    <item id="14182" article="a" name="portrait">
        <attribute key="weight" value="0" />
        <attribute key="slotType" value="legs" />
    </item>

    <item id="12617" article="a" name="saffari ball">
        <attribute key="weight" value="0" />
        <attribute key="description" value="This is pokeball used to catch fainted pokemon. It has a 5x catch rate." />
    </item>

    <item id="10308" article="a" name="Old Parchment">
        <attribute key="weight" value="0" />
    </item>

    <item id="12618" article="a" name="Boost Stone" plural="Boost Stones">
        <attribute key="description" value="A cada +25 de Boost aumenta Custo de de +1 Boost stone nescessaria." />
    </item>

    <item id="12619" article="a" name="old treasure map">
        <attribute key="weight" value="830" />
    </item>
    <item id="12620" article="a" name="old treasure map">
        <attribute key="weight" value="830" />
    </item>

    <item id="12621" article="a" name="shining saffari ball">
          <attribute key="ispokeball" value="1"/>
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="12622" article="a" name="shining saffari ball being used">
          <attribute key="ispokeball" value="1"/>
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="12623" article="a" name="discharged shining saffari ball">
          <attribute key="ispokeball" value="1"/>
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="12829" article="a" name="shining master ball">
          <attribute key="ispokeball" value="1"/>
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="12830" article="a" name="shining master ball being used">
          <attribute key="ispokeball" value="1"/>
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="12831" article="a" name="discharged shining master ball">
          <attribute key="ispokeball" value="1"/>
          <attribute key="weight" value="100" />
          <attribute key="slotType" value="feet" />
    </item>

    <item id="12626" article="a" name="Raibolt Flag">
        <attribute key="weight" value="830" />
    </item>
    <item id="12627" article="a" name="Psycraft Flag">
        <attribute key="weight" value="830" />
    </item>
    <item id="12628" article="a" name="Malefic Flag">
        <attribute key="weight" value="830" />
    </item>
    <item id="12629" article="a" name="Orebound Flag">
        <attribute key="weight" value="830" />
    </item>
    <item id="12630" article="a" name="Gardestrike Flag">
        <attribute key="weight" value="830" />
    </item>
    <item id="12631" article="a" name="Seavell Flag">
        <attribute key="weight" value="830" />
    </item>
    <item id="12632" article="a" name="Naturia Flag">
        <attribute key="weight" value="830" />
    </item>
    <item id="12633" article="a" name="Wingeon Flag">
        <attribute key="weight" value="830" />
    </item>
    <item id="12634" article="a" name="Volcanic Flag">
        <attribute key="weight" value="830" />
    </item>


    <item id="12635" article="a" name="Agatha's Necklace">
        <attribute key="weight" value="0" />
    </item>
    <item id="12636" article="a" name="Old Hammer">
        <attribute key="weight" value="0" />
    </item>
    <item id="12637" article="a" name="Ancient Potion">
        <attribute key="weight" value="0" />
    </item>
    <item id="12638" article="a" name="Old Parchment">
        <attribute key="weight" value="0" />
    </item>
    <item id="12639" article="a" name="Pokeball">
        <attribute key="weight" value="0" />
    </item>
    <item id="12640" article="a" name="Soul Orb">
        <attribute key="weight" value="0" />
    </item>
    <item id="12641" article="a" name="Dracola's Eye">
        <attribute key="weight" value="0" />
    </item>
    <item id="12642" article="a" name="Dragon Book">
        <attribute key="weight" value="0" />
    </item>
    <item id="12643" article="a" name="Hook">
        <attribute key="weight" value="0" />
    </item>
    <item id="12644" article="a" name="Black Book">
        <attribute key="weight" value="0" />
    </item>
    <item id="12645" article="a" name="Map">
        <attribute key="weight" value="0" />
    </item>
    <item id="12646" article="a" name="Dragon Claw">
        <attribute key="weight" value="0" />
    </item>
    <item id="12647" article="a" name="Rat Tail">
        <attribute key="weight" value="0" />
    </item>
    <item id="12648" article="a" name="Gyarados Tail">
        <attribute key="weight" value="0" />
    </item>
    <item id="12649" article="a" name="Pairs of Leaves">
        <attribute key="weight" value="0" />
    </item>
    <item id="12650" article="a" name="Turtle Hull">
        <attribute key="weight" value="0" />
    </item>
    <item id="12651" article="a" name="Bat Wing">
        <attribute key="weight" value="0" />
    </item>
    <item id="12652" article="a" name="Sandbag">
        <attribute key="weight" value="0" />
    </item>
    <item id="12653" article="a" name="Bug Venon">
        <attribute key="weight" value="0" />
    </item>
    <item id="12654" article="a" name="Onix Tail">
        <attribute key="weight" value="0" />
    </item>
    <item id="12656" article="a" name="Old Map">
        <attribute key="weight" value="0" />
    </item>
    <item id="12657" article="a" name="Golden Trophy">
        <attribute key="weight" value="0" />
    </item>
    <item id="12658" article="a" name="Water-Pipe">
        <attribute key="weight" value="0" />
    </item>
    <item id="12659" article="a" name="Tube">
        <attribute key="weight" value="0" />
    </item>
    <item id="12660" article="a" name="Tube">
        <attribute key="weight" value="0" />
    </item>
    <item id="12661" article="a" name="Voodoo Doll">
        <attribute key="weight" value="0" />
    </item>
    <item id="12662" article="a" name="Plasmother Remains">
        <attribute key="weight" value="0" />
    </item>
    <item id="12663" article="a" name="Leaves">
        <attribute key="weight" value="0" />
    </item>
    <item id="12664" article="a" name="Perfect Beholder Fang">
        <attribute key="weight" value="0" />
    </item>
    <item id="12665" article="a" name="Dark Bat Wing">
        <attribute key="weight" value="0" />
    </item>
    <item id="12666" article="a" name="Fish Fin">
        <attribute key="weight" value="0" />
    </item>
    <item id="12667" article="a" name="Bear Paw">
        <attribute key="weight" value="0" />
    </item>
    <item id="12668" article="a" name="Wolf Paw">
        <attribute key="weight" value="0" />
    </item>
    <item id="12669" article="a" name="Beholder Eye">
        <attribute key="weight" value="0" />
    </item>
    <item id="12670" article="a" name="Wood">
        <attribute key="weight" value="0" />
    </item>
    <item id="12671" article="a" name="Honeycomb">
        <attribute key="weight" value="0" />
    </item>
    <item id="12672" article="a" name="Trap">
        <attribute key="weight" value="0" />
    </item>
    <item id="12673" article="a" name="Bowl">
        <attribute key="weight" value="0" />
    </item>
    <item id="12674" article="a" name="Pot">
        <attribute key="weight" value="0" />
    </item>
    <item id="12675" article="a" name="Baking Tray">
        <attribute key="weight" value="0" />
    </item>
    <item id="12676" article="a" name="Mirror">
        <attribute key="weight" value="0" />
    </item>
    <item id="12677" article="a" name="Carpenter Hammer">
        <attribute key="weight" value="0" />
    </item>
    <item id="12678" article="a" name="Flower">
        <attribute key="weight" value="0" />
    </item>
    <item id="12681" article="a" name="Facebook backpack">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="100" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="12682" article="a" name="Greatball backpack">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="40" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="12683" article="a" name="Pokeball backpack">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="32" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="12684" article="a" name="Superball backpack">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="60" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="12685" article="a" name="Ultraball backpack">
        <attribute key="weight" value="0" />
        <attribute key="containerSize" value="80" />
        <attribute key="slotType" value="backpack" />
    </item>
        <item id="12686" article="a" name="fainted shiny weezing">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
        </item>
        <item id="12687" article="a" name="fainted shiny sandslash">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
        </item>
    <item id="12688" article="a" name="portrait">
        <attribute key="weight" value="0" />
        <attribute key="slotType" value="legs" />
    </item>
    <item id="12689" article="a" name="portrait">
        <attribute key="weight" value="0" />
        <attribute key="slotType" value="legs" />
    </item>
    <item id="12690" article="a" name="Aerodactyl backpack">
        <attribute key="containerSize" value="50" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="12691" article="a" name="Arbok backpack">
        <attribute key="containerSize" value="50" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="12692" article="a" name="Charizard backpack">
        <attribute key="containerSize" value="50" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="12693" article="a" name="Chikorita backpack">
        <attribute key="containerSize" value="50" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="12694" article="a" name="Cubone backpack">
        <attribute key="containerSize" value="50" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="12695" article="a" name="Dragonite backpack">
        <attribute key="containerSize" value="50" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="12696" article="a" name="Eevee backpack">
        <attribute key="containerSize" value="50" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="12697" article="a" name="Espeon backpack">
        <attribute key="containerSize" value="50" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="12698" article="a" name="Flareon backpack">
        <attribute key="containerSize" value="50" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="12699" article="a" name="Golduck backpack">
        <attribute key="containerSize" value="50" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="12700" article="a" name="Haunter backpack">
        <attribute key="containerSize" value="50" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="12701" article="a" name="Jolteon backpack">
        <attribute key="containerSize" value="50" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="12702" article="a" name="Jynx backpack">
        <attribute key="containerSize" value="50" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="12703" article="a" name="Machamp backpack">
        <attribute key="containerSize" value="50" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="12704" article="a" name="Mewtwo backpack">
        <attribute key="containerSize" value="50" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="12705" article="a" name="Mr. mime backpack">
        <attribute key="containerSize" value="50" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="12706" article="a" name="Pidgeot backpack">
        <attribute key="containerSize" value="50" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="12707" article="a" name="Pikachu backpack">
        <attribute key="containerSize" value="50" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="12708" article="a" name="Sandslash backpack">
        <attribute key="containerSize" value="50" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="12709" article="a" name="Scizor backpack">
        <attribute key="containerSize" value="50" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="12710" article="a" name="Scyther backpack">
        <attribute key="containerSize" value="50" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="12711" article="a" name="Sneasel backpack">
        <attribute key="containerSize" value="50" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="12712" article="a" name="Snorlax backpack">
        <attribute key="containerSize" value="50" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="12713" article="a" name="Umbreon backpack">
        <attribute key="containerSize" value="50" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="12714" article="a" name="Vaporeon backpack">
        <attribute key="containerSize" value="50" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="12715" article="a" name="Victreebel backpack">
        <attribute key="containerSize" value="50" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="12716" article="a" name="Wartortle backpack">
        <attribute key="containerSize" value="50" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="12717" article="a" name="Mew backpack">
        <attribute key="containerSize" value="50" />
        <attribute key="slotType" value="backpack" />
    </item>
    <item id="12729" name="stairs">
        <attribute key="floorchange" value="north" />

    <item fromid="12723" toid="12727" article="a" name="Cps table"/>
    </item>
    <item fromid="12731" toid="12732" article="a" name="Cp wall window">
        <attribute key="type" value="door" />
        <attribute key="blockprojectile" value="1" />

    <item fromid="12733" toid="12735" article="a" name="Cp wall"/>

    <item fromid="12737" toid="12740" article="an" name="Cp archway"/>
    </item>

    <item id="12718" article="a" name="addon scyther">
        <attribute key="description" value="addon piccolo." />
    </item>

/////////////////////OUTLAND/////////////////////////////

   <item id="12750" article="a" name="fainted brave venusaur">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12751" article="a" name="fainted ancient alakazam">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12752" article="a" name="fainted ancient dragonite">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="12753" article="a" name="fainted ancient kingdra">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="12754" article="a" name="fainted ancient meganium">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12755" article="a" name="fainted ancient onix">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12756" article="a" name="fainted ancient scyther">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12757" article="a" name="fainted ancient snorlax">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12758" article="a" name="fainted aviator pidgeot">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="12759" article="a" name="fainted banshee misdreavus">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12760" article="a" name="fainted bone marowak">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12761" article="a" name="fainted boxer hitmonchan">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12762" article="a" name="fainted brave blastoise">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12763" article="a" name="fainted brave charizard">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12764" article="a" name="fainted brave nidoking">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12765" article="a" name="fainted brave nidoqueen">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="12766" article="a" name="fainted brave noctowl">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12767" article="a" name="fainted brute farfetch'd">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12768" article="a" name="fainted brute rhydon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="12769" article="a" name="fainted brute ursaring">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="12770" article="a" name="fainted capoeira hitmontop">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12771" article="a" name="fainted charged raichu">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="12772" article="a" name="fainted dark crobat">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12773" article="a" name="fainted dragon machamp">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12774" article="a" name="fainted elder arcanine">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12775" article="a" name="fainted elder blastoise">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12776" article="a" name="fainted elder charizard">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12777" article="a" name="fainted elder electabuzz">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12778" article="a" name="fainted elder gengar">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12779" article="a" name="fainted elder jynx">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12780" article="a" name="fainted elder marowak">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12781" article="a" name="fainted elder muk">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12782" article="a" name="fainted elder pidgeot">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12783" article="a" name="fainted elder pinsir">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12784" article="a" name="fainted elder raichu">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12785" article="a" name="fainted elder tangela">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12786" article="a" name="fainted elder tentacruel">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="12787" article="a" name="fainted elder tyranitar">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="12788" article="a" name="fainted enigmatic girafarig">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="12789" article="a" name="fainted enraged typhlosion">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12790" article="a" name="fainted evil cloyster">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12791" article="a" name="fainted freezing dewgong">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="12792" article="a" name="fainted furious ampharos">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="12793" article="a" name="fainted furios mantine">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="12794" article="a" name="fainted furios murkrow">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12795" article="a" name="fainted furious sandslash">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12796" article="a" name="fainted furious scyther">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12797" article="a" name="fainted gordo snorlax">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12798" article="a" name="fainted hard golem">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="12799" article="a" name="fainted heavy piloswine">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="12800" article="a" name="fainted iron steelix">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12801" article="a" name="fainted lance dragonite">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    
       <item id="14084" article="a" name="fainted salamence">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
       <item id="14166" article="a" name="fainted shiny salamence">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    
    <item id="14160" article="a" name="fainted tropius">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>
    

   <item id="12802" article="a" name="fainted lava magmar">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12803" article="a" name="fainted magnet electabuzz">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="12804" article="a" name="fainted master abra">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12805" article="a" name="fainted master alakazam">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="12806" article="a" name="fainted master stantler">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="12807" article="a" name="fainted metal scizor">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="12808" article="a" name="fainted metal skarmory">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="12809" article="a" name="fainted milch-miltank">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12810" article="a" name="fainted moon clefable">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="12811" article="a" name="fainted octopus octillery">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12812" article="a" name="fainted psy jynx">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="12813" article="a" name="fainted roll donphan">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12814" article="a" name="fainted scary gengar">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12815" article="a" name="fainted singer wigglytuff">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12816" article="a" name="fainted taekwondo hitmonlee">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="12817" article="a" name="fainted tribal feraligatr">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="12818" article="a" name="fainted tribal xatu">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12819" article="a" name="fainted undefted machamp">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12820" article="a" name="fainted war farfetch'd">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="12821" article="a" name="fainted war granbull">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12822" article="a" name="fainted war gyarados">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

    <item id="12823" article="a" name="fainted war heracross">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12824" article="a" name="fainted war muk">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

   <item id="12825" article="a" name="fainted wardog arcanine">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
    </item>

        <item id="12835" article="a" name="fainted shiny ampharos">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
        </item>

    <item id="12836" article="a" name="portrait">
        <attribute key="weight" value="0" />
        <attribute key="slotType" value="legs" />
    </item>

        <item id="12837" article="a" name="fainted shiny feraligatr">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
        </item>

    <item id="12838" article="a" name="portrait">
        <attribute key="weight" value="0" />
        <attribute key="slotType" value="legs" />
    </item>

        <item id="12839" article="a" name="fainted shiny larvitar">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
        </item>

    <item id="12840" article="a" name="portrait">
        <attribute key="weight" value="0" />
        <attribute key="slotType" value="legs" />
    </item>

        <item id="12841" article="a" name="fainted shiny machamp">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
        </item>

    <item id="12842" article="a" name="portrait">
        <attribute key="weight" value="0" />
        <attribute key="slotType" value="legs" />
    </item>

        <item id="12843" article="a" name="fainted shiny meganium">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
        </item>

    <item id="12844" article="a" name="portrait">
        <attribute key="weight" value="0" />
        <attribute key="slotType" value="legs" />
    </item>

        <item id="12845" article="a" name="fainted shiny pupitar">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
        </item>

    <item id="12846" article="a" name="portrait">
        <attribute key="weight" value="0" />
        <attribute key="slotType" value="legs" />
    </item>

        <item id="12847" article="a" name="fainted shiny tauros">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
        </item>

    <item id="12848" article="a" name="portrait">
        <attribute key="weight" value="0" />
        <attribute key="slotType" value="legs" />
    </item>

        <item id="12849" article="a" name="fainted shiny typhlosion">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
        </item>

    <item id="12850" article="a" name="portrait">
        <attribute key="weight" value="0" />
        <attribute key="slotType" value="legs" />
    </item>

        <item id="12851" article="a" name="fainted shiny xatu">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="300" />
        </item>

    <item id="12852" article="a" name="portrait">
        <attribute key="weight" value="0" />
        <attribute key="slotType" value="legs" />
    </item>

    <item id="12389" name="Tapete preto" />
    <item fromid="12723" toid="12727" article="a" name="Balcao Vermelho"/>

    <item id="3976" article="a" name="worm">
    <attribute key="description" value="Item to use in you fishing!  (fish = 20)." />
    </item>

    <item id="12855" article="a" name="Seaweed">
    <attribute key="description" value="Item to use in you fishing!  (fish = 25)." />
    </item>
    
    <item id="12854" article="a" name="Fish">
    <attribute key="description" value="Item to use in you fishing!  (fish = 40)." />
    </item>
    
        <item id="12858" article="a" name="Shrimp">
    <attribute key="description" value="Item to use in you fishing!  (fish = 50)." />
    </item>
    
    <item id="12857" article="a" name="Kept">
    <attribute key="description" value="Item to use in you fishing!  (fish = 60)." />
    </item>
    
    <item id="12860" article="a" name="Steak">
    <attribute key="description" value="Item to use in you fishing! (fish = 70)." />
    </item>
    
    <item id="12859" article="a" name="Special Lure">
    <attribute key="description" value="Item to use in you fishing!  (fish = 80)." />
    </item>
    
    <item id="12856" article="a" name="Misty's Special Lure">
    <attribute key="description" value="Item to use in you fishing!  (fish = 80)." />
    </item>
    
    <item id="12853" article="a" name="Big Steak">
    <attribute key="description" value="Item to use in you fishing! (fish = 90)." />
    </item>

    <item id="12853" article="a" name="Elemental Lure">
    </item>

<item id="12861" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12862" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12863" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12864" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12865" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12866" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12867" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12868" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12869" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12870" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12871" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12872" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12873" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12874" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12875" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12876" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12877" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12878" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12879" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12880" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12881" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12882" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12883" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12884" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12885" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12886" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12887" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12888" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12889" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12890" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12891" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12892" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12893" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12894" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12895" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12896" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12897" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12898" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12899" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12900" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12901" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12902" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12903" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12904" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12905" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12906" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="0" />
<attribute key="slotType" value="feet" />
</item>

<item id="12907" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12908" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12909" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12910" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12911" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12912" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12913" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12914" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12915" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12916" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12917" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12918" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12919" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12920" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12921" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12922" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12923" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12924" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12925" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12926" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12927" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12928" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12929" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12930" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12931" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12932" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12933" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12934" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12935" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12936" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12937" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12938" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12939" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12940" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12941" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12942" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12943" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12944" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12945" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12946" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12947" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12948" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12949" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12950" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12951" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12952" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12953" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12954" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12955" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12956" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12957" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12958" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12959" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12960" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12961" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12962" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12963" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12964" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12965" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12966" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12967" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12968" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12969" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12970" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12971" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12972" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12973" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12974" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12975" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12976" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12977" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12978" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12979" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12980" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12981" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12982" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12983" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12984" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12985" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12986" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12987" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12988" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12989" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12990" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12991" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12992" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12993" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12994" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12995" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12996" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12997" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12998" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="12999" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13000" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13001" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13002" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13003" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13004" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13005" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13006" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13007" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13008" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13009" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13010" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13011" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13012" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13013" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13014" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13015" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13016" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13017" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13018" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13019" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13020" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13021" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13022" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13023" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13024" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13025" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13026" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13027" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13028" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13029" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13030" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13031" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13032" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13033" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13034" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13035" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13036" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13037" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13038" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13039" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13040" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13041" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13042" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13043" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13044" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13045" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13046" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13047" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13048" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13049" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13050" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13051" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13052" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13053" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13054" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13055" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13056" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13057" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13058" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13059" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13060" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13061" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13062" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13063" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13064" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13065" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13066" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13067" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13068" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13069" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13070" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13071" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13072" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13073" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13074" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13075" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13076" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13077" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13078" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13079" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13080" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13081" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13082" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13083" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13084" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="15647" article="a" name="Icone.">
      <attribute key="ispokeball" value="1"/>
      <attribute key="weight" value="100" />
      <attribute key="slotType" value="feet" />
</item>

<item id="15648" article="a" name="Icone.">
      <attribute key="ispokeball" value="1"/>
      <attribute key="weight" value="100" />
      <attribute key="slotType" value="feet" />
</item>

<item id="15649" article="a" name="Icone.">
      <attribute key="ispokeball" value="1"/>
      <attribute key="weight" value="100" />
      <attribute key="slotType" value="feet" />
</item>

<item id="13085" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13086" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13087" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13088" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13089" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13090" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13091" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13092" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13093" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13094" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13095" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13096" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13097" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13098" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13099" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13100" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13101" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13102" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13103" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13104" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13105" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13106" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13107" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13108" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13109" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13110" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13111" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13112" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13113" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13114" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13115" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13116" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13117" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13118" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13119" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13120" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13121" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13122" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13123" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13124" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13125" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13126" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13127" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13128" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13129" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13130" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13131" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13132" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13133" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13134" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13135" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13136" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13137" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13138" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13139" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13140" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13141" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13142" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13143" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13144" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13145" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13146" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13147" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13148" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13149" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13150" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13151" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13152" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13153" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13154" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13155" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13156" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13157" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13158" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13159" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13160" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13161" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13162" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13163" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13164" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13165" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13166" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13167" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13168" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13169" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13170" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13171" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13172" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13173" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13174" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13175" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13176" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13177" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13178" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13179" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13180" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13181" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13182" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13183" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13184" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13185" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13186" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13187" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13188" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13189" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13190" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13191" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13192" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13193" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13194" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13195" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13196" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13197" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13198" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13199" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13200" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13201" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13202" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13203" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13204" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13205" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13206" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13207" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13208" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13209" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13210" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13211" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13212" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13213" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13214" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13215" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13216" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13217" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13218" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13219" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13220" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13221" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13222" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13223" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13224" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13225" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13226" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13227" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13228" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13229" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13230" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13231" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13232" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13233" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13234" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13235" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13236" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13237" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13238" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13239" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13240" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13241" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13242" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13243" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13244" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13245" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13246" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13247" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>


<item id="13248" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13249" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13250" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13251" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13252" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13253" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13254" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13255" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13256" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13257" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13258" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13259" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13260" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13261" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13262" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13263" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13264" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13265" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13266" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13267" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13268" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13269" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13270" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13271" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13272" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13273" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13274" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13275" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13276" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13277" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13278" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13279" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13280" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13281" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13282" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13283" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13284" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13285" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13286" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13287" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13288" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13289" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13290" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13291" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13292" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13293" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13294" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13295" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13296" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13297" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13298" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13299" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13300" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13301" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13302" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13303" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13304" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13305" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13306" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13307" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13308" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13309" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13310" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13311" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13312" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13313" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13314" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13315" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13316" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13317" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13318" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13319" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13320" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13321" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13322" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13323" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13324" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13325" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13326" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13327" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13328" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13329" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13330" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13331" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13332" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13333" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13334" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13335" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13336" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13337" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13338" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13339" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13340" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13341" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13342" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13343" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13344" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13345" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13346" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13347" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13348" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13349" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13350" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13351" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13352" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13353" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13354" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13355" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13356" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13357" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13358" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13359" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13360" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13361" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13362" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13363" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13364" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13365" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13366" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13367" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13368" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13369" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13370" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13371" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13372" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13373" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13374" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13375" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13376" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13377" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13378" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13379" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13380" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13381" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13382" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13383" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13384" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13385" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13386" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13387" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13388" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13389" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13390" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13391" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13392" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13393" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13394" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13395" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13396" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13397" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13398" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13399" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13400" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13401" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13402" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13403" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13404" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13405" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13406" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13407" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13408" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13409" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13410" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13411" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13412" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13413" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13414" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13415" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13416" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13417" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13418" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13419" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13420" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13421" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13422" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13423" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13424" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13425" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13426" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13427" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13428" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13429" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13430" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13431" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13432" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13433" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13434" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13435" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13436" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13437" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13438" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13439" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13440" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13441" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13442" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13443" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13444" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13445" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13446" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13447" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13448" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13449" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13450" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13451" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13452" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13453" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13454" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13455" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13456" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13457" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13458" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13459" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13460" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13461" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13462" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13463" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13464" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13465" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13466" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13467" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13468" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13469" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13470" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13471" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13472" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13473" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13474" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13475" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13476" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13477" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13478" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13479" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13480" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13481" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13482" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13483" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13484" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13485" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13486" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13487" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13488" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13489" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13490" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13491" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13492" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13493" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13494" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13495" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13496" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13497" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13498" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13499" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13500" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13501" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13502" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13503" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13504" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13505" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13506" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13507" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13508" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13509" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13510" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13511" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13512" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13513" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13514" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13515" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13516" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13517" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13518" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13519" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13520" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13521" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13522" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13523" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13524" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13525" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13526" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13527" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13528" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13529" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13530" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13531" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13532" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13533" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13534" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13535" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13536" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13537" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13538" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13539" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13540" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13541" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13542" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13543" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13544" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13545" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13546" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13547" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13548" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13549" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13550" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13551" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13552" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13553" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13554" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13555" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13556" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13557" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13558" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13559" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13560" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13561" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13562" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13563" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13564" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13565" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13566" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13567" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13568" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13569" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13570" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13571" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13572" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13573" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13574" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13575" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13576" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13577" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13578" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13579" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13580" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13581" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13582" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13583" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13584" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13585" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13586" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13587" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13588" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13589" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13590" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13591" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13592" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13593" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13594" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13595" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13596" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13597" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13598" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13599" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13600" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13601" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13602" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13603" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13604" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13605" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13606" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13607" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13608" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13609" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13610" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13611" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13612" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13613" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13614" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13615" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13616" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13617" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13618" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13619" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13620" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13621" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13622" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13623" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13624" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13625" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13626" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13627" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13628" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13629" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13630" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13631" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13632" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13633" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13634" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13635" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13636" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13637" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13638" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13639" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13640" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13641" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13642" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13643" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13644" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13645" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13646" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13647" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13648" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13649" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13650" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13651" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13652" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13653" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13654" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13655" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13656" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13657" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13658" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13659" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13660" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13661" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13662" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13663" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13664" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13665" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13666" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13667" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13668" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13669" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13670" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13671" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13672" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13673" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13674" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13675" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13676" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13677" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13678" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13679" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13680" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13681" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13682" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13683" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13684" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13685" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13686" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13687" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13688" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13689" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13690" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13691" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13692" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13693" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13694" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13695" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13696" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13697" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13698" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13699" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13700" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13701" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13702" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13703" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13704" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13705" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13706" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13707" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13708" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13709" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13710" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13711" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13712" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13713" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13714" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13715" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13716" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13717" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13718" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13719" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13720" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13721" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13722" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13723" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13724" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13725" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13726" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13727" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13728" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13729" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13730" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13731" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13732" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13733" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13734" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13735" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13736" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13737" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13738" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13739" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13740" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13741" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13742" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13743" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13744" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13745" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13746" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13747" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13748" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13749" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13750" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13751" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13752" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13753" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13754" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13755" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13756" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13757" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13758" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13759" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13760" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13761" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13762" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13763" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13764" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13765" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13766" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13767" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13768" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13769" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13770" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13771" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13772" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13773" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13774" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13775" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13776" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13777" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13778" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13779" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13780" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13781" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13797" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13798" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13799" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13800" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13801" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13802" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13803" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13804" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13805" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13806" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13807" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13808" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13809" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13810" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13811" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13812" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13813" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13814" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13815" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13816" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13817" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13818" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13819" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13820" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13821" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13822" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13823" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>
    <item id="13824" article="a" name="kit package">
        <attribute key="weight" value="0" />
    </item>
        <item id="13825" article="a" name="kit package">
        <attribute key="weight" value="0" />
    </item>
    
            <item id="9448" article="a" name="Outland Main TP">
            <attribute key="description" value="Usando esse item você sera teleportado para o proximo desafio mais lembre-se essa quest necessita dos 9 clans para termina-la." />
        <attribute key="weight" value="0" />
    </item>
    
                <item id="13826" article="a" name="Outland Main TP.2">
            <attribute key="description" value="Usando esse item você sera teleportado para o proximo desafio mais lembre-se essa quest necessita dos 9 clans para termina-la." />
        <attribute key="weight" value="0" />
    </item>
                <item id="13827" article="a" name="Outland Main TP.3">
            <attribute key="description" value="Usando esse item você sera teleportado para o proximo desafio mais lembre-se essa quest necessita dos 9 clans para termina-la." />
        <attribute key="weight" value="0" />
    </item>
                <item id="13828" article="a" name="Outland Main TP.4">
            <attribute key="description" value="Usando esse item você sera teleportado para o proximo desafio mais lembre-se essa quest necessita dos 9 clans para termina-la." />
        <attribute key="weight" value="0" />
    </item>
                <item id="13829" article="a" name="Outland Main TP.5">
            <attribute key="description" value="Usando esse item você sera teleportado para o proximo desafio mais lembre-se essa quest necessita dos 9 clans para termina-la." />
        <attribute key="weight" value="0" />
    </item>
                <item id="13830" article="a" name="Outland Main TP.6">
            <attribute key="description" value="Usando esse item você sera teleportado para o proximo desafio mais lembre-se essa quest necessita dos 9 clans para termina-la." />
        <attribute key="weight" value="0" />
    </item>
                <item id="13831" article="a" name="Outland Main TP.7">
            <attribute key="description" value="Usando esse item você sera teleportado para o proximo desafio mais lembre-se essa quest necessita dos 9 clans para termina-la." />
        <attribute key="weight" value="0" />
    </item>
                <item id="13832" article="a" name="Outland Main TP.8">
            <attribute key="description" value="Usando esse item você sera teleportado para o proximo desafio mais lembre-se essa quest necessita dos 9 clans para termina-la." />
        <attribute key="weight" value="0" />
    </item>
                <item id="13833" article="a" name="Outland Main TP.9">
            <attribute key="description" value="Usando esse item você sera teleportado para o proximo desafio mais lembre-se essa quest necessita dos 9 clans para termina-la." />
        <attribute key="weight" value="0" />
    </item>
                <item id="13834" article="a" name="Outland Main TP.10">
            <attribute key="description" value="Usando esse item você sera teleportado para o proximo desafio mais lembre-se essa quest necessita dos 9 clans para termina-la." />
        <attribute key="weight" value="0" />
    </item>
                    <item id="13835" article="a" name="Outland Main TP. Last Room">
            <attribute key="description" value="Usando esse item você sera teleportado para o proximo desafio mais lembre-se essa quest necessita dos 9 clans para termina-la." />
        <attribute key="weight" value="0" />
    </item>
    
<item id="13836" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13837" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13838" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>
    
<item id="13839" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13840" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13841" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>
    
<item id="13842" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13843" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13844" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>
    
<item id="13845" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13846" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13847" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>
    
<item id="13848" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13849" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13850" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

    
<item id="13851" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13852" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13853" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

    
<item id="13854" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13855" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13856" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13857" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13858" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13859" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13860" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13861" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

        <item id="13862" article="a" name="xatu wing" plural="xatu wings">
        <attribute key="weight" value="0" />
    </item>
    
        <item id="13863" article="a" name="snake tail" plural="snake tails">
        <attribute key="weight" value="0" />
    </item>
    
            <item id="13864" article="a" name="seahorse tail" plural="seahorse tails">
        <attribute key="weight" value="0" />
    </item>
    
        <item id="13865" article="a" name="strange sting" plural="strange stings">
        <attribute key="weight" value="0" />
    </item>
    
            <item id="13866" article="a" name="tentacle" plural="tentacles">
        <attribute key="weight" value="0" />
    </item>
    
        <item id="13867" article="a" name="strange rock" plural="strange rocks">
        <attribute key="weight" value="0" />
    </item>
    
    <item id="13868" article="a" name="skarmory wing" plural="skarmory wings">
        <attribute key="weight" value="0" />
    </item>
    
    <item id="13870" article="a" name="star gem" plural="star gems">
        <attribute key="weight" value="0" />
    </item>
    
        <item id="13871" article="a" name="tyranitar tail" plural="tyranitar tails">
        <attribute key="weight" value="0" />
    </item>
    
    <item id="13872" article="a" name="small tail" plural="small tails">
        <attribute key="weight" value="0" />
    </item>
    
        <item id="13873" article="a" name="magmar foot" plural="magmar foots">
        <attribute key="weight" value="0" />
    </item>
    
    <item id="13874" article="a" name="red wing" plural="red wings">
        <attribute key="weight" value="0" />
    </item>
    
        <item id="13875" article="a" name="gligar claw" plural="gligar claws">
        <attribute key="weight" value="0" />
    </item>
    
    <item id="13876" article="a" name="insect foot" plural="insect foots">
        <attribute key="weight" value="0" />
    </item>
    
        <item id="13877" article="a" name="strange wing" plural="strange wings">
        <attribute key="weight" value="0" />
    </item>
    
    <item id="13878" article="a" name="mantine tail" plural="mantine tails">
        <attribute key="weight" value="0" />
    </item>
    
        <item id="13879" article="a" name="small tusk" plural="small tusks">
        <attribute key="weight" value="0" />
    </item>
    
    <item id="13880" article="a" name="nidoran male ear" plural="nidoran male ears">
        <attribute key="weight" value="0" />
    </item>
    
        <item id="13881" article="a" name="skin tail" plural="skin tails">
        <attribute key="weight" value="0" />
    </item>
    
    <item id="13882" article="a" name="stick hand" plural="stick hands">
        <attribute key="weight" value="0" />
    </item>
    
        <item id="13883" article="a" name="aipom hand" plural="aipom hands">
        <attribute key="weight" value="0" />
    </item>
    
    <item id="13884" article="a" name="ledyba wing" plural="ledyba wings">
        <attribute key="weight" value="0" />
    </item>
    
        <item id="13885" article="a" name="strange antenna" plural="strange antennas">
        <attribute key="weight" value="0" />
    </item>
    
    <item id="13886" article="a" name="squirry tail" plural="squirry tails">
        <attribute key="weight" value="0" />
    </item>
    
        <item id="13887" article="a" name="point of light" plural="point of lights">
        <attribute key="weight" value="0" />
    </item>
    
    <item id="13888" article="a" name="kangaskhan ear" plural="kangaskhan ears">
        <attribute key="weight" value="0" />
    </item>
    
        <item id="13889" article="a" name="strange flower" plural="strange flowers">
        <attribute key="weight" value="0" />
    </item>
    
    <item id="13890" article="a" name="great petal" plural="great petals">
        <attribute key="weight" value="0" />
    </item>
    
        <item id="13891" article="a" name="great flower" plural="great flowers">
        <attribute key="weight" value="0" />
    </item>
    
    <item id="13892" article="a" name="fire tail" plural="fire tails">
        <attribute key="weight" value="0" />
    </item>
    
        <item id="13893" article="a" name="strange horn" plural="strange horns">
        <attribute key="weight" value="0" />
    </item>
    
    <item id="13894" article="a" name="piece of coral" plural="piece of corals">
        <attribute key="weight" value="0" />
    </item>
    
        <item id="13895" article="a" name="shuckle armor" plural="shuckle armors">
        <attribute key="weight" value="0" />
    </item>
    
    <item id="13896" article="a" name="................" plural=".........s">
        <attribute key="weight" value="0" />
    </item>
    
        <item id="13897" article="a" name="plant tail" plural="plat tails">
        <attribute key="weight" value="0" />
    </item>
    
    <item id="13898" article="a" name="sea tail" plural="sea tails">
        <attribute key="weight" value="0" />
    </item>
    
        <item id="13899" article="a" name="helicopter leaves" plural="helicopter leaves">
        <attribute key="weight" value="0" />
    </item>
    
    <item id="13900" article="a" name="strange spike" plural="strange spikes">
        <attribute key="weight" value="0" />
    </item>
    
        <item id="13901" article="a" name="topknot" plural="topknot">
        <attribute key="weight" value="0" />
    </item>
    
    
<item id="13902" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13903" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13904" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13915" article="a" name="portrait">
<attribute key="weight" value="0" />
<attribute key="slotType" value="legs" />
</item>
    
<item id="13916" article="a" name="portrait">
<attribute key="weight" value="0" />
<attribute key="slotType" value="legs" />
</item>
    
<item id="13917" article="a" name="fainted shiny magcargo">
<attribute key="containerSize" value="10" />
<attribute key="decayTo" value="0" />
<attribute key="duration" value="300" />
</item>
    
<item id="13918" article="a" name="fainted shiny lanturn">
<attribute key="containerSize" value="10" />
<attribute key="decayTo" value="0" />
<attribute key="duration" value="300" />
</item>
    
        
<item id="13919" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13920" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13921" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>
    
<item id="13922" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13923" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13924" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13925" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13926" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13927" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13928" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13929" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13930" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13933" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13934" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13935" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13937" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13938" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="13939" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14190" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14191" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14192" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14020" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14021" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14022" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14015" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14016" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14017" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14163" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14164" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14165" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14081" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14082" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14083" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14178" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14179" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14180" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14193" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14194" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14195" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14157" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14158" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14159" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14141" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14142" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14143" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14173" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14174" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14175" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14033" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14034" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14035" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14038" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14039" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14040" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14043" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="17592" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="17584" article="a" name="Icone.">
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14044" article="a" name="Icone using">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14045" article="a" name="Icone dead">    
<attribute value="1" key="ispokeball"/>
<attribute key="weight" value="100" />
<attribute key="slotType" value="feet" />
</item>

<item id="14708" article="a" name="fainted Treecko">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14779" article="a" name="fainted Grovyle">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14750" article="a" name="fainted Sceptile">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14711" article="a" name="fainted Torchic">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14712" article="a" name="fainted Combusken">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14752" article="a" name="fainted Blaziken">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14709" article="a" name="fainted Mudkip">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14710" article="a" name="fainted Marshtomp">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14751" article="a" name="fainted Swampert">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2806" article="a" name="fainted Poochyena">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2807" article="a" name="fainted Mightyena">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2808" article="a" name="fainted Zigzagoon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2809" article="a" name="fainted Linoone">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2813" article="a" name="fainted Wurmple">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2820" article="a" name="fainted Silcoon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2824" article="a" name="fainted Beautifly">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2826" article="a" name="fainted Cascoon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2830" article="a" name="fainted Dustox">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14720" article="a" name="fainted Lotad">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14721" article="a" name="fainted Lombre">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14757" article="a" name="fainted Ludicolo">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14787" article="a" name="fainted Seedot">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14788" article="a" name="fainted Nuzleaf">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14775" article="a" name="fainted Shiftry">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14785" article="a" name="fainted Taillow">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14776" article="a" name="fainted Swellow">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2835" article="a" name="fainted Wingull">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2836" article="a" name="fainted Pelipper">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14706" article="a" name="fainted Ralts">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14707" article="a" name="fainted Kirlia">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14749" article="a" name="fainted Gardevoir">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2837" article="a" name="fainted Surskit">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2839" article="a" name="fainted Masquerain">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2840" article="a" name="fainted Shroomish">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2843" article="a" name="fainted Breloom">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14737" article="a" name="fainted Slakoth">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14765" article="a" name="fainted Vigoroth">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14780" article="a" name="fainted Slaking">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14728" article="a" name="fainted Nincada">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14728" article="a" name="fainted Ninjask">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14729" article="a" name="fainted Shedinja">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14736" article="a" name="fainted Whismur">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14763" article="a" name="fainted Loudred">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14764" article="a" name="fainted Exploud">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14717" article="a" name="fainted Makuhita">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14756" article="a" name="fainted Hariyama">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2844" article="a" name="fainted Azurill">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2845" article="a" name="fainted Nosepass">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2848" article="a" name="fainted Skitty">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2849" article="a" name="fainted Delcatyy">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14790" article="a" name="fainted Sableye">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14769" article="a" name="fainted Mawile">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14713" article="a" name="fainted Aron">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14778" article="a" name="fainted Lairon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14753" article="a" name="fainted Aggron">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14723" article="a" name="fainted Meditite">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14724" article="a" name="fainted Medicham">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14716" article="a" name="fainted Electrike">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14755" article="a" name="fainted Manectric">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="15667" article="a" name="fainted Plusle">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="15666" article="a" name="fainted Minun">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2850" article="a" name="fainted Illumise">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2853" article="a" name="fainted Volbeat">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2857" article="a" name="fainted Roselia">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2858" article="a" name="fainted Gulpin">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2860" article="a" name="fainted Swalot">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2862" article="a" name="fainted Carvanha">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2864" article="a" name="fainted Sharpedo">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14171" article="a" name="fainted Wailmer">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14176" article="a" name="fainted Wailord">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14741" article="a" name="fainted Numel">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14766" article="a" name="fainted Camerupt">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14784" article="a" name="fainted Torkoal">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14734" article="a" name="fainted Spoink">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14735" article="a" name="fainted Grumpig">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2871" article="a" name="fainted Spinda">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14726" article="a" name="fainted Trapinch">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14781" article="a" name="fainted Vibrava">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14759" article="a" name="fainted Flygon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2872" article="a" name="fainted Cacnea">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2876" article="a" name="fainted Cacturne">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14722" article="a" name="fainted Swablu">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14758" article="a" name="fainted Altaria">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14791" article="a" name="fainted Zangoose">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14774" article="a" name="fainted Seviper">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2877" article="a" name="fainted Lunatone">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2881" article="a" name="fainted Solrock">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2882" article="a" name="fainted Barboach">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2886" article="a" name="fainted Whiscash">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14738" article="a" name="fainted Corphish">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14782" article="a" name="fainted Crawdaunt">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14786" article="a" name="fainted Baltoy">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14767" article="a" name="fainted Claydol">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2889" article="a" name="fainted Lileep">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2893" article="a" name="fainted Cradily">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2897" article="a" name="fainted Anorith">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="15657" article="a" name="fainted Armaldo">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14733" article="a" name="fainted Feebas">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14793" article="a" name="fainted Milotic">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2902" article="a" name="fainted Castform">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="15654" article="a" name="fainted Kecleon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14732" article="a" name="fainted Shuppet">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14748" article="a" name="fainted Banette">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14731" article="a" name="fainted Duskull">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14762" article="a" name="fainted Dusclops">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14792" article="a" name="fainted Tropius">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2905" article="a" name="fainted Chimecho">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14768" article="a" name="fainted Absol">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2906" article="a" name="fainted Wynaut">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14718" article="a" name="fainted Snorunt">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14719" article="a" name="fainted Glalie">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14739" article="a" name="fainted Spheal">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14740" article="a" name="fainted Sealeo">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14777" article="a" name="fainted Walrein">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2908" article="a" name="fainted Clamperl">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2909" article="a" name="fainted Huntail">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2913" article="a" name="fainted Gorebyss">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2914" article="a" name="fainted Relicanth">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2915" article="a" name="fainted Luvdisc">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14714" article="a" name="fainted Bagon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14715" article="a" name="fainted Shelgon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14754" article="a" name="fainted Salamence">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14727" article="a" name="fainted Beldum">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14760" article="a" name="fainted Metang">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14761" article="a" name="fainted Metagross">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2916" article="a" name="fainted Regirock">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2917" article="a" name="fainted Regice">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2920" article="a" name="fainted Registeel">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2924" article="a" name="fainted Latias">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2928" article="a" name="fainted Latios">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2929" article="a" name="fainted Kyogre">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2931" article="a" name="fainted Groudon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2932" article="a" name="fainted Rayquaza">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2935" article="a" name="fainted Jirachi">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2936" article="a" name="fainted Deoxys">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>

<item id="2938" article="a" name="fainted Turtwig">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2940" article="a" name="fainted Grotle">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2941" article="a" name="fainted Torterra">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2945" article="a" name="fainted Chimchar">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2946" article="a" name="fainted Monferno">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2949" article="a" name="fainted Infernape">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2952" article="a" name="fainted Piplup">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2953" article="a" name="fainted Prinplup">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2956" article="a" name="fainted Empoleon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2957" article="a" name="fainted Starly">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2960" article="a" name="fainted Staravia">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2961" article="a" name="fainted Staraptor">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2967" article="a" name="fainted Bidoof">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2968" article="a" name="fainted Bibarel">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2969" article="a" name="fainted Kricketot">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2970" article="a" name="fainted Kricketune">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2972" article="a" name="fainted Shinx">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2973" article="a" name="fainted Luxio">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2975" article="a" name="fainted Luxray">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2977" article="a" name="fainted Budew">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2979" article="a" name="fainted Roserade">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2980" article="a" name="fainted Cranidos">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2981" article="a" name="fainted Rampardos">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2982" article="a" name="fainted Shieldon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="15658" article="a" name="fainted Bastiodon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2984" article="a" name="fainted Burmy">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2985" article="a" name="fainted Wormadam">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2986" article="a" name="fainted Mothim">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2987" article="a" name="fainted Combee">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2988" article="a" name="fainted Vespiquen">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="2989" article="a" name="fainted Pachirisu">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="3001" article="a" name="fainted Buizel">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="3002" article="a" name="fainted Floatzel">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="3004" article="a" name="fainted Cherubi">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="3005" article="a" name="fainted Cherrim">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="3010" article="a" name="fainted Shellos">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="3013" article="a" name="fainted Gastrodon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="3016" article="a" name="fainted Ambipom">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="3017" article="a" name="fainted Drifloon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="3019" article="a" name="fainted Drifblim">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="3022" article="a" name="fainted Buneary">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="3025" article="a" name="fainted Lopunny">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="3028" article="a" name="fainted Mismagius">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="3031" article="a" name="fainted Honchkrow">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="3035" article="a" name="fainted Glameow">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="3037" article="a" name="fainted Purugly">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="3038" article="a" name="fainted Chingling">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="3040" article="a" name="fainted Stunky">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="3041" article="a" name="fainted Skuntank">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="3043" article="a" name="fainted Bronzor">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="15655" article="a" name="fainted Bronzong">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="3046" article="a" name="fainted Bonsly">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="4253" article="a" name="fainted Mime Jr">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="4256" article="a" name="fainted Happiny">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="4262" article="a" name="fainted Chatot">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="6042" article="a" name="fainted Spiritomb">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="4268" article="a" name="fainted Gible">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="4271" article="a" name="fainted Gabite">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="4274" article="a" name="fainted Garchomp">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="4277" article="a" name="fainted Munchlax">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14789" article="a" name="fainted Riolu">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14772" article="a" name="fainted Lucario">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="4280" article="a" name="fainted Hippopotas">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="4283" article="a" name="fainted Hippowdon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="4286" article="a" name="fainted Skorupi">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="4289" article="a" name="fainted Drapion">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="4292" article="a" name="fainted Croagunk">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="4295" article="a" name="fainted Toxicroak">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="4298" article="a" name="fainted Carnivine">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="4301" article="a" name="fainted Finneon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="4304" article="a" name="fainted Lumineon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="4307" article="a" name="fainted Mantyke">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="4317" article="a" name="fainted Snover">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="4320" article="a" name="fainted Abomasnow">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="4323" article="a" name="fainted Weavile">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14783" article="a" name="fainted Magnezone">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="4326" article="a" name="fainted Lickilicky">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14773" article="a" name="fainted Rhyperior">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14794" article="a" name="fainted Tangrowth">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="13997" article="a" name="fainted Electivire">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="13998" article="a" name="fainted Magmortar">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="5960" article="a" name="fainted Togekiss">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="5961" article="a" name="fainted Yanmega">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="5962" article="a" name="fainted Leafeon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="5986" article="a" name="fainted Glaceon">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="5963" article="a" name="fainted Gliscor">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="5964" article="a" name="fainted Mamoswine">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="5966" article="a" name="fainted Porygon-Z">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="5967" article="a" name="fainted Gallade">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="5968" article="a" name="fainted Probopass">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="14770" article="a" name="fainted Dusknoir">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="5969" article="a" name="fainted Froslass">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="5970" article="a" name="fainted Rotom">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="5971" article="a" name="fainted Uxie">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="5972" article="a" name="fainted Mesprit">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="5973" article="a" name="fainted Azelf">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="5975" article="a" name="fainted Dialga">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="5976" article="a" name="fainted Palkia">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="5976" article="a" name="fainted Heatran">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="5977" article="a" name="fainted Regigigas">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="5978" article="a" name="fainted Giratina">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="5979" article="a" name="fainted Cresselia">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="5980" article="a" name="fainted Phione">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="5981" article="a" name="fainted Manaphy">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="5982" article="a" name="fainted Darkrai">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="5984" article="a" name="fainted Shaymin">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>
<item id="5985" article="a" name="fainted Arceus">
        <attribute key="containerSize" value="10" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="55" />
</item>

<!-- Novos itens -->
<item id="15077" article="a" name="Magnet"/>
<item id="15079" article="a" name="Wing Orb"/>
<item id="15081" article="a" name="Greens"/>
<item id="15082" article="a" name="Colorful Wing"/>
<item id="15084" article="a" name="Slaking Face"/>
<item id="15094" article="a" name="Crimson Feather"/>
<item id="15096" article="a" name="Bouquet"/>
<item id="15098" article="a" name="Dark Orbit"/>
<item id="15099" article="a" name="Beautiful Scales"/>
<item id="15097" article="a" name="Scizor Claw"/>
<item id="15102" article="a" name="Black Hull"/>
<item id="15112" article="a" name="Metal Hull"/>
<item id="15115" article="a" name="Mine Wing"/>
<item id="15123" article="a" name="Sharp End"/>
<item id="15125" article="a" name="Rhyperior Punch"/>
<item id="15127" article="a" name="Electivire Punch"/>
<item id="15128" article="a" name="Nape Flame"/>
<item id="15126" article="a" name="Tangrowth Skin"/>
<item id="15103" article="a" name="Spoink Tail"/>
<item id="15111" article="a" name="Mawile Teeth"/>
<item id="15109" article="a" name="Sand Tail"/>
<item id="15108" article="a" name="Strange Ball"/>
<item id="15091" article="a" name="Bed of Water Grass"/>
<item id="15129" article="a" name="Phantom Orb"/>
<item id="15105" article="a" name="Duskull Skull"/>
<item id="15089" article="a" name="Haryama Hand"/>
<item id="15093" article="a" name="Tail Tine"/>
<item id="15107" article="a" name="Green Leaf"/>
<item id="15121" article="a" name="Fluffy"/>
<item id="15124" article="a" name="Stone Magnet"/>

<!-- Held Itens-->
<item id="15559" article="a" name="X-Attack (tier: 1)"/>    
<item id="15560" article="a" name="X-Attack (tier: 2)"/>    
<item id="15561" article="a" name="X-Attack (tier: 3)"/>    
<item id="15562" article="a" name="X-Attack (tier: 4)"/>    
<item id="15563" article="a" name="X-Attack (tier: 5)"/>    
<item id="15564" article="a" name="X-Attack (tier: 6)"/>    
<item id="15565" article="a" name="X-Attack (tier: 7)"/>

<item id="15566" article="a" name="X-Block (tier: 1)"/>    
<item id="15567" article="a" name="X-Block (tier: 2)"/>    
<item id="15568" article="a" name="X-Block (tier: 3)"/>    
<item id="15569" article="a" name="X-Block (tier: 4)"/>    
<item id="15570" article="a" name="X-Block (tier: 5)"/>    
<item id="15571" article="a" name="X-Block (tier: 6)"/>    
<item id="15572" article="a" name="X-Block (tier: 7)"/>    

<item id="15573" article="a" name="X-Boost (tier: 1)"/>    
<item id="15574" article="a" name="X-Boost (tier: 2)"/>    
<item id="15575" article="a" name="X-Boost (tier: 3)"/>    
<item id="15576" article="a" name="X-Boost (tier: 4)"/>    
<item id="15577" article="a" name="X-Boost (tier: 5)"/>    
<item id="15578" article="a" name="X-Boost (tier: 6)"/>    
<item id="15579" article="a" name="X-Boost (tier: 7)"/>    

<item id="15580" article="a" name="X-Critical (tier: 1)"/>    
<item id="15581" article="a" name="X-Critical (tier: 2)"/>    
<item id="15582" article="a" name="X-Critical (tier: 3)"/>    
<item id="15583" article="a" name="X-Critical (tier: 4)"/>    
<item id="15584" article="a" name="X-Critical (tier: 5)"/>    
<item id="15585" article="a" name="X-Critical (tier: 6)"/>    
<item id="15586" article="a" name="X-Critical (tier: 7)"/>    

<item id="15587" article="a" name="X-Defense (tier: 1)"/>    
<item id="15588" article="a" name="X-Defense (tier: 2)"/>    
<item id="15589" article="a" name="X-Defense (tier: 3)"/>    
<item id="15590" article="a" name="X-Defense (tier: 4)"/>    
<item id="15591" article="a" name="X-Defense (tier: 5)"/>    
<item id="15592" article="a" name="X-Defense (tier: 6)"/>    
<item id="15593" article="a" name="X-Defense (tier: 7)"/>    

<item id="15594" article="a" name="X-Experience (tier: 1)"/>    
<item id="15595" article="a" name="X-Experience (tier: 2)"/>    
<item id="15596" article="a" name="X-Experience (tier: 3)"/>    
<item id="15597" article="a" name="X-Experience (tier: 4)"/>    
<item id="15598" article="a" name="X-Experience (tier: 5)"/>    
<item id="15599" article="a" name="X-Experience (tier: 6)"/>    
<item id="15600" article="a" name="X-Experience (tier: 7)"/>

<item id="15601" article="a" name="X-Hellfire (tier: 1)"/>    
<item id="15602" article="a" name="X-Hellfire (tier: 2)"/>    
<item id="15603" article="a" name="X-Hellfire (tier: 3)"/>    
<item id="15604" article="a" name="X-Hellfire (tier: 4)"/>    
<item id="15605" article="a" name="X-Hellfire (tier: 5)"/>    
<item id="15606" article="a" name="X-Hellfire (tier: 6)"/>    
<item id="15607" article="a" name="X-Hellfire (tier: 7)"/>

<item id="15608" article="a" name="X-Haste (tier: 1)"/>    
<item id="15609" article="a" name="X-Haste (tier: 2)"/>    
<item id="15610" article="a" name="X-Haste (tier: 3)"/>    
<item id="15611" article="a" name="X-Haste (tier: 4)"/>    
<item id="15612" article="a" name="X-Haste (tier: 5)"/>    
<item id="15613" article="a" name="X-Haste (tier: 6)"/>    
<item id="15614" article="a" name="X-Haste (tier: 7)"/>    

<item id="15615" article="a" name="X-Lucky (tier: 1)"/>    
<item id="15616" article="a" name="X-Lucky (tier: 2)"/>    
<item id="15617" article="a" name="X-Lucky (tier: 3)"/>    
<item id="15618" article="a" name="X-Lucky (tier: 4)"/>    
<item id="15619" article="a" name="X-Lucky (tier: 5)"/>    
<item id="15620" article="a" name="X-Lucky (tier: 6)"/>    
<item id="15621" article="a" name="X-Lucky (tier: 7)"/>    

<item id="15622" article="a" name="X-Poison (tier: 1)"/>    
<item id="15623" article="a" name="X-Poison (tier: 2)"/>    
<item id="15624" article="a" name="X-Poison (tier: 3)"/>    
<item id="15625" article="a" name="X-Poison (tier: 4)"/>    
<item id="15626" article="a" name="X-Poison (tier: 5)"/>    
<item id="15627" article="a" name="X-Poison (tier: 6)"/>    
<item id="15628" article="a" name="X-Poison (tier: 7)"/>

<item id="15629" article="a" name="X-Return (tier: 1)"/>    
<item id="15630" article="a" name="X-Return (tier: 2)"/>    
<item id="15631" article="a" name="X-Return (tier: 3)"/>    
<item id="15632" article="a" name="X-Return (tier: 4)"/>    
<item id="15633" article="a" name="X-Return (tier: 5)"/>    
<item id="15634" article="a" name="X-Return (tier: 6)"/>    
<item id="15635" article="a" name="X-Return (tier: 7)"/>    

<item id="15636" article="a" name="X-Vitality (tier: 1)"/>    
<item id="15637" article="a" name="X-Vitality (tier: 2)"/>    
<item id="15638" article="a" name="X-Vitality (tier: 3)"/>    
<item id="15639" article="a" name="X-Vitality (tier: 4)"/>    
<item id="15640" article="a" name="X-Vitality (tier: 5)"/>    
<item id="15641" article="a" name="X-Vitality (tier: 6)"/>    
<item id="15642" article="a" name="X-Vitality (tier: 7)"/>

<item fromid="16500" toid="16511" article="a" name="Saffari"/>    
<item id="16512" article="a" name="Pillar"/>
<item fromid="16513" toid="16515" article="a" name="Tiles"/>
<item fromid="16516" toid="16518" article="a" name="Walls"/>
<item fromid="16519" toid="16538" article="a" name="Rocks"/>
<item fromid="16539" toid="16565" article="a" name="Grounds"/>
    <item id="16566" name="stairs">
        <attribute key="floorchange" value="north" />
    </item>
    <item id="16568" name="stairs">
        <attribute key="floorchange" value="west" />
    </item>
    <item id="16567" name="stairs"/>
    <item id="16569" name="stairs"/>
    <item id="16689" name="Bike"/>
    <item id="17564" name="Robo"/>
        
<item fromid="16570" toid="16580" article="a" name="Grass"/>
<item fromid="16581" toid="16684" article="a" name="Wallss"/>
<item fromid="16690" toid="16694" article="a" name="Wallsss"/>
<item fromid="16699" toid="17100" article="a" name="Walls"/>    
</items>

Link para o post
Compartilhar em outros sites

Participe da conversa

Você pode postar agora e se cadastrar mais tarde. Se você tem uma conta, faça o login para postar com sua conta.

Visitante
Responder

×   Você colou conteúdo com formatação.   Remover formatação

  Apenas 75 emojis são permitidos.

×   Seu link foi automaticamente incorporado.   Mostrar como link

×   Seu conteúdo anterior foi restaurado.   Limpar o editor

×   Não é possível colar imagens diretamente. Carregar ou inserir imagens do URL.

  • Quem Está Navegando   0 membros estão online

    Nenhum usuário registrado visualizando esta página.

  • Conteúdo Similar

    • Por LasseXeterno
      Então, estou tentando adicionar uma nova "race" no meu Ot de base Cyan, tentei seguir 3 tutoriais aqui do tibiaking, um sobre race, porém nos códigos do meu servidor não tem o constant.h e nem o monster.cpp. E o outro tutorial, eu fiz tudo que ele pediu e quando entrei no game para testar, funcionava os golpes e as imunidades, porém não aparecia o número do dano e nem a cor.  Usei esse tutorial como base: 
      Pois ele é derivado. E o outro tutorial que usei foi: 
      Porém nesse, não consegui achar a const.h, e quando fui nos arquivos do creaturescript e adicionei uma cor nova a "COLOR_FAIRY", quando abro o jogo, os pokemons que seriam teoricamente "fada", o que eu usei de teste foi a Clefable. A Clefable tomava IK e dava IK no seu atk do tipo fada. 
      Além de que, o meu erro principal é esse: Warning - Monsters::loadMonster] Unknown race type fairy. (data/monster/pokes/geracao 1/Clefable.xml)
       Pois como eu já disse, não consigo achar onde adicionar uma nova race.

    • Por yuriowns
      Salve rapazes, tranquilo? Preciso de ajuda pra colocar para os npc's que vendem pots verificarem quantos itens possuem no tile em que o player está e se tiver com +80 itens no sqm, o npc avisa e não vende nada até o player ir em um sqm com menos de 80 itens no chão.
       
    • Por A.Mokk
      .Qual servidor ou website você utiliza como base? 
      TFS 0.4
      Qual o motivo deste tópico? 
      Bom pessoal, a algumas semanas atras eu joguei um servidor que havia sistema de imbuimento sendo 8.60, no servidor se utilizava a spellwand para encantar as armas, os comandos eram dado no canal Imbuiment... Gostaria de saber se alguém teria como disponibilizar algum sistema de imbuimento, já procurei pra caramba aqui no fórum mas tudo que encontro é pra versões acima da que eu uso.
       
    • Por Mateus Robeerto
      Não sei se aqui é a área ou algum local para solicitar a alteração do email antigo... Não lembro mais a senha dele, nem a resposta secreta para acessar. Peço a algum administrador ou moderador para, por favor, alterar o email para o novo.
×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo