#W# Initial Commit: Avatars Conquest
This commit is contained in:
commit
5df497787a
7510 changed files with 416048 additions and 0 deletions
53
Scripts/Items/Maps/SeaChart.cs
Normal file
53
Scripts/Items/Maps/SeaChart.cs
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
using System;
|
||||
using Server;
|
||||
using Server.Misc;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class SeaChart : MapItem
|
||||
{
|
||||
[Constructable]
|
||||
public SeaChart()
|
||||
{
|
||||
SetDisplay( 0, 0, 5119, 4095, 400, 400 );
|
||||
}
|
||||
|
||||
public override void CraftInit( Mobile from )
|
||||
{
|
||||
double skillValue = Server.Misc.SkillCheck.TradeSkill( from, Trades.Cartography, false );
|
||||
int dist = 64 + (int)(skillValue * 10);
|
||||
|
||||
if ( dist < 200 )
|
||||
dist = 200;
|
||||
|
||||
int size = 24 + (int)(skillValue * 3.3);
|
||||
|
||||
if ( size < 200 )
|
||||
size = 200;
|
||||
else if ( size > 400 )
|
||||
size = 400;
|
||||
|
||||
SetDisplay( from.X - dist, from.Y - dist, from.X + dist, from.Y + dist, size, size );
|
||||
}
|
||||
|
||||
public override int LabelNumber{ get{ return 1015232; } } // sea chart
|
||||
|
||||
public SeaChart( Serial serial ) : base( serial )
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize( GenericWriter writer )
|
||||
{
|
||||
base.Serialize( writer );
|
||||
|
||||
writer.Write( (int) 0 );
|
||||
}
|
||||
|
||||
public override void Deserialize( GenericReader reader )
|
||||
{
|
||||
base.Deserialize( reader );
|
||||
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue