#W# Dungeon Passage Relics add/to loot. Teleports you to a random classic dungeon.

This commit is contained in:
WarrentyExpired 2026-08-13 19:48:45 -04:00
parent 1947e3c9e3
commit 23e3ede401
2 changed files with 147 additions and 0 deletions

View file

@ -4063,6 +4063,14 @@ namespace Server.Mobiles
AddLoot( LootPack.UltraRich );
}
if ( Fame >= 5000 )
{
if ( Utility.RandomDouble() < 0.10 )
{
PackItem( new Server.Items.DungeonPassageRelic() );
}
}
m_Spawning = false;
m_KillersLuck = 0;
}