86 lines
No EOL
4.1 KiB
C#
86 lines
No EOL
4.1 KiB
C#
using System;
|
|
using Server;
|
|
|
|
namespace Server.Factions
|
|
{
|
|
public class CouncilOfMages : Faction
|
|
{
|
|
private static Faction m_Instance;
|
|
|
|
public static Faction Instance{ get{ return m_Instance; } }
|
|
|
|
public CouncilOfMages()
|
|
{
|
|
m_Instance = this;
|
|
|
|
Definition =
|
|
new FactionDefinition(
|
|
1,
|
|
1325, // blue
|
|
1310, // bluish white
|
|
1325, // join stone : blue
|
|
1325, // broadcast : blue
|
|
0x77, 0x3EB1, // war horse
|
|
"Council of Mages", "council",
|
|
new TextDefinition( 1011535, "COUNCIL OF MAGES" ),
|
|
new TextDefinition( 1060770, "Council of Mages faction" ),
|
|
new TextDefinition( 1011422, "<center>COUNCIL OF MAGES</center>" ),
|
|
new TextDefinition( 1011449,
|
|
"The council of Mages have their roots in the city of Moonglow, where " +
|
|
"they once convened. They began as a small movement, dedicated to " +
|
|
"calling forth the Stranger, who saved the lands once before. A " +
|
|
"series of war and murders and misbegotten trials by those loyal to " +
|
|
"Lord British has caused the group to take up the banner of war." ),
|
|
new TextDefinition( 1011455, "This city is controlled by the Council of Mages." ),
|
|
new TextDefinition( 1042253, "This sigil has been corrupted by the Council of Mages" ),
|
|
new TextDefinition( 1041044, "The faction signup stone for the Council of Mages" ),
|
|
new TextDefinition( 1041382, "The Faction Stone of the Council of Mages" ),
|
|
new TextDefinition( 1011464, ": Council of Mages" ),
|
|
new TextDefinition( 1005187, "Members of the Council of Mages will now be ignored." ),
|
|
new TextDefinition( 1005188, "Members of the Council of Mages will now be warned to leave." ),
|
|
new TextDefinition( 1005189, "Members of the Council of Mages will now be beaten with a stick." ),
|
|
new StrongholdDefinition(
|
|
new Rectangle2D[]
|
|
{
|
|
new Rectangle2D( 3756, 2232, 4, 23 ),
|
|
new Rectangle2D( 3760, 2227, 60, 28 ),
|
|
new Rectangle2D( 3782, 2219, 18, 8 ),
|
|
new Rectangle2D( 3778, 2255, 35, 17 )
|
|
},
|
|
new Point3D( 3750, 2241, 20 ),
|
|
new Point3D( 3795, 2259, 20 ),
|
|
new Point3D[]
|
|
{
|
|
new Point3D( 3793, 2255, 20 ),
|
|
new Point3D( 3793, 2252, 20 ),
|
|
new Point3D( 3793, 2249, 20 ),
|
|
new Point3D( 3793, 2246, 20 ),
|
|
new Point3D( 3797, 2255, 20 ),
|
|
new Point3D( 3797, 2252, 20 ),
|
|
new Point3D( 3797, 2249, 20 ),
|
|
new Point3D( 3797, 2246, 20 )
|
|
} ),
|
|
new RankDefinition[]
|
|
{
|
|
new RankDefinition( 10, 991, 8, new TextDefinition( 1060789, "Inquisitor of the Council" ) ),
|
|
new RankDefinition( 9, 950, 7, new TextDefinition( 1060788, "Archon of Principle" ) ),
|
|
new RankDefinition( 8, 900, 6, new TextDefinition( 1060787, "Luminary" ) ),
|
|
new RankDefinition( 7, 800, 6, new TextDefinition( 1060787, "Luminary" ) ),
|
|
new RankDefinition( 6, 700, 5, new TextDefinition( 1060786, "Diviner" ) ),
|
|
new RankDefinition( 5, 600, 5, new TextDefinition( 1060786, "Diviner" ) ),
|
|
new RankDefinition( 4, 500, 5, new TextDefinition( 1060786, "Diviner" ) ),
|
|
new RankDefinition( 3, 400, 4, new TextDefinition( 1060785, "Mystic" ) ),
|
|
new RankDefinition( 2, 200, 4, new TextDefinition( 1060785, "Mystic" ) ),
|
|
new RankDefinition( 1, 0, 4, new TextDefinition( 1060785, "Mystic" ) )
|
|
},
|
|
new GuardDefinition[]
|
|
{
|
|
new GuardDefinition( typeof( FactionHenchman ), 0x1403, 5000, 1000, 10, new TextDefinition( 1011526, "HENCHMAN" ), new TextDefinition( 1011510, "Hire Henchman" ) ),
|
|
new GuardDefinition( typeof( FactionMercenary ), 0x0F62, 6000, 2000, 10, new TextDefinition( 1011527, "MERCENARY" ), new TextDefinition( 1011511, "Hire Mercenary" ) ),
|
|
new GuardDefinition( typeof( FactionSorceress ), 0x0E89, 7000, 3000, 10, new TextDefinition( 1011507, "SORCERESS" ), new TextDefinition( 1011501, "Hire Sorceress" ) ),
|
|
new GuardDefinition( typeof( FactionWizard ), 0x13F8, 8000, 4000, 10, new TextDefinition( 1011508, "ELDER WIZARD" ), new TextDefinition( 1011502, "Hire Elder Wizard" ) ),
|
|
}
|
|
);
|
|
}
|
|
}
|
|
} |