Verified some drop rates.
This commit is contained in:
parent
f713bb6c81
commit
26a8efb0ed
3 changed files with 3 additions and 3 deletions
|
|
@ -95,7 +95,7 @@ namespace Server.Mobiles
|
|||
{
|
||||
base.OnDeath( c );
|
||||
|
||||
if ( Utility.RandomDouble() < 0.10 )
|
||||
if ( Utility.RandomDouble() < 0.35 )
|
||||
c.DropItem( new KirinBrains() );
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -105,7 +105,7 @@ namespace Server.Mobiles
|
|||
{
|
||||
base.OnDeath( c );
|
||||
|
||||
if ( Utility.RandomDouble() < 0.10 )
|
||||
if ( Utility.RandomDouble() < 0.35 )
|
||||
c.DropItem( new UnicornRibs() );
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ namespace Server.Mobiles
|
|||
{
|
||||
base.OnDeath( c );
|
||||
|
||||
if ( Utility.RandomBool() )
|
||||
if ( Utility.RandomDouble() < 0.35 )
|
||||
c.DropItem( new PixieLeg() );
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue