#W# Exhuation system implimented. And Food has been tweaked.

This commit is contained in:
WarrentyExpired 2026-07-24 21:01:31 -04:00
parent 6cb014d51c
commit 15bb9dccb8
9 changed files with 211 additions and 181 deletions

View file

@ -15,7 +15,7 @@ namespace Server.Items
public Carrot( int amount ) : base( amount, 0xc78 )
{
this.Weight = 1.0;
this.FillFactor = 1;
this.FillFactor = 5;
}
public Carrot( Serial serial ) : base( serial )
@ -48,7 +48,7 @@ namespace Server.Items
public Cabbage( int amount ) : base( amount, 0xc7b )
{
this.Weight = 1.0;
this.FillFactor = 1;
this.FillFactor = 5;
}
public Cabbage( Serial serial ) : base( serial )
@ -81,7 +81,7 @@ namespace Server.Items
public Onion( int amount ) : base( amount, 0xc6d )
{
this.Weight = 1.0;
this.FillFactor = 1;
this.FillFactor = 5;
}
public Onion( Serial serial ) : base( serial )
@ -114,7 +114,7 @@ namespace Server.Items
public Lettuce( int amount ) : base( amount, 0xc70 )
{
this.Weight = 1.0;
this.FillFactor = 1;
this.FillFactor = 5;
}
public Lettuce( Serial serial ) : base( serial )
@ -147,7 +147,7 @@ namespace Server.Items
{
Name = "tomato";
this.Weight = 1.0;
this.FillFactor = 1;
this.FillFactor = 5;
}
public Tomato( Serial serial ) : base( serial )
@ -179,7 +179,7 @@ namespace Server.Items
public Pumpkin( int amount ) : base( amount, 0xC6A )
{
this.Weight = 1.0;
this.FillFactor = 8;
this.FillFactor = 18;
}
public Pumpkin( Serial serial ) : base( serial )
@ -240,4 +240,4 @@ namespace Server.Items
int version = reader.ReadInt();
}
}
}
}