Verified some drop rates.

This commit is contained in:
eos 2013-02-11 01:55:04 +00:00
parent f713bb6c81
commit 26a8efb0ed
3 changed files with 3 additions and 3 deletions

View file

@ -95,7 +95,7 @@ namespace Server.Mobiles
{
base.OnDeath( c );
if ( Utility.RandomDouble() < 0.10 )
if ( Utility.RandomDouble() < 0.35 )
c.DropItem( new KirinBrains() );
}

View file

@ -105,7 +105,7 @@ namespace Server.Mobiles
{
base.OnDeath( c );
if ( Utility.RandomDouble() < 0.10 )
if ( Utility.RandomDouble() < 0.35 )
c.DropItem( new UnicornRibs() );
}

View file

@ -58,7 +58,7 @@ namespace Server.Mobiles
{
base.OnDeath( c );
if ( Utility.RandomBool() )
if ( Utility.RandomDouble() < 0.35 )
c.DropItem( new PixieLeg() );
}