### BREAKING CHANGE ### The constructor for `TextDefinition` has been removed. Instead use `TextDefinition.Of()` or cast the integer/string to TextDefinition.
22 lines
746 B
C#
22 lines
746 B
C#
namespace Server.Factions;
|
|
|
|
public class Britain : Town
|
|
{
|
|
public Britain() =>
|
|
Definition =
|
|
new TownDefinition(
|
|
0,
|
|
0x1869,
|
|
"Britain",
|
|
"Britain",
|
|
1011433, // BRITAIN
|
|
1011561, // TOWN STONE FOR BRITAIN
|
|
1041034, // The Faction Sigil Monolith of Britain
|
|
1041404, // The Faction Town Sigil Monolith of Britain
|
|
1041413, // Faction Town Stone of Britain
|
|
1041395, // Faction Town Sigil of Britain
|
|
1041386, // Corrupted Faction Town Sigil of Britain
|
|
new Point3D(1592, 1680, 10),
|
|
new Point3D(1588, 1676, 10)
|
|
);
|
|
}
|