#W# Overland animal spawns.

This commit is contained in:
WarrentyExpired 2026-07-29 14:29:13 -04:00
parent 0e3654fcbb
commit aa90c00db5
3 changed files with 157 additions and 50 deletions

View file

@ -55,12 +55,12 @@ namespace Server
private static Type[] ForestBirds = new Type[]
{
typeof( Bird ), typeof( Turkey ), typeof( Eagle ), typeof( AxeBeak )
typeof( Bird ), typeof( Turkey ), typeof( Eagle )
};
private static Type[] DesertBirds = new Type[]
{
typeof( Bird ), typeof( Eagle ), typeof( Phoenix )
typeof( Bird ), typeof( Eagle )
};
private static Type[] SnowBirds = new Type[]
@ -75,17 +75,17 @@ namespace Server
private static Type[] JungleBirds = new Type[]
{
typeof( Bird ), typeof( AxeBeak ), typeof( Eagle )
typeof( Bird ), typeof( Eagle )
};
private static Type[] SwampBirds = new Type[]
{
typeof( Bird ), typeof( Eagle ), typeof( AxeBeak )
typeof( Bird ), typeof( Eagle )
};
private static Type[] DirtBirds = new Type[]
{
typeof( Bird ), typeof( Chicken ), typeof( AxeBeak )
typeof( Bird ), typeof( Chicken )
};
//---------------------------------------- Animals ----------------------------------------

View file

@ -135,8 +135,8 @@ namespace Server.Misc
newChar.Female = args.Female;
newChar.Race = Race.Human;
newChar.Hue = newChar.Race.ClipSkinHue( args.Hue & 0x3FFF ) | 0x8000;
newChar.Hunger = 20;
newChar.Thirst = 20;
newChar.Hunger = 100;
newChar.Thirst = 100;
if ( newChar is PlayerMobile )
{
@ -492,4 +492,4 @@ namespace Server.Misc
item.Delete();
}
}
}
}