#W# Added new graphics for farmable reagents.
This commit is contained in:
parent
ac0815868e
commit
61983993b7
10 changed files with 215 additions and 11 deletions
48
Scripts/Items/Farming/FarmableSpidersSilk.cs
Normal file
48
Scripts/Items/Farming/FarmableSpidersSilk.cs
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
using System;
|
||||
using Server;
|
||||
using Server.Network;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class FarmableSpidersSilk : FarmableCrop
|
||||
{
|
||||
public static int GetCropID()
|
||||
{
|
||||
return 0x3FF9;
|
||||
}
|
||||
|
||||
public override Item GetCropObject()
|
||||
{
|
||||
Item item = new SpidersSilk();
|
||||
item.Amount = 3;
|
||||
return item;
|
||||
}
|
||||
|
||||
public override int GetPickedID()
|
||||
{
|
||||
return 0xCB5;
|
||||
}
|
||||
|
||||
[Constructable]
|
||||
public FarmableSpidersSilk() : base( GetCropID() )
|
||||
{
|
||||
Name = "ginseng";
|
||||
}
|
||||
|
||||
public FarmableSpidersSilk( Serial serial ) : base( serial )
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize( GenericWriter writer )
|
||||
{
|
||||
base.Serialize( writer );
|
||||
writer.WriteEncodedInt( 0 ); // version
|
||||
}
|
||||
|
||||
public override void Deserialize( GenericReader reader )
|
||||
{
|
||||
base.Deserialize( reader );
|
||||
int version = reader.ReadEncodedInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue