Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
@@ -0,0 +1,187 @@
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class BlackthornBaseAddon : BaseAddon
|
||||
{
|
||||
[Constructable]
|
||||
public BlackthornBaseAddon()
|
||||
{
|
||||
}
|
||||
|
||||
public BlackthornBaseAddon(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public static void AddComplexComponent(BaseAddon addon, int item, int xoffset, int yoffset, int zoffset, int hue, int lightsource)
|
||||
{
|
||||
AddComplexComponent(addon, item, xoffset, yoffset, zoffset, hue, lightsource, null, 1);
|
||||
}
|
||||
|
||||
public static void AddComplexComponent(BaseAddon addon, int item, int xoffset, int yoffset, int zoffset, int hue, int lightsource, string name, int amount)
|
||||
{
|
||||
AddonComponent ac;
|
||||
ac = new AddonComponent(item);
|
||||
if (name != null && name.Length > 0)
|
||||
ac.Name = name;
|
||||
if (hue != 0)
|
||||
ac.Hue = hue;
|
||||
if (amount > 1)
|
||||
{
|
||||
ac.Stackable = true;
|
||||
ac.Amount = amount;
|
||||
}
|
||||
if (lightsource != -1)
|
||||
ac.Light = (LightType)lightsource;
|
||||
addon.AddComponent(ac, xoffset, yoffset, zoffset);
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write(0); // Version
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
|
||||
public class BlackthornEntry : BlackthornBaseAddon
|
||||
{
|
||||
public static BlackthornEntry InstanceTram { get; set; }
|
||||
public static BlackthornEntry InstanceFel { get; set; }
|
||||
|
||||
private static int[,] m_AddOnSimpleComponents = new int[,]
|
||||
{
|
||||
{6923, 7, 3, 0}, {12906, -5, 12, 0}, {12906, -4, 12, 0}// 10 18 19
|
||||
, {12906, -4, 11, 0}, {12906, -5, 11, 0}, {12906, -6, 11, 0}// 20 21 22
|
||||
, {12906, -7, 11, 0}, {12906, -8, 11, 0}, {12906, -7, 12, 0}// 23 24 25
|
||||
, {12906, -6, 12, 0}, {12906, -6, 13, 0}, {12906, -5, 13, 0}// 26 27 28
|
||||
, {12906, -4, 13, 0}, {12906, -3, 12, 0}, {12906, -3, 13, 0}// 29 30 31
|
||||
, {12906, -3, 14, 0}, {12906, -2, 14, 0}, {12906, -2, 13, 0}// 32 33 34
|
||||
, {12906, -2, 12, 0}, {12906, -2, 11, 0}, {12906, -3, 11, 0}// 35 36 37
|
||||
, {4952, -1, 14, 0}, {4956, -1, 13, 0}, {4967, -1, 12, 5}// 38 39 40
|
||||
, {4962, -1, 12, 0}, {4963, -1, 11, 5}, {4962, -1, 11, 0}// 41 42 43
|
||||
, {4288, -9, 4, 10}, {6875, -8, -5, 0}, {6873, -8, -4, 0}// 44 46 47
|
||||
, {3545, 6, -2, 0}, {3545, -5, -1, 0}, {3545, 1, -5, 0}// 49 50 51
|
||||
, {3545, 2, 2, 0}, {3545, 6, 2, 0}, {12906, 3, 0, 0}// 52 53 63
|
||||
, {12906, 4, 0, 0}, {12906, 4, -1, 0}, {12906, 3, -1, 0}// 64 65 66
|
||||
, {12906, 2, -2, 0}, {12906, 3, -2, 0}, {12906, 3, -4, 0}// 67 68 69
|
||||
, {12906, -1, -4, 0}, {12906, 1, -4, 0}, {12906, 3, -3, 0}// 70 71 72
|
||||
, {12906, 2, -3, 0}, {12906, 1, -3, 0}, {12906, 1, -2, 0}// 73 74 75
|
||||
, {12906, 0, -2, 0}, {12906, 0, -3, 0}, {12906, -1, -3, 0}// 76 77 78
|
||||
, {12906, -2, -4, 0}, {12906, -2, -3, 0}, {12906, -3, -2, 0}// 79 80 81
|
||||
, {12906, -2, -2, 0}, {12906, -3, -3, 0}, {12906, -3, -5, 0}// 82 83 84
|
||||
, {12906, -3, -4, 0}, {12906, -4, -4, 0}, {12906, -4, -5, 0}// 85 86 87
|
||||
, {4960, -1, -1, 0}, {4952, 0, -1, 0}, {4945, 2, -1, 0}// 88 89 90
|
||||
, {4954, 3, 0, 0}, {4973, 2, 1, 0}, {4967, 3, 1, 0}// 91 92 93
|
||||
, {4970, 4, 1, 0}, {4963, 5, 1, 0}, {4967, 5, 0, 0}// 94 95 96
|
||||
, {4963, 5, -1, 0}, {4970, 4, -2, 0}, {4963, 4, -2, 0}// 97 98 99
|
||||
, {4963, 4, -3, 0}, {4970, 4, -4, 0}, {4960, 3, -4, 0}// 100 101 102
|
||||
, {4967, 2, -4, 0}, {4967, 1, -4, 0}, {4959, 0, -4, 0}// 103 104 105
|
||||
, {4962, 0, -4, 0}, {4967, -1, -4, 0}, {4957, -1, -4, 0}// 106 107 108
|
||||
, {4943, -1, -5, 0}, {6011, -4, -5, 2}, {6008, -5, -5, 0}// 109 110 111
|
||||
, {4955, -2, -1, 0}, {4955, -3, -2, 0}, {4955, -4, -3, 0}// 112 113 114
|
||||
, {4961, -5, -4, 0}, {6008, -4, -4, 0}, {12906, -4, 10, 0}// 115 116 117
|
||||
, {12906, -5, 10, 0}, {12906, -6, 10, 0}, {12906, -7, 10, 0}// 118 119 120
|
||||
, {12906, -8, 10, 0}, {12906, -9, 10, 0}, {12906, -9, 9, 0}// 121 122 123
|
||||
, {12906, -8, 9, 0}, {12906, -7, 9, 0}, {12906, -6, 9, 0}// 124 125 126
|
||||
, {12906, -5, 9, 0}, {12906, -4, 9, 0}, {12906, -5, 8, 0}// 127 128 129
|
||||
, {12906, -6, 8, 0}, {12906, -7, 8, 0}, {12906, -8, 8, 0}// 130 131 132
|
||||
, {12906, -9, 8, 0}, {4962, -1, 10, 0}, {4962, -2, 10, 0}// 133 134 135
|
||||
, {4967, -3, 10, 0}, {4967, -3, 9, 0}, {4962, -3, 8, 0}// 136 137 138
|
||||
, {4962, -4, 8, 0}, {4967, -5, 7, 0}, {4963, -7, 7, 0}// 139 140 141
|
||||
, {4962, -7, 7, 0}, {4962, -8, 7, 0}, {4967, -9, 7, 0}// 142 143 144
|
||||
, {4962, -9, 7, 0}, {12906, 0, -13, 0}, {12906, -1, -13, 0}// 145 146 147
|
||||
, {12906, 0, -14, 0}, {12906, 0, -15, 0}, {12906, -1, -15, 0}// 148 149 150
|
||||
, {12906, -1, -14, 0}, {4968, 0, -16, 2}, {4970, 1, -16, 0}// 151 152 153
|
||||
, {4970, -1, -16, 5}, {4970, 0, -16, 2}, {4968, -1, -16, 5}// 154 155 156
|
||||
, {4965, 0, -16, 5}, {4965, -1, -16, 5}, {4967, 0, -16, 0}// 157 158 159
|
||||
, {4964, 0, -16, 0}, {4960, -1, -16, 0}, {12906, -4, -6, 0}// 160 161 162
|
||||
, {12906, -3, -6, 0}, {12906, -2, -6, 0}, {12906, -1, -7, 0}// 163 164 165
|
||||
, {12906, -1, -8, 0}, {12906, -2, -8, 0}, {12906, -2, -7, 0}// 166 167 168
|
||||
, {12906, -3, -7, 0}, {12906, -4, -7, 0}, {12906, -4, -8, 0}// 169 170 171
|
||||
, {12906, -3, -9, 0}, {12906, -3, -8, 0}, {12906, -2, -9, 0}// 172 173 174
|
||||
, {12906, -1, -9, 0}, {12906, -1, -10, 0}, {12906, 0, -9, 0}// 175 176 177
|
||||
, {12906, 0, -10, 0}, {12906, 1, -9, 0}, {12906, 2, -9, 0}// 178 179 180
|
||||
, {12906, 3, -8, 0}, {12906, 3, -9, 0}, {12906, 1, -10, 0}// 181 182 183
|
||||
, {12906, 3, -10, 0}, {12906, 2, -10, 0}, {12906, 2, -11, 0}// 184 185 186
|
||||
, {12906, 1, -11, 0}, {12906, 0, -11, 0}, {12906, -1, -11, 0}// 187 188 189
|
||||
, {12906, 1, -12, 0}, {12906, 0, -12, 0}, {12906, -1, -12, 0}// 190 191 192
|
||||
, {4959, -1, -6, 0}, {4967, 0, -7, 0}, {4967, 0, -8, 0}// 193 194 195
|
||||
, {4967, 1, -8, 0}, {4967, 2, -8, 0}, {4960, 4, -8, 0}// 196 197 198
|
||||
, {4956, 4, -9, 0}, {4956, 4, -10, 0}, {4955, -4, -6, 0}// 199 200 201
|
||||
, {4961, -5, -7, 0}, {4961, -4, -7, 4}, {4967, -5, -8, 0}// 202 203 204
|
||||
, {4963, -4, -8, 0}, {4961, -4, -9, 0}, {4967, -3, -9, 0}// 205 206 207
|
||||
, {4286, -11, 6, 10}, {4287, -10, 5, 10}, {4967, -11, 5, 0}// 208 209 210
|
||||
, {12906, -10, 9, 0}, {12906, -10, 8, 0}, {12906, -10, 7, 0}// 211 212 213
|
||||
, {12906, -11, 7, 0}, {12906, -11, 8, 0}, {4962, -10, 6, 0}// 214 215 216
|
||||
, {4954, -11, 7, 0}// 217
|
||||
};
|
||||
|
||||
[Constructable]
|
||||
public BlackthornEntry()
|
||||
{
|
||||
for (int i = 0; i < m_AddOnSimpleComponents.Length / 4; i++)
|
||||
AddComponent(new AddonComponent(m_AddOnSimpleComponents[i, 0]), m_AddOnSimpleComponents[i, 1], m_AddOnSimpleComponents[i, 2], m_AddOnSimpleComponents[i, 3]);
|
||||
|
||||
AddComplexComponent((BaseAddon)this, 954, 7, -2, 0, 1175, -1, "", 1);// 1
|
||||
AddComplexComponent((BaseAddon)this, 964, 7, -1, 0, 1175, -1, "", 1);// 2
|
||||
AddComplexComponent((BaseAddon)this, 956, 7, -1, 0, 1175, -1, "", 1);// 3
|
||||
AddComplexComponent((BaseAddon)this, 954, 8, -1, 0, 1175, -1, "", 1);// 4
|
||||
AddComplexComponent((BaseAddon)this, 963, 9, -1, 0, 1175, -1, "", 1);// 5
|
||||
AddComplexComponent((BaseAddon)this, 960, 10, -1, 0, 1175, -1, "", 1);// 6
|
||||
AddComplexComponent((BaseAddon)this, 965, 12, -1, 0, 1175, -1, "", 1);// 7
|
||||
AddComplexComponent((BaseAddon)this, 963, 11, -1, 0, 1175, -1, "", 1);// 8
|
||||
AddComplexComponent((BaseAddon)this, 3387, 9, -3, 0, 1109, -1, "", 1);// 9
|
||||
AddComplexComponent((BaseAddon)this, 7392, 9, 6, 0, 2500, -1, "", 1);// 11
|
||||
AddComplexComponent((BaseAddon)this, 3388, 10, 2, 0, 1109, -1, "", 1);// 12
|
||||
AddComplexComponent((BaseAddon)this, 3388, 3, 12, 0, 1109, -1, "", 1);// 13
|
||||
AddComplexComponent((BaseAddon)this, 3392, 0, 16, 10, 1920, -1, "", 1);// 14
|
||||
AddComplexComponent((BaseAddon)this, 3392, 0, 16, 5, 1920, -1, "", 1);// 15
|
||||
AddComplexComponent((BaseAddon)this, 3392, 0, 16, 0, 1920, -1, "", 1);// 16
|
||||
AddComplexComponent((BaseAddon)this, 3392, 0, 16, 0, 1920, -1, "", 1);// 17
|
||||
AddComplexComponent((BaseAddon)this, 3387, -9, -1, 0, 1109, -1, "", 1);// 45
|
||||
AddComplexComponent((BaseAddon)this, 3566, -7, -3, 0, 2500, -1, "", 1);// 48
|
||||
AddComplexComponent((BaseAddon)this, 3389, 4, 2, 0, 1109, -1, "", 1);// 54
|
||||
AddComplexComponent((BaseAddon)this, 3566, 6, -4, 3, 2500, -1, "", 1);// 55
|
||||
AddComplexComponent((BaseAddon)this, 953, 6, -4, 0, 1175, -1, "", 1);// 56
|
||||
AddComplexComponent((BaseAddon)this, 953, 6, -3, 0, 1175, -1, "", 1);// 57
|
||||
AddComplexComponent((BaseAddon)this, 951, 6, -2, 0, 1175, -1, "", 1);// 58
|
||||
AddComplexComponent((BaseAddon)this, 7396, -8, 3, 0, 2500, -1, "", 1);// 59
|
||||
AddComplexComponent((BaseAddon)this, 3388, -8, 6, 0, 2500, -1, "", 1);// 60
|
||||
AddComplexComponent((BaseAddon)this, 7390, 1, 8, 0, 2500, -1, "", 1);// 61
|
||||
AddComplexComponent((BaseAddon)this, 6053, 5, -2, 0, 2548, -1, "", 1);// 62
|
||||
}
|
||||
|
||||
public BlackthornEntry(Serial serial) : base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write(0); // Version
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
|
||||
if (Map == Map.Trammel)
|
||||
{
|
||||
InstanceTram = this;
|
||||
}
|
||||
|
||||
if (Map == Map.Felucca)
|
||||
{
|
||||
InstanceFel = this;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,443 @@
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class BlackthornStep2 : BlackthornBaseAddon
|
||||
{
|
||||
public static BlackthornStep2 InstanceTram { get; set; }
|
||||
public static BlackthornStep2 InstanceFel { get; set; }
|
||||
|
||||
private static int[,] m_AddOnSimpleComponents = new int[,]
|
||||
{
|
||||
{15874, 6, 13, 0}, {15874, 7, 13, 0}, {15874, 8, 13, 0}// 6 7 8
|
||||
, {15874, 9, 13, 0}, {15874, 10, 13, 0}, {15874, 11, 13, 0}// 9 10 11
|
||||
, {6584, 20, 15, 0}, {6584, 21, 16, 1}, {17729, 13, 13, 0}// 18 22 53
|
||||
, {41325, 6, -2, 6}, {15874, 6, 5, 0}, {15874, 7, 5, 0}// 54 55 56
|
||||
, {15874, 8, 5, 0}, {15874, 9, 5, 0}, {15874, 10, 5, 0}// 57 58 59
|
||||
, {15874, 11, 5, 0}, {4309, 6, -8, 6}, {17081, -1, 19, 0}// 60 152 153
|
||||
, {17077, 5, 25, 12}, {17088, 1, 25, 13}, {40737, 4, 26, 1}// 154 155 156
|
||||
, {17082, -1, 26, 0}, {40735, -1, 24, 1}, {40737, -1, 20, 1}// 157 158 159
|
||||
, {16388, 1, 21, 13}, {17083, 5, 21, 13}, {40738, 4, 19, 1}// 160 161 162
|
||||
, {16649, 1, 17, 0}, {15874, -4, 13, 0}, {15874, -3, 13, 0}// 163 164 165
|
||||
, {15874, -2, 13, 0}, {15874, -5, 13, 0}, {15874, -6, 13, 0}// 166 167 168
|
||||
, {4306, 0, -2, 2}, {4306, 2, -4, 5}, {41195, 1, 1, 0}// 171 172 173
|
||||
, {41156, 0, 7, 0}, {12906, -10, 9, 0}, {12906, -9, -4, 0}// 174 175 179
|
||||
, {12906, -9, -3, 0}, {12906, -10, -4, 0}, {12906, -10, -3, 0}// 180 181 182
|
||||
, {12906, -9, -2, 0}, {12906, -10, -2, 0}, {12906, -10, -1, 0}// 183 184 185
|
||||
, {12906, -9, -1, 0}, {12906, -9, 0, 0}, {12906, -9, 1, 0}// 186 187 188
|
||||
, {12906, -10, 0, 0}, {12906, -10, 1, 0}, {12906, -8, 3, 0}// 189 190 191
|
||||
, {12906, -9, 2, 0}, {12906, -10, 2, 0}, {12906, -10, 3, 0}// 192 193 194
|
||||
, {12906, -9, 3, 0}, {12906, -9, 4, 0}, {12906, -8, 4, 0}// 195 196 197
|
||||
, {4963, -10, 4, 0}, {4967, -7, 5, 0}, {15874, -6, 5, 0}// 199 205 206
|
||||
, {15874, -5, 5, 0}, {15874, -4, 5, 0}, {15874, -3, 5, 0}// 207 208 209
|
||||
, {15874, -2, 5, 0}, {15874, -1, 5, 0}, {15874, 0, 5, 0}// 210 211 212
|
||||
, {15874, 1, 4, 0}, {15874, 2, 4, 0}, {15719, 2, -5, 6}// 213 214 215
|
||||
, {4317, -1, -10, 2}, {4313, -1, -10, 0}, {41317, 2, -9, 6}// 216 217 218
|
||||
, {16642, 4, -10, 0}, {12906, -9, -20, 0}, {12906, -10, -20, 0}// 219 220 221
|
||||
, {12906, -10, -19, 0}, {12906, -9, -19, 0}, {12906, -9, -18, 0}// 222 223 224
|
||||
, {12906, -10, -18, 0}, {12906, -10, -17, 0}, {12906, -9, -17, 0}// 225 226 227
|
||||
, {12906, -9, -16, 0}, {12906, -10, -16, 0}, {12906, -10, -15, 0}// 228 229 230
|
||||
, {12906, -9, -15, 0}, {12906, -9, -14, 0}, {12906, -10, -14, 0}// 231 232 233
|
||||
, {12906, -10, -13, 0}, {12906, -9, -13, 0}, {12906, -9, -12, 0}// 234 235 236
|
||||
, {12906, -10, -12, 0}, {12906, -10, -11, 0}, {12906, -9, -11, 0}// 237 238 239
|
||||
, {12906, -9, -10, 0}, {12906, -10, -10, 0}, {12906, -10, -8, 0}// 240 241 242
|
||||
, {12906, -9, -8, 0}, {12906, -9, -9, 0}, {12906, -10, -9, 0}// 243 244 245
|
||||
, {12906, -10, -7, 0}, {12906, -9, -7, 0}, {12906, -9, -6, 0}// 246 247 248
|
||||
, {12906, -10, -6, 0}, {12906, -10, -5, 0}, {12906, -9, -5, 0}// 249 250 251
|
||||
, {4410, -9, -22, 0}, {12906, -10, -21, 0}, {12906, -10, -22, 0}// 252 253 254
|
||||
, {12906, -9, -22, 0}, {12906, -9, -21, 0}, {12906, -9, -23, 0}// 255 256 257
|
||||
, {12906, -10, -23, 0}, {12906, -10, -24, 0}, {12906, -9, -24, 0}// 258 259 260
|
||||
, {12906, -9, -25, 0}, {12906, -10, -25, 0}, {12906, -11, 12, 0}// 261 262 263
|
||||
, {12906, -12, 12, 0}, {12906, -13, 12, 0}, {12906, -14, 12, 0}// 264 265 266
|
||||
, {12906, -15, 12, 0}, {12906, -16, 12, 0}, {12906, -17, 12, 0}// 267 268 269
|
||||
, {12906, -18, 12, 0}, {12906, -19, 12, 0}, {12906, -20, 12, 0}// 270 271 272
|
||||
, {12906, -21, 12, 0}, {12906, -22, 12, 0}, {40364, -16, 9, 0}// 273 274 275
|
||||
, {19100, -18, 9, 0}, {15800, -14, 11, 0}, {12865, -19, -4, 0}// 276 277 278
|
||||
, {12865, -21, -3, 0}, {12865, -21, -1, 0}, {12865, -20, 0, 0}// 279 280 281
|
||||
, {12865, -20, 3, 0}, {12865, -21, 2, 0}, {12865, -21, 5, 0}// 282 283 284
|
||||
, {12865, -19, 4, 0}, {12865, -20, 7, 0}, {12865, -21, 8, 0}// 285 286 287
|
||||
, {12865, -20, 9, 0}, {12865, -20, 10, 0}, {12865, -21, 10, 0}// 288 289 290
|
||||
, {12906, -11, 10, 0}, {12906, -12, 11, 0}, {12906, -11, 11, 0}// 291 292 293
|
||||
, {12906, -13, 9, 0}, {12906, -12, 10, 0}, {12906, -13, 11, 0}// 294 295 296
|
||||
, {12906, -14, 11, 0}, {12906, -14, 10, 0}, {12906, -14, 9, 0}// 297 298 299
|
||||
, {12906, -13, 10, 0}, {12906, -15, 10, 0}, {12906, -15, 11, 0}// 300 301 302
|
||||
, {12906, -16, 11, 0}, {12906, -16, 10, 0}, {12906, -17, 10, 0}// 303 304 305
|
||||
, {12906, -17, 11, 0}, {12906, -17, 8, 0}, {12906, -16, 9, 0}// 306 307 308
|
||||
, {12906, -17, 9, 0}, {12906, -18, 8, 0}, {12906, -18, 9, 0}// 309 310 311
|
||||
, {12906, -18, 9, 0}, {12906, -19, 7, 0}, {12906, -19, 6, 0}// 312 313 314
|
||||
, {12906, -19, 5, 0}, {12906, -19, 4, 0}, {12906, -19, 3, 0}// 315 316 317
|
||||
, {12906, -19, 2, 0}, {12906, -19, 1, 0}, {12906, -19, 0, 0}// 318 319 320
|
||||
, {12906, -19, -1, 0}, {12906, -19, -2, 0}, {12906, -19, -3, 0}// 321 322 323
|
||||
, {12906, -19, -4, 0}, {12906, -20, -4, 0}, {12906, -21, -4, 0}// 324 325 326
|
||||
, {12906, -22, -4, 0}, {12906, -22, -3, 0}, {12906, -21, -3, 0}// 327 328 329
|
||||
, {12906, -20, -3, 0}, {12906, -20, -2, 0}, {12906, -20, -1, 0}// 330 331 332
|
||||
, {12906, -20, 0, 0}, {12906, -20, 1, 0}, {12906, -20, 2, 0}// 333 334 335
|
||||
, {12906, -20, 3, 0}, {12906, -20, 4, 0}, {12906, -20, 5, 0}// 336 337 338
|
||||
, {12906, -20, 6, 0}, {12906, -20, 7, 0}, {12906, -20, 9, 0}// 339 340 341
|
||||
, {12906, -20, 8, 0}, {12906, -19, 8, 0}, {12906, -19, 9, 0}// 342 343 344
|
||||
, {12906, -19, 11, 0}, {12906, -19, 10, 0}, {12906, -20, 10, 0}// 345 346 347
|
||||
, {12906, -20, 11, 0}, {12906, -21, 11, 0}, {12906, -21, 10, 0}// 348 349 350
|
||||
, {12906, -21, 9, 0}, {12906, -21, 8, 0}, {12906, -21, 7, 0}// 351 352 353
|
||||
, {12906, -21, 6, 0}, {12906, -21, 5, 0}, {12906, -21, 4, 0}// 354 355 356
|
||||
, {12906, -21, 3, 0}, {12906, -21, 2, 0}, {12906, -21, 1, 0}// 357 358 359
|
||||
, {12906, -21, 0, 0}, {12906, -21, -1, 0}, {12906, -21, -2, 0}// 360 361 362
|
||||
, {12906, -22, -2, 0}, {12906, -22, -1, 0}, {12906, -22, 0, 0}// 363 364 365
|
||||
, {12906, -22, 1, 0}, {12906, -22, 2, 0}, {12906, -22, 3, 0}// 366 367 368
|
||||
, {12906, -22, 4, 0}, {12906, -22, 5, 0}, {12906, -22, 6, 0}// 369 370 371
|
||||
, {12906, -22, 7, 0}, {12906, -22, 8, 0}, {12906, -22, 9, 0}// 372 373 374
|
||||
, {12906, -22, 10, 0}, {12906, -22, 11, 0}, {12906, -18, 10, 0}// 375 376 377
|
||||
, {12906, -18, 11, 0}, {4963, -18, 3, 0}, {4963, -18, 7, 0}// 378 392 396
|
||||
, {12906, -11, -3, 0}, {12906, -11, -4, 0}, {12906, -12, -4, 0}// 406 407 408
|
||||
, {12906, -12, -3, 0}, {12906, -13, -4, 0}, {12906, -14, -4, 0}// 409 410 411
|
||||
, {12906, -14, -3, 0}, {12906, -13, -3, 0}, {12906, -11, -2, 0}// 412 413 414
|
||||
, {12906, -12, -2, 0}, {12906, -12, -1, 0}, {12906, -11, -1, 0}// 415 416 417
|
||||
, {12906, -11, 0, 0}, {12906, -11, 1, 0}, {12906, -12, 1, 0}// 418 419 420
|
||||
, {12906, -12, 0, 0}, {12906, -14, -2, 0}, {12906, -13, -2, 0}// 421 422 423
|
||||
, {12906, -14, -1, 0}, {12906, -13, -1, 0}, {12906, -14, 0, 0}// 424 425 426
|
||||
, {12906, -13, 0, 0}, {12906, -14, 1, 0}, {12906, -13, 1, 0}// 427 428 429
|
||||
, {12906, -13, 1, 0}, {12906, -12, 2, 0}, {12906, -11, 2, 0}// 430 431 432
|
||||
, {4969, -14, -3, 0}, {4971, -14, -1, 0}, {12865, -21, -5, 0}// 437 438 451
|
||||
, {12906, -20, -13, 0}, {12906, -20, -14, 0}, {12906, -20, -15, 0}// 452 453 454
|
||||
, {12906, -20, -16, 0}, {12906, -20, -17, 0}, {12906, -20, -18, 0}// 455 456 457
|
||||
, {12906, -20, -19, 0}, {12906, -20, -20, 0}, {12906, -21, -20, 0}// 458 459 460
|
||||
, {12906, -21, -19, 0}, {12906, -21, -19, 0}, {12906, -21, -18, 0}// 461 462 463
|
||||
, {12906, -21, -17, 0}, {12906, -21, -16, 0}, {12906, -21, -15, 0}// 464 465 466
|
||||
, {12906, -21, -14, 0}, {12906, -21, -13, 0}, {12906, -22, -13, 0}// 467 468 469
|
||||
, {12906, -22, -14, 0}, {12906, -22, -15, 0}, {12906, -22, -16, 0}// 470 471 472
|
||||
, {12906, -22, -17, 0}, {12906, -22, -18, 0}, {12906, -22, -19, 0}// 473 474 475
|
||||
, {12906, -22, -20, 0}, {12906, -19, -12, 0}, {12906, -20, -12, 0}// 476 477 478
|
||||
, {12906, -21, -12, 0}, {12906, -22, -12, 0}, {12906, -22, -11, 0}// 479 480 481
|
||||
, {12906, -21, -11, 0}, {12906, -20, -11, 0}, {12906, -19, -11, 0}// 482 483 484
|
||||
, {12906, -19, -10, 0}, {12906, -20, -10, 0}, {12906, -21, -10, 0}// 485 486 487
|
||||
, {12906, -22, -10, 0}, {12906, -22, -9, 0}, {12906, -21, -9, 0}// 488 489 490
|
||||
, {12906, -20, -9, 0}, {12906, -20, -9, 0}, {12906, -19, -9, 0}// 491 492 493
|
||||
, {12906, -19, -8, 0}, {12906, -20, -8, 0}, {12906, -21, -8, 0}// 494 495 496
|
||||
, {12906, -22, -8, 0}, {12906, -22, -7, 0}, {12906, -21, -7, 0}// 497 498 499
|
||||
, {12906, -20, -7, 0}, {12906, -19, -7, 0}, {12906, -19, -6, 0}// 500 501 502
|
||||
, {12906, -20, -6, 0}, {12906, -21, -6, 0}, {12906, -22, -6, 0}// 503 504 505
|
||||
, {12906, -22, -5, 0}, {12906, -21, -5, 0}, {12906, -20, -5, 0}// 506 507 508
|
||||
, {12906, -19, -5, 0}, {19121, -12, -16, 0}, {12906, -14, -12, 0}// 509 532 533
|
||||
, {12906, -14, -11, 0}, {12906, -14, -15, 0}, {12906, -14, -16, 0}// 534 535 536
|
||||
, {12906, -14, -19, 0}, {12906, -13, -19, 0}, {12906, -14, -20, 0}// 537 538 539
|
||||
, {12906, -11, -10, 0}, {12906, -11, -11, 0}, {12906, -11, -12, 0}// 540 541 542
|
||||
, {12906, -11, -13, 0}, {12906, -11, -14, 0}, {12906, -11, -15, 0}// 543 544 545
|
||||
, {12906, -11, -16, 0}, {12906, -11, -17, 0}, {12906, -11, -18, 0}// 546 547 548
|
||||
, {12906, -11, -19, 0}, {12906, -11, -20, 0}, {12906, -12, -20, 0}// 549 550 551
|
||||
, {12906, -12, -19, 0}, {12906, -12, -18, 0}, {12906, -12, -17, 0}// 552 553 554
|
||||
, {12906, -12, -16, 0}, {12906, -12, -15, 0}, {12906, -12, -14, 0}// 555 556 557
|
||||
, {12906, -12, -13, 0}, {12906, -12, -12, 0}, {12906, -12, -11, 0}// 558 559 560
|
||||
, {12906, -12, -10, 0}, {12906, -13, -20, 0}, {12906, -13, -19, 0}// 561 562 563
|
||||
, {12906, -13, -18, 0}, {12906, -13, -17, 0}, {12906, -13, -16, 0}// 564 565 566
|
||||
, {12906, -13, -15, 0}, {12906, -13, -14, 0}, {12906, -13, -13, 0}// 567 568 569
|
||||
, {12906, -13, -12, 0}, {12906, -13, -11, 0}, {12906, -13, -10, 0}// 570 571 572
|
||||
, {12906, -11, -9, 0}, {12906, -12, -9, 0}, {12906, -13, -9, 0}// 573 574 575
|
||||
, {12906, -14, -9, 0}, {12906, -14, -8, 0}, {12906, -13, -8, 0}// 576 577 578
|
||||
, {12906, -12, -8, 0}, {12906, -11, -8, 0}, {12906, -11, -7, 0}// 579 580 581
|
||||
, {12906, -11, -6, 0}, {12906, -12, -6, 0}, {12906, -12, -7, 0}// 582 583 584
|
||||
, {12906, -13, -7, 0}, {12906, -14, -7, 0}, {12906, -14, -5, 0}// 585 586 587
|
||||
, {12906, -13, -6, 0}, {12906, -13, -5, 0}, {12906, -12, -5, 0}// 588 589 590
|
||||
, {12906, -11, -5, 0}, {4966, -14, -6, 0}, {4971, -14, -14, 0}// 591 604 613
|
||||
, {4971, -14, -13, 0}, {12906, -22, -21, 0}, {12906, -21, -21, 0}// 614 624 625
|
||||
, {12906, -21, -22, 0}, {12906, -22, -22, 0}, {12906, -22, -23, 0}// 626 627 628
|
||||
, {12906, -21, -24, 0}, {12906, -21, -23, 0}, {12906, -22, -24, 0}// 629 630 631
|
||||
, {12906, -22, -25, 0}, {15716, -12, -21, 0}, {12906, -14, -23, 0}// 632 641 642
|
||||
, {12906, -14, -24, 0}, {12906, -11, -21, 0}, {12906, -11, -22, 0}// 643 644 645
|
||||
, {12906, -12, -22, 0}, {12906, -12, -21, 0}, {12906, -11, -23, 0}// 646 647 648
|
||||
, {12906, -12, -23, 0}, {12906, -12, -24, 0}, {12906, -11, -24, 0}// 649 650 651
|
||||
, {12906, -11, -25, 0}, {12906, -12, -25, 0}, {12906, -13, -25, 0}// 652 653 654
|
||||
, {12906, -13, -24, 0}, {12906, -13, -23, 0}, {12906, -13, -22, 0}// 655 656 657
|
||||
, {12906, -13, -21, 0}, {4971, -14, -22, 0}// 658 667
|
||||
};
|
||||
|
||||
[Constructable]
|
||||
public BlackthornStep2()
|
||||
{
|
||||
for (int i = 0; i < m_AddOnSimpleComponents.Length / 4; i++)
|
||||
AddComponent(new AddonComponent(m_AddOnSimpleComponents[i, 0]), m_AddOnSimpleComponents[i, 1], m_AddOnSimpleComponents[i, 2], m_AddOnSimpleComponents[i, 3]);
|
||||
|
||||
AddComplexComponent((BaseAddon)this, 22000, 22, 11, 0, 667, -1, "", 1);// 1
|
||||
AddComplexComponent((BaseAddon)this, 22000, 22, 10, 0, 667, -1, "", 1);// 2
|
||||
AddComplexComponent((BaseAddon)this, 22000, 22, 9, 0, 667, -1, "", 1);// 3
|
||||
AddComplexComponent((BaseAddon)this, 22000, 22, 7, 0, 667, -1, "", 1);// 4
|
||||
AddComplexComponent((BaseAddon)this, 22000, 22, 8, 0, 667, -1, "", 1);// 5
|
||||
AddComplexComponent((BaseAddon)this, 6585, 19, 16, 1, 2721, -1, "", 1);// 12
|
||||
AddComplexComponent((BaseAddon)this, 6585, 20, 16, 1, 2721, -1, "", 1);// 13
|
||||
AddComplexComponent((BaseAddon)this, 6585, 21, 16, 1, 2721, -1, "", 1);// 14
|
||||
AddComplexComponent((BaseAddon)this, 6585, 21, 16, 0, 2721, -1, "", 1);// 15
|
||||
AddComplexComponent((BaseAddon)this, 6585, 20, 16, 1, 2721, -1, "", 1);// 16
|
||||
AddComplexComponent((BaseAddon)this, 6585, 20, 16, 0, 2721, -1, "", 1);// 17
|
||||
AddComplexComponent((BaseAddon)this, 6584, 19, 16, 0, 2721, -1, "", 1);// 19
|
||||
AddComplexComponent((BaseAddon)this, 6584, 20, 16, 0, 2721, -1, "", 1);// 20
|
||||
AddComplexComponent((BaseAddon)this, 6584, 21, 16, 1, 2721, -1, "", 1);// 21
|
||||
AddComplexComponent((BaseAddon)this, 6586, 21, 16, 0, 2721, -1, "", 1);// 23
|
||||
AddComplexComponent((BaseAddon)this, 6586, 20, 16, 0, 2721, -1, "", 1);// 24
|
||||
AddComplexComponent((BaseAddon)this, 6586, 19, 16, 0, 2721, -1, "", 1);// 25
|
||||
AddComplexComponent((BaseAddon)this, 6585, 21, 15, 0, 2721, -1, "", 1);// 26
|
||||
AddComplexComponent((BaseAddon)this, 6585, 20, 15, 0, 2721, -1, "", 1);// 27
|
||||
AddComplexComponent((BaseAddon)this, 6585, 19, 15, 0, 2721, -1, "", 1);// 28
|
||||
AddComplexComponent((BaseAddon)this, 17738, 13, 12, 0, 1910, -1, "", 1);// 29
|
||||
AddComplexComponent((BaseAddon)this, 22000, 21, 12, 0, 667, -1, "", 1);// 30
|
||||
AddComplexComponent((BaseAddon)this, 22000, 21, 13, 0, 667, -1, "", 1);// 31
|
||||
AddComplexComponent((BaseAddon)this, 22000, 21, 14, 0, 667, -1, "", 1);// 32
|
||||
AddComplexComponent((BaseAddon)this, 22000, 16, 13, 0, 667, -1, "", 1);// 33
|
||||
AddComplexComponent((BaseAddon)this, 22000, 15, 13, 0, 667, -1, "", 1);// 34
|
||||
AddComplexComponent((BaseAddon)this, 22000, 14, 13, 0, 667, -1, "", 1);// 35
|
||||
AddComplexComponent((BaseAddon)this, 22000, 20, 12, 0, 667, -1, "", 1);// 36
|
||||
AddComplexComponent((BaseAddon)this, 22000, 19, 12, 0, 667, -1, "", 1);// 37
|
||||
AddComplexComponent((BaseAddon)this, 22000, 19, 13, 0, 667, -1, "", 1);// 38
|
||||
AddComplexComponent((BaseAddon)this, 22000, 20, 13, 0, 667, -1, "", 1);// 39
|
||||
AddComplexComponent((BaseAddon)this, 22000, 20, 14, 0, 667, -1, "", 1);// 40
|
||||
AddComplexComponent((BaseAddon)this, 22000, 19, 14, 0, 667, -1, "", 1);// 41
|
||||
AddComplexComponent((BaseAddon)this, 22000, 18, 14, 0, 667, -1, "", 1);// 42
|
||||
AddComplexComponent((BaseAddon)this, 22000, 18, 13, 0, 667, -1, "", 1);// 43
|
||||
AddComplexComponent((BaseAddon)this, 22000, 18, 12, 0, 667, -1, "", 1);// 44
|
||||
AddComplexComponent((BaseAddon)this, 22000, 17, 13, 0, 667, -1, "", 1);// 45
|
||||
AddComplexComponent((BaseAddon)this, 22000, 17, 12, 0, 667, -1, "", 1);// 46
|
||||
AddComplexComponent((BaseAddon)this, 22000, 16, 12, 0, 667, -1, "", 1);// 47
|
||||
AddComplexComponent((BaseAddon)this, 22000, 15, 12, 0, 667, -1, "", 1);// 48
|
||||
AddComplexComponent((BaseAddon)this, 22000, 14, 12, 0, 667, -1, "", 1);// 49
|
||||
AddComplexComponent((BaseAddon)this, 17729, 13, 13, 5, 1910, -1, "", 1);// 50
|
||||
AddComplexComponent((BaseAddon)this, 17724, 13, 12, 5, 1910, -1, "", 1);// 51
|
||||
AddComplexComponent((BaseAddon)this, 17729, 13, 12, 0, 1910, -1, "", 1);// 52
|
||||
AddComplexComponent((BaseAddon)this, 6585, 21, 4, 0, 2721, -1, "", 1);// 61
|
||||
AddComplexComponent((BaseAddon)this, 6585, 21, 5, 0, 2721, -1, "", 1);// 62
|
||||
AddComplexComponent((BaseAddon)this, 6585, 20, 4, 2, 2721, -1, "", 1);// 63
|
||||
AddComplexComponent((BaseAddon)this, 6584, 20, 4, 1, 2721, -1, "", 1);// 64
|
||||
AddComplexComponent((BaseAddon)this, 6584, 20, 3, 0, 2721, -1, "", 1);// 65
|
||||
AddComplexComponent((BaseAddon)this, 6584, 20, 4, 1, 2721, -1, "", 1);// 66
|
||||
AddComplexComponent((BaseAddon)this, 6584, 19, 4, 0, 2721, -1, "", 1);// 67
|
||||
AddComplexComponent((BaseAddon)this, 6584, 19, 5, 1, 2721, -1, "", 1);// 68
|
||||
AddComplexComponent((BaseAddon)this, 6585, 19, 5, 0, 2721, -1, "", 1);// 69
|
||||
AddComplexComponent((BaseAddon)this, 6585, 19, 4, 0, 2721, -1, "", 1);// 70
|
||||
AddComplexComponent((BaseAddon)this, 6585, 20, 5, 0, 2721, -1, "", 1);// 71
|
||||
AddComplexComponent((BaseAddon)this, 6585, 19, 4, 0, 2721, -1, "", 1);// 72
|
||||
AddComplexComponent((BaseAddon)this, 6571, 19, 10, 0, 0, 1, "", 1);// 73
|
||||
AddComplexComponent((BaseAddon)this, 6571, 14, 6, 0, 0, 1, "", 1);// 74
|
||||
AddComplexComponent((BaseAddon)this, 40832, 18, 10, 0, 2076, -1, "", 1);// 75
|
||||
AddComplexComponent((BaseAddon)this, 22000, 21, 10, 0, 667, -1, "", 1);// 76
|
||||
AddComplexComponent((BaseAddon)this, 22000, 21, 11, 0, 667, -1, "", 1);// 77
|
||||
AddComplexComponent((BaseAddon)this, 22000, 21, 5, 0, 667, -1, "", 1);// 78
|
||||
AddComplexComponent((BaseAddon)this, 22000, 19, 7, 0, 667, -1, "", 1);// 79
|
||||
AddComplexComponent((BaseAddon)this, 22000, 19, 8, 0, 667, -1, "", 1);// 80
|
||||
AddComplexComponent((BaseAddon)this, 22000, 20, 8, 0, 667, -1, "", 1);// 81
|
||||
AddComplexComponent((BaseAddon)this, 22000, 20, 7, 0, 667, -1, "", 1);// 82
|
||||
AddComplexComponent((BaseAddon)this, 22000, 21, 6, 0, 667, -1, "", 1);// 83
|
||||
AddComplexComponent((BaseAddon)this, 22000, 21, 7, 0, 667, -1, "", 1);// 84
|
||||
AddComplexComponent((BaseAddon)this, 22000, 21, 8, 0, 667, -1, "", 1);// 85
|
||||
AddComplexComponent((BaseAddon)this, 22000, 21, 9, 0, 667, -1, "", 1);// 86
|
||||
AddComplexComponent((BaseAddon)this, 22000, 20, 9, 0, 667, -1, "", 1);// 87
|
||||
AddComplexComponent((BaseAddon)this, 22000, 19, 9, 0, 667, -1, "", 1);// 88
|
||||
AddComplexComponent((BaseAddon)this, 22000, 20, 10, 0, 667, -1, "", 1);// 89
|
||||
AddComplexComponent((BaseAddon)this, 22000, 19, 10, 0, 667, -1, "", 1);// 90
|
||||
AddComplexComponent((BaseAddon)this, 22000, 19, 11, 0, 667, -1, "", 1);// 91
|
||||
AddComplexComponent((BaseAddon)this, 22000, 20, 11, 0, 667, -1, "", 1);// 92
|
||||
AddComplexComponent((BaseAddon)this, 22000, 18, 11, 0, 667, -1, "", 1);// 93
|
||||
AddComplexComponent((BaseAddon)this, 22000, 18, 10, 0, 667, -1, "", 1);// 94
|
||||
AddComplexComponent((BaseAddon)this, 22000, 18, 9, 0, 667, -1, "", 1);// 95
|
||||
AddComplexComponent((BaseAddon)this, 22000, 18, 8, 0, 667, -1, "", 1);// 96
|
||||
AddComplexComponent((BaseAddon)this, 22000, 18, 7, 0, 667, -1, "", 1);// 97
|
||||
AddComplexComponent((BaseAddon)this, 22000, 17, 11, 0, 667, -1, "", 1);// 98
|
||||
AddComplexComponent((BaseAddon)this, 22000, 17, 10, 0, 667, -1, "", 1);// 99
|
||||
AddComplexComponent((BaseAddon)this, 22000, 17, 9, 0, 667, -1, "", 1);// 100
|
||||
AddComplexComponent((BaseAddon)this, 22000, 17, 8, 0, 667, -1, "", 1);// 101
|
||||
AddComplexComponent((BaseAddon)this, 22000, 17, 7, 0, 667, -1, "", 1);// 102
|
||||
AddComplexComponent((BaseAddon)this, 22000, 18, 6, 0, 667, -1, "", 1);// 103
|
||||
AddComplexComponent((BaseAddon)this, 22000, 19, 6, 0, 667, -1, "", 1);// 104
|
||||
AddComplexComponent((BaseAddon)this, 22000, 20, 6, 0, 667, -1, "", 1);// 105
|
||||
AddComplexComponent((BaseAddon)this, 22000, 20, 5, 0, 667, -1, "", 1);// 106
|
||||
AddComplexComponent((BaseAddon)this, 22000, 19, 5, 0, 667, -1, "", 1);// 107
|
||||
AddComplexComponent((BaseAddon)this, 22000, 18, 5, 0, 667, -1, "", 1);// 108
|
||||
AddComplexComponent((BaseAddon)this, 22000, 17, 6, 0, 667, -1, "", 1);// 109
|
||||
AddComplexComponent((BaseAddon)this, 22000, 16, 6, 0, 667, -1, "", 1);// 110
|
||||
AddComplexComponent((BaseAddon)this, 22000, 16, 7, 0, 667, -1, "", 1);// 111
|
||||
AddComplexComponent((BaseAddon)this, 22000, 16, 8, 0, 667, -1, "", 1);// 112
|
||||
AddComplexComponent((BaseAddon)this, 22000, 16, 9, 0, 667, -1, "", 1);// 113
|
||||
AddComplexComponent((BaseAddon)this, 22000, 16, 10, 0, 667, -1, "", 1);// 114
|
||||
AddComplexComponent((BaseAddon)this, 22000, 16, 11, 0, 667, -1, "", 1);// 115
|
||||
AddComplexComponent((BaseAddon)this, 22000, 15, 11, 0, 667, -1, "", 1);// 116
|
||||
AddComplexComponent((BaseAddon)this, 22000, 15, 10, 0, 667, -1, "", 1);// 117
|
||||
AddComplexComponent((BaseAddon)this, 22000, 15, 9, 0, 667, -1, "", 1);// 118
|
||||
AddComplexComponent((BaseAddon)this, 22000, 15, 8, 0, 667, -1, "", 1);// 119
|
||||
AddComplexComponent((BaseAddon)this, 22000, 15, 7, 0, 667, -1, "", 1);// 120
|
||||
AddComplexComponent((BaseAddon)this, 22000, 15, 6, 0, 667, -1, "", 1);// 121
|
||||
AddComplexComponent((BaseAddon)this, 22000, 17, 5, 0, 667, -1, "", 1);// 122
|
||||
AddComplexComponent((BaseAddon)this, 22000, 16, 5, 0, 667, -1, "", 1);// 123
|
||||
AddComplexComponent((BaseAddon)this, 22000, 15, 5, 0, 667, -1, "", 1);// 124
|
||||
AddComplexComponent((BaseAddon)this, 22000, 14, 5, 0, 667, -1, "", 1);// 125
|
||||
AddComplexComponent((BaseAddon)this, 22000, 14, 6, 0, 667, -1, "", 1);// 126
|
||||
AddComplexComponent((BaseAddon)this, 22000, 14, 7, 0, 667, -1, "", 1);// 127
|
||||
AddComplexComponent((BaseAddon)this, 22000, 14, 9, 0, 667, -1, "", 1);// 128
|
||||
AddComplexComponent((BaseAddon)this, 22000, 14, 10, 0, 667, -1, "", 1);// 129
|
||||
AddComplexComponent((BaseAddon)this, 22000, 14, 11, 0, 667, -1, "", 1);// 130
|
||||
AddComplexComponent((BaseAddon)this, 22000, 13, 11, 0, 667, -1, "", 1);// 131
|
||||
AddComplexComponent((BaseAddon)this, 22000, 13, 10, 0, 667, -1, "", 1);// 132
|
||||
AddComplexComponent((BaseAddon)this, 22000, 13, 9, 0, 667, -1, "", 1);// 133
|
||||
AddComplexComponent((BaseAddon)this, 22000, 13, 8, 0, 667, -1, "", 1);// 134
|
||||
AddComplexComponent((BaseAddon)this, 22000, 14, 8, 0, 667, -1, "", 1);// 135
|
||||
AddComplexComponent((BaseAddon)this, 22000, 13, 7, 0, 667, -1, "", 1);// 136
|
||||
AddComplexComponent((BaseAddon)this, 22000, 13, 6, 0, 667, -1, "", 1);// 137
|
||||
AddComplexComponent((BaseAddon)this, 22000, 13, 5, 0, 667, -1, "", 1);// 138
|
||||
AddComplexComponent((BaseAddon)this, 17724, 13, 11, 5, 1910, -1, "", 1);// 139
|
||||
AddComplexComponent((BaseAddon)this, 17724, 13, 10, 10, 1910, -1, "", 1);// 140
|
||||
AddComplexComponent((BaseAddon)this, 17724, 13, 9, 5, 1910, -1, "", 1);// 141
|
||||
AddComplexComponent((BaseAddon)this, 17734, 13, 8, 10, 1910, -1, "", 1);// 142
|
||||
AddComplexComponent((BaseAddon)this, 17714, 13, 7, 5, 1910, -1, "", 1);// 143
|
||||
AddComplexComponent((BaseAddon)this, 17725, 13, 6, 0, 1910, -1, "", 1);// 144
|
||||
AddComplexComponent((BaseAddon)this, 17738, 13, 11, 0, 1910, -1, "", 1);// 145
|
||||
AddComplexComponent((BaseAddon)this, 17741, 13, 10, 0, 1910, -1, "", 1);// 146
|
||||
AddComplexComponent((BaseAddon)this, 17739, 13, 9, 0, 1910, -1, "", 1);// 147
|
||||
AddComplexComponent((BaseAddon)this, 17737, 13, 8, 0, 1910, -1, "", 1);// 148
|
||||
AddComplexComponent((BaseAddon)this, 17732, 13, 7, 0, 1910, -1, "", 1);// 149
|
||||
AddComplexComponent((BaseAddon)this, 17730, 13, 6, 0, 1910, -1, "", 1);// 150
|
||||
AddComplexComponent((BaseAddon)this, 17747, 13, 5, 0, 1910, -1, "", 1);// 151
|
||||
AddComplexComponent((BaseAddon)this, 4958, -9, 12, 0, 2429, -1, "", 1);// 169
|
||||
AddComplexComponent((BaseAddon)this, 4957, -9, 13, 0, 2429, -1, "", 1);// 170
|
||||
AddComplexComponent((BaseAddon)this, 4960, -10, 9, 0, 2429, -1, "", 1);// 176
|
||||
AddComplexComponent((BaseAddon)this, 4953, -9, 9, 0, 2429, -1, "", 1);// 177
|
||||
AddComplexComponent((BaseAddon)this, 4952, -9, 11, 0, 2429, -1, "", 1);// 178
|
||||
AddComplexComponent((BaseAddon)this, 4960, -7, 5, 4, 2429, -1, "", 1);// 198
|
||||
AddComplexComponent((BaseAddon)this, 4963, -7, 5, 0, 2429, -1, "", 1);// 200
|
||||
AddComplexComponent((BaseAddon)this, 4962, -8, 5, 2, 2429, -1, "", 1);// 201
|
||||
AddComplexComponent((BaseAddon)this, 4952, -9, 5, 2, 2429, -1, "", 1);// 202
|
||||
AddComplexComponent((BaseAddon)this, 4970, -7, 5, 2, 2429, -1, "", 1);// 203
|
||||
AddComplexComponent((BaseAddon)this, 4967, -8, 5, 0, 2429, -1, "", 1);// 204
|
||||
AddComplexComponent((BaseAddon)this, 4957, -17, 8, 3, 2429, -1, "", 1);// 379
|
||||
AddComplexComponent((BaseAddon)this, 4958, -14, 9, 3, 2429, -1, "", 1);// 380
|
||||
AddComplexComponent((BaseAddon)this, 4962, -18, 0, 3, 2429, -1, "", 1);// 381
|
||||
AddComplexComponent((BaseAddon)this, 4950, -18, 3, 3, 2429, -1, "", 1);// 382
|
||||
AddComplexComponent((BaseAddon)this, 4962, -18, 7, 3, 2429, -1, "", 1);// 383
|
||||
AddComplexComponent((BaseAddon)this, 4960, -18, -2, 3, 2429, -1, "", 1);// 384
|
||||
AddComplexComponent((BaseAddon)this, 4963, -18, -4, 0, 2429, -1, "", 1);// 385
|
||||
AddComplexComponent((BaseAddon)this, 4963, -18, -3, 0, 2429, -1, "", 1);// 386
|
||||
AddComplexComponent((BaseAddon)this, 4963, -18, -2, 0, 2429, -1, "", 1);// 387
|
||||
AddComplexComponent((BaseAddon)this, 4963, -18, -1, 0, 2429, -1, "", 1);// 388
|
||||
AddComplexComponent((BaseAddon)this, 4963, -18, 0, 0, 2429, -1, "", 1);// 389
|
||||
AddComplexComponent((BaseAddon)this, 4963, -18, 1, 0, 2429, -1, "", 1);// 390
|
||||
AddComplexComponent((BaseAddon)this, 4963, -18, 2, 0, 2429, -1, "", 1);// 391
|
||||
AddComplexComponent((BaseAddon)this, 4963, -18, 4, 0, 2429, -1, "", 1);// 393
|
||||
AddComplexComponent((BaseAddon)this, 4963, -18, 5, 0, 2429, -1, "", 1);// 394
|
||||
AddComplexComponent((BaseAddon)this, 4963, -18, 6, 0, 2429, -1, "", 1);// 395
|
||||
AddComplexComponent((BaseAddon)this, 4963, -17, 7, 0, 2429, -1, "", 1);// 397
|
||||
AddComplexComponent((BaseAddon)this, 4963, -17, 8, 0, 2429, -1, "", 1);// 398
|
||||
AddComplexComponent((BaseAddon)this, 4963, -16, 8, 0, 2429, -1, "", 1);// 399
|
||||
AddComplexComponent((BaseAddon)this, 4963, -15, 8, 0, 2429, -1, "", 1);// 400
|
||||
AddComplexComponent((BaseAddon)this, 4963, -14, 9, 0, 2429, -1, "", 1);// 401
|
||||
AddComplexComponent((BaseAddon)this, 4963, -13, 9, 0, 2429, -1, "", 1);// 402
|
||||
AddComplexComponent((BaseAddon)this, 4963, -12, 9, 0, 2429, -1, "", 1);// 403
|
||||
AddComplexComponent((BaseAddon)this, 4963, -11, 9, 0, 2429, -1, "", 1);// 404
|
||||
AddComplexComponent((BaseAddon)this, 4961, -11, 9, 0, 2429, -1, "", 1);// 405
|
||||
AddComplexComponent((BaseAddon)this, 4960, -12, 3, 3, 2429, -1, "", 1);// 433
|
||||
AddComplexComponent((BaseAddon)this, 4950, -14, -2, 3, 2429, -1, "", 1);// 434
|
||||
AddComplexComponent((BaseAddon)this, 4967, -14, -1, 0, 2429, -1, "", 1);// 435
|
||||
AddComplexComponent((BaseAddon)this, 4967, -14, -3, 0, 2429, -1, "", 1);// 436
|
||||
AddComplexComponent((BaseAddon)this, 4963, -14, -4, 0, 2429, -1, "", 1);// 439
|
||||
AddComplexComponent((BaseAddon)this, 4963, -14, -2, 0, 2429, -1, "", 1);// 440
|
||||
AddComplexComponent((BaseAddon)this, 4963, -14, 0, 0, 2429, -1, "", 1);// 441
|
||||
AddComplexComponent((BaseAddon)this, 4963, -14, 1, 0, 2429, -1, "", 1);// 442
|
||||
AddComplexComponent((BaseAddon)this, 4944, -14, 2, 0, 2429, -1, "", 1);// 443
|
||||
AddComplexComponent((BaseAddon)this, 4963, -13, 2, 0, 2429, -1, "", 1);// 444
|
||||
AddComplexComponent((BaseAddon)this, 4963, -14, 3, 0, 2429, -1, "", 1);// 445
|
||||
AddComplexComponent((BaseAddon)this, 4963, -13, 3, 0, 2429, -1, "", 1);// 446
|
||||
AddComplexComponent((BaseAddon)this, 4963, -12, 3, 0, 2429, -1, "", 1);// 447
|
||||
AddComplexComponent((BaseAddon)this, 4963, -11, 3, 0, 2429, -1, "", 1);// 448
|
||||
AddComplexComponent((BaseAddon)this, 4963, -11, 3, 5, 2429, -1, "", 1);// 449
|
||||
AddComplexComponent((BaseAddon)this, 4956, -11, 3, 0, 2429, -1, "", 1);// 450
|
||||
AddComplexComponent((BaseAddon)this, 4960, -19, -14, 3, 2429, -1, "", 1);// 510
|
||||
AddComplexComponent((BaseAddon)this, 4950, -18, -5, 3, 2429, -1, "", 1);// 511
|
||||
AddComplexComponent((BaseAddon)this, 4962, -19, -20, 3, 2429, -1, "", 1);// 512
|
||||
AddComplexComponent((BaseAddon)this, 4962, -18, -12, 3, 2429, -1, "", 1);// 513
|
||||
AddComplexComponent((BaseAddon)this, 4962, -19, -17, 3, 2429, -1, "", 1);// 514
|
||||
AddComplexComponent((BaseAddon)this, 4960, -18, -8, 3, 2429, -1, "", 1);// 515
|
||||
AddComplexComponent((BaseAddon)this, 4963, -19, -20, 0, 2429, -1, "", 1);// 516
|
||||
AddComplexComponent((BaseAddon)this, 4963, -19, -19, 0, 2429, -1, "", 1);// 517
|
||||
AddComplexComponent((BaseAddon)this, 4963, -19, -18, 0, 2429, -1, "", 1);// 518
|
||||
AddComplexComponent((BaseAddon)this, 4963, -19, -17, 0, 2429, -1, "", 1);// 519
|
||||
AddComplexComponent((BaseAddon)this, 4963, -19, -16, 0, 2429, -1, "", 1);// 520
|
||||
AddComplexComponent((BaseAddon)this, 4963, -19, -15, 0, 2429, -1, "", 1);// 521
|
||||
AddComplexComponent((BaseAddon)this, 4963, -19, -14, 0, 2429, -1, "", 1);// 522
|
||||
AddComplexComponent((BaseAddon)this, 4963, -19, -13, 0, 2429, -1, "", 1);// 523
|
||||
AddComplexComponent((BaseAddon)this, 4963, -18, -12, 0, 2429, -1, "", 1);// 524
|
||||
AddComplexComponent((BaseAddon)this, 4963, -18, -11, 0, 2429, -1, "", 1);// 525
|
||||
AddComplexComponent((BaseAddon)this, 4963, -18, -10, 0, 2429, -1, "", 1);// 526
|
||||
AddComplexComponent((BaseAddon)this, 4963, -18, -9, 0, 2429, -1, "", 1);// 527
|
||||
AddComplexComponent((BaseAddon)this, 4963, -18, -8, 0, 2429, -1, "", 1);// 528
|
||||
AddComplexComponent((BaseAddon)this, 4963, -18, -7, 0, 2429, -1, "", 1);// 529
|
||||
AddComplexComponent((BaseAddon)this, 4963, -18, -6, 0, 2429, -1, "", 1);// 530
|
||||
AddComplexComponent((BaseAddon)this, 4963, -18, -5, 0, 2429, -1, "", 1);// 531
|
||||
AddComplexComponent((BaseAddon)this, 4960, -14, -16, 2, 2429, -1, "", 1);// 592
|
||||
AddComplexComponent((BaseAddon)this, 4960, -14, -15, 2, 2429, -1, "", 1);// 593
|
||||
AddComplexComponent((BaseAddon)this, 4960, -14, -10, 3, 2429, -1, "", 1);// 594
|
||||
AddComplexComponent((BaseAddon)this, 4960, -14, -19, 3, 2429, -1, "", 1);// 595
|
||||
AddComplexComponent((BaseAddon)this, 4949, -14, -13, 2, 2429, -1, "", 1);// 596
|
||||
AddComplexComponent((BaseAddon)this, 4946, -14, -18, 3, 2429, -1, "", 1);// 597
|
||||
AddComplexComponent((BaseAddon)this, 4950, -14, -6, 0, 2429, -1, "", 1);// 598
|
||||
AddComplexComponent((BaseAddon)this, 4966, -14, -20, 3, 2429, -1, "", 1);// 599
|
||||
AddComplexComponent((BaseAddon)this, 4966, -14, -17, 3, 2429, -1, "", 1);// 600
|
||||
AddComplexComponent((BaseAddon)this, 4966, -14, -12, 3, 2429, -1, "", 1);// 601
|
||||
AddComplexComponent((BaseAddon)this, 4966, -14, -11, 3, 2429, -1, "", 1);// 602
|
||||
AddComplexComponent((BaseAddon)this, 4966, -14, -8, 3, 2429, -1, "", 1);// 603
|
||||
AddComplexComponent((BaseAddon)this, 4967, -14, -9, 0, 2429, -1, "", 1);// 605
|
||||
AddComplexComponent((BaseAddon)this, 4967, -14, -7, 0, 2429, -1, "", 1);// 606
|
||||
AddComplexComponent((BaseAddon)this, 4967, -14, -14, 0, 2429, -1, "", 1);// 607
|
||||
AddComplexComponent((BaseAddon)this, 4967, -14, -13, 0, 2429, -1, "", 1);// 608
|
||||
AddComplexComponent((BaseAddon)this, 4967, -14, -15, 0, 2429, -1, "", 1);// 609
|
||||
AddComplexComponent((BaseAddon)this, 4967, -14, -16, 0, 2429, -1, "", 1);// 610
|
||||
AddComplexComponent((BaseAddon)this, 4969, -14, -16, 0, 2429, -1, "", 1);// 611
|
||||
AddComplexComponent((BaseAddon)this, 4969, -14, -15, 0, 2429, -1, "", 1);// 612
|
||||
AddComplexComponent((BaseAddon)this, 4963, -14, -20, 0, 2429, -1, "", 1);// 615
|
||||
AddComplexComponent((BaseAddon)this, 4963, -14, -19, 0, 2429, -1, "", 1);// 616
|
||||
AddComplexComponent((BaseAddon)this, 4963, -14, -18, 0, 2429, -1, "", 1);// 617
|
||||
AddComplexComponent((BaseAddon)this, 4963, -14, -17, 0, 2429, -1, "", 1);// 618
|
||||
AddComplexComponent((BaseAddon)this, 4963, -14, -12, 0, 2429, -1, "", 1);// 619
|
||||
AddComplexComponent((BaseAddon)this, 4963, -14, -11, 0, 2429, -1, "", 1);// 620
|
||||
AddComplexComponent((BaseAddon)this, 4963, -14, -10, 0, 2429, -1, "", 1);// 621
|
||||
AddComplexComponent((BaseAddon)this, 4963, -14, -8, 0, 2429, -1, "", 1);// 622
|
||||
AddComplexComponent((BaseAddon)this, 4963, -14, -5, 0, 2429, -1, "", 1);// 623
|
||||
AddComplexComponent((BaseAddon)this, 4960, -20, -24, 3, 2429, -1, "", 1);// 633
|
||||
AddComplexComponent((BaseAddon)this, 4960, -21, -24, 3, 2429, -1, "", 1);// 634
|
||||
AddComplexComponent((BaseAddon)this, 4963, -21, -25, 0, 2429, -1, "", 1);// 635
|
||||
AddComplexComponent((BaseAddon)this, 4963, -21, -24, 0, 2429, -1, "", 1);// 636
|
||||
AddComplexComponent((BaseAddon)this, 4963, -20, -24, 0, 2429, -1, "", 1);// 637
|
||||
AddComplexComponent((BaseAddon)this, 4963, -20, -23, 0, 2429, -1, "", 1);// 638
|
||||
AddComplexComponent((BaseAddon)this, 4963, -20, -22, 0, 2429, -1, "", 1);// 639
|
||||
AddComplexComponent((BaseAddon)this, 4963, -20, -21, 0, 2429, -1, "", 1);// 640
|
||||
AddComplexComponent((BaseAddon)this, 4950, -14, -21, 7, 2429, -1, "", 1);// 659
|
||||
AddComplexComponent((BaseAddon)this, 4961, -14, -21, 2, 2429, -1, "", 1);// 660
|
||||
AddComplexComponent((BaseAddon)this, 4960, -14, -24, 2, 2429, -1, "", 1);// 661
|
||||
AddComplexComponent((BaseAddon)this, 4960, -14, -25, 3, 2429, -1, "", 1);// 662
|
||||
AddComplexComponent((BaseAddon)this, 4948, -14, -22, 2, 2429, -1, "", 1);// 663
|
||||
AddComplexComponent((BaseAddon)this, 4966, -14, -23, 3, 2429, -1, "", 1);// 664
|
||||
AddComplexComponent((BaseAddon)this, 4967, -14, -21, 0, 2429, -1, "", 1);// 665
|
||||
AddComplexComponent((BaseAddon)this, 4967, -14, -24, 0, 2429, -1, "", 1);// 666
|
||||
AddComplexComponent((BaseAddon)this, 4963, -14, -25, 0, 2429, -1, "", 1);// 668
|
||||
AddComplexComponent((BaseAddon)this, 4963, -14, -23, 0, 2429, -1, "", 1);// 669
|
||||
}
|
||||
|
||||
public BlackthornStep2(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write(0); // Version
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
|
||||
if (Map == Map.Trammel)
|
||||
{
|
||||
InstanceTram = this;
|
||||
}
|
||||
|
||||
if (Map == Map.Felucca)
|
||||
{
|
||||
InstanceFel = this;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,532 @@
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class BlackthornStep3 : BlackthornBaseAddon
|
||||
{
|
||||
public static BlackthornStep3 InstanceTram { get; set; }
|
||||
public static BlackthornStep3 InstanceFel { get; set; }
|
||||
|
||||
private static int[,] m_AddOnSimpleComponents = new int[,]
|
||||
{
|
||||
{6093, 11, -4, 0}, {6093, 12, 0, 0}, {6093, 10, 1, 0}// 1 2 3
|
||||
, {6093, 10, -2, 0}, {6670, 10, -9, 0}, {6093, 12, -7, 0}// 4 55 67
|
||||
, {6093, 10, -7, 0}, {6093, 9, 3, 0}, {6093, 8, 3, 0}// 68 88 89
|
||||
, {6093, 9, 5, 0}, {6093, 7, 5, 0}, {6093, 7, 0, 0}// 90 91 92
|
||||
, {6093, 5, 1, 0}, {6093, 8, -2, 0}, {6093, 5, -2, 0}// 93 94 95
|
||||
, {6093, 9, -5, 0}, {6093, 6, -5, 0}, {6093, 4, -5, 0}// 96 97 98
|
||||
, {6093, 2, -3, 0}, {6093, 1, -5, 0}, {6093, -3, -4, 0}// 99 100 101
|
||||
, {6093, -2, -2, 0}, {6093, -4, -2, 0}, {6093, -6, -5, 0}// 102 103 104
|
||||
, {6093, 3, 0, 0}, {6093, 4, 0, 0}, {6093, 4, 1, 0}// 105 106 107
|
||||
, {6093, 2, 1, 0}, {6093, 1, 0, 0}, {6093, -1, 0, 0}// 108 109 110
|
||||
, {6093, -3, 0, 0}, {6093, -5, 1, 0}, {6093, 8, -7, 0}// 111 112 281
|
||||
, {6093, 7, -8, 0}, {6093, 5, -8, 0}, {6093, 3, -8, 0}// 282 283 284
|
||||
, {6093, 0, -6, 0}, {6093, -1, -8, 0}, {6093, -4, -6, 0}// 285 286 287
|
||||
, {6093, -5, -8, 0}, {6093, -10, 5, 0}, {6093, -11, 4, 0}// 288 373 374
|
||||
, {6093, -10, 7, 0}, {6093, -9, 6, 0}, {6093, -12, 7, 0}// 375 376 377
|
||||
, {6093, -7, -2, 0}, {6093, -7, -1, 0}, {6093, -9, -3, 0}// 378 379 380
|
||||
, {6093, -7, -4, 0}, {6093, -7, 1, 0}, {6093, -10, 0, 0}// 381 382 383
|
||||
, {6093, -9, 1, 0}, {6093, -12, 0, 0}, {6093, -12, -4, 0}// 384 385 386
|
||||
, {6093, -7, -8, 0}, {6093, -9, -8, 0}, {6093, -11, -6, 0}// 489 490 491
|
||||
, {6093, -11, -8, 0}// 492
|
||||
};
|
||||
|
||||
[Constructable]
|
||||
public BlackthornStep3()
|
||||
{
|
||||
for (int i = 0; i < m_AddOnSimpleComponents.Length / 4; i++)
|
||||
AddComponent(new AddonComponent(m_AddOnSimpleComponents[i, 0]), m_AddOnSimpleComponents[i, 1], m_AddOnSimpleComponents[i, 2], m_AddOnSimpleComponents[i, 3]);
|
||||
|
||||
AddComplexComponent((BaseAddon)this, 6077, 12, 8, 0, 2729, -1, "", 1);// 5
|
||||
AddComplexComponent((BaseAddon)this, 6077, 12, 7, 0, 2729, -1, "", 1);// 6
|
||||
AddComplexComponent((BaseAddon)this, 6077, 12, 6, 0, 2729, -1, "", 1);// 7
|
||||
AddComplexComponent((BaseAddon)this, 6077, 12, 5, 0, 2729, -1, "", 1);// 8
|
||||
AddComplexComponent((BaseAddon)this, 6077, 12, 4, 0, 2729, -1, "", 1);// 9
|
||||
AddComplexComponent((BaseAddon)this, 6077, 12, 3, 0, 2729, -1, "", 1);// 10
|
||||
AddComplexComponent((BaseAddon)this, 6077, 11, 8, 0, 2729, -1, "", 1);// 11
|
||||
AddComplexComponent((BaseAddon)this, 6077, 11, 7, 0, 2729, -1, "", 1);// 12
|
||||
AddComplexComponent((BaseAddon)this, 6077, 11, 6, 0, 2729, -1, "", 1);// 13
|
||||
AddComplexComponent((BaseAddon)this, 6077, 11, 5, 0, 2729, -1, "", 1);// 14
|
||||
AddComplexComponent((BaseAddon)this, 6077, 11, 4, 0, 2729, -1, "", 1);// 15
|
||||
AddComplexComponent((BaseAddon)this, 6077, 11, 3, 0, 2729, -1, "", 1);// 16
|
||||
AddComplexComponent((BaseAddon)this, 6077, 10, 8, 0, 2729, -1, "", 1);// 17
|
||||
AddComplexComponent((BaseAddon)this, 6077, 10, 7, 0, 2729, -1, "", 1);// 18
|
||||
AddComplexComponent((BaseAddon)this, 6077, 10, 6, 0, 2729, -1, "", 1);// 19
|
||||
AddComplexComponent((BaseAddon)this, 6077, 10, 5, 0, 2729, -1, "", 1);// 20
|
||||
AddComplexComponent((BaseAddon)this, 6077, 10, 4, 0, 2729, -1, "", 1);// 21
|
||||
AddComplexComponent((BaseAddon)this, 6077, 10, 3, 0, 2729, -1, "", 1);// 22
|
||||
AddComplexComponent((BaseAddon)this, 6077, 13, 2, 0, 2729, -1, "", 1);// 23
|
||||
AddComplexComponent((BaseAddon)this, 6077, 13, 1, 0, 2729, -1, "", 1);// 24
|
||||
AddComplexComponent((BaseAddon)this, 6077, 13, 0, 0, 2729, -1, "", 1);// 25
|
||||
AddComplexComponent((BaseAddon)this, 6077, 13, -1, 0, 2729, -1, "", 1);// 26
|
||||
AddComplexComponent((BaseAddon)this, 6077, 12, 2, 0, 2729, -1, "", 1);// 27
|
||||
AddComplexComponent((BaseAddon)this, 6077, 12, 1, 0, 2729, -1, "", 1);// 28
|
||||
AddComplexComponent((BaseAddon)this, 6077, 12, 0, 0, 2729, -1, "", 1);// 29
|
||||
AddComplexComponent((BaseAddon)this, 6077, 12, -1, 0, 2729, -1, "", 1);// 30
|
||||
AddComplexComponent((BaseAddon)this, 6077, 11, 2, 0, 2729, -1, "", 1);// 31
|
||||
AddComplexComponent((BaseAddon)this, 6077, 11, 1, 0, 2729, -1, "", 1);// 32
|
||||
AddComplexComponent((BaseAddon)this, 6077, 11, 0, 0, 2729, -1, "", 1);// 33
|
||||
AddComplexComponent((BaseAddon)this, 6077, 11, -1, 0, 2729, -1, "", 1);// 34
|
||||
AddComplexComponent((BaseAddon)this, 6077, 10, 2, 0, 2729, -1, "", 1);// 35
|
||||
AddComplexComponent((BaseAddon)this, 6077, 10, 1, 0, 2729, -1, "", 1);// 36
|
||||
AddComplexComponent((BaseAddon)this, 6077, 10, 0, 0, 2729, -1, "", 1);// 37
|
||||
AddComplexComponent((BaseAddon)this, 6077, 10, -1, 0, 2729, -1, "", 1);// 38
|
||||
AddComplexComponent((BaseAddon)this, 6077, 13, -2, 0, 2729, -1, "", 1);// 39
|
||||
AddComplexComponent((BaseAddon)this, 6077, 13, -3, 0, 2729, -1, "", 1);// 40
|
||||
AddComplexComponent((BaseAddon)this, 6077, 13, -4, 0, 2729, -1, "", 1);// 41
|
||||
AddComplexComponent((BaseAddon)this, 6077, 13, -5, 0, 2729, -1, "", 1);// 42
|
||||
AddComplexComponent((BaseAddon)this, 6077, 12, -2, 0, 2729, -1, "", 1);// 43
|
||||
AddComplexComponent((BaseAddon)this, 6077, 12, -3, 0, 2729, -1, "", 1);// 44
|
||||
AddComplexComponent((BaseAddon)this, 6077, 12, -4, 0, 2729, -1, "", 1);// 45
|
||||
AddComplexComponent((BaseAddon)this, 6077, 12, -5, 0, 2729, -1, "", 1);// 46
|
||||
AddComplexComponent((BaseAddon)this, 6077, 11, -2, 0, 2729, -1, "", 1);// 47
|
||||
AddComplexComponent((BaseAddon)this, 6077, 11, -3, 0, 2729, -1, "", 1);// 48
|
||||
AddComplexComponent((BaseAddon)this, 6077, 11, -4, 0, 2729, -1, "", 1);// 49
|
||||
AddComplexComponent((BaseAddon)this, 6077, 11, -5, 0, 2729, -1, "", 1);// 50
|
||||
AddComplexComponent((BaseAddon)this, 6077, 10, -2, 0, 2729, -1, "", 1);// 51
|
||||
AddComplexComponent((BaseAddon)this, 6077, 10, -3, 0, 2729, -1, "", 1);// 52
|
||||
AddComplexComponent((BaseAddon)this, 6077, 10, -4, 0, 2729, -1, "", 1);// 53
|
||||
AddComplexComponent((BaseAddon)this, 6077, 10, -5, 0, 2729, -1, "", 1);// 54
|
||||
AddComplexComponent((BaseAddon)this, 7073, 12, -7, 0, 2729, -1, "", 1);// 56
|
||||
AddComplexComponent((BaseAddon)this, 7072, 11, -7, 0, 2729, -1, "", 1);// 57
|
||||
AddComplexComponent((BaseAddon)this, 7074, 10, -7, 0, 2729, -1, "", 1);// 58
|
||||
AddComplexComponent((BaseAddon)this, 7076, 10, -8, 0, 2729, -1, "", 1);// 59
|
||||
AddComplexComponent((BaseAddon)this, 7077, 10, -9, 0, 2729, -1, "", 1);// 60
|
||||
AddComplexComponent((BaseAddon)this, 7079, 11, -8, 0, 2729, -1, "", 1);// 61
|
||||
AddComplexComponent((BaseAddon)this, 7080, 12, -8, 0, 2729, -1, "", 1);// 62
|
||||
AddComplexComponent((BaseAddon)this, 7080, 11, -9, 0, 2729, -1, "", 1);// 63
|
||||
AddComplexComponent((BaseAddon)this, 7080, 12, -9, 0, 2729, -1, "", 1);// 64
|
||||
AddComplexComponent((BaseAddon)this, 17778, 11, -9, 0, 1152, -1, "", 1);// 65
|
||||
AddComplexComponent((BaseAddon)this, 17778, 12, -9, 0, 1152, -1, "", 1);// 66
|
||||
AddComplexComponent((BaseAddon)this, 6077, 13, -8, 0, 2729, -1, "", 1);// 69
|
||||
AddComplexComponent((BaseAddon)this, 6077, 13, -9, 0, 2729, -1, "", 1);// 70
|
||||
AddComplexComponent((BaseAddon)this, 6077, 12, -8, 0, 2729, -1, "", 1);// 71
|
||||
AddComplexComponent((BaseAddon)this, 6077, 12, -9, 0, 2729, -1, "", 1);// 72
|
||||
AddComplexComponent((BaseAddon)this, 6077, 11, -8, 0, 2729, -1, "", 1);// 73
|
||||
AddComplexComponent((BaseAddon)this, 6077, 11, -9, 0, 2729, -1, "", 1);// 74
|
||||
AddComplexComponent((BaseAddon)this, 6077, 10, -8, 0, 2729, -1, "", 1);// 75
|
||||
AddComplexComponent((BaseAddon)this, 6077, 10, -9, 0, 2729, -1, "", 1);// 76
|
||||
AddComplexComponent((BaseAddon)this, 6077, 13, -6, 0, 2729, -1, "", 1);// 77
|
||||
AddComplexComponent((BaseAddon)this, 6077, 13, -7, 0, 2729, -1, "", 1);// 78
|
||||
AddComplexComponent((BaseAddon)this, 6077, 12, -6, 0, 2729, -1, "", 1);// 79
|
||||
AddComplexComponent((BaseAddon)this, 6077, 12, -7, 0, 2729, -1, "", 1);// 80
|
||||
AddComplexComponent((BaseAddon)this, 6077, 11, -6, 0, 2729, -1, "", 1);// 81
|
||||
AddComplexComponent((BaseAddon)this, 6077, 11, -7, 0, 2729, -1, "", 1);// 82
|
||||
AddComplexComponent((BaseAddon)this, 6077, 10, -6, 0, 2729, -1, "", 1);// 83
|
||||
AddComplexComponent((BaseAddon)this, 6077, 10, -7, 0, 2729, -1, "", 1);// 84
|
||||
AddComplexComponent((BaseAddon)this, 7820, 4, -1, 0, 2729, -1, "", 1);// 85
|
||||
AddComplexComponent((BaseAddon)this, 7822, 3, -2, 0, 2729, -1, "", 1);// 86
|
||||
AddComplexComponent((BaseAddon)this, 7825, -2, -3, 0, 1152, -1, "", 1);// 87
|
||||
AddComplexComponent((BaseAddon)this, 22300, 9, 0, 0, 1152, -1, "", 1);// 113
|
||||
AddComplexComponent((BaseAddon)this, 22300, -6, -3, 0, 1152, -1, "", 1);// 114
|
||||
AddComplexComponent((BaseAddon)this, 22300, 1, -1, 0, 1152, -1, "", 1);// 115
|
||||
AddComplexComponent((BaseAddon)this, 7398, 8, 5, 0, 2729, -1, "", 1);// 116
|
||||
AddComplexComponent((BaseAddon)this, 6077, 6, 3, 0, 2729, -1, "", 1);// 117
|
||||
AddComplexComponent((BaseAddon)this, 6077, 9, 8, 0, 2729, -1, "", 1);// 118
|
||||
AddComplexComponent((BaseAddon)this, 6077, 9, 7, 0, 2729, -1, "", 1);// 119
|
||||
AddComplexComponent((BaseAddon)this, 6077, 9, 6, 0, 2729, -1, "", 1);// 120
|
||||
AddComplexComponent((BaseAddon)this, 6077, 9, 5, 0, 2729, -1, "", 1);// 121
|
||||
AddComplexComponent((BaseAddon)this, 6077, 9, 4, 0, 2729, -1, "", 1);// 122
|
||||
AddComplexComponent((BaseAddon)this, 6077, 9, 3, 0, 2729, -1, "", 1);// 123
|
||||
AddComplexComponent((BaseAddon)this, 6077, 8, 8, 0, 2729, -1, "", 1);// 124
|
||||
AddComplexComponent((BaseAddon)this, 6077, 8, 7, 0, 2729, -1, "", 1);// 125
|
||||
AddComplexComponent((BaseAddon)this, 6077, 8, 6, 0, 2729, -1, "", 1);// 126
|
||||
AddComplexComponent((BaseAddon)this, 6077, 8, 5, 0, 2729, -1, "", 1);// 127
|
||||
AddComplexComponent((BaseAddon)this, 6077, 8, 4, 0, 2729, -1, "", 1);// 128
|
||||
AddComplexComponent((BaseAddon)this, 6077, 8, 3, 0, 2729, -1, "", 1);// 129
|
||||
AddComplexComponent((BaseAddon)this, 6077, 7, 8, 0, 2729, -1, "", 1);// 130
|
||||
AddComplexComponent((BaseAddon)this, 6077, 7, 7, 0, 2729, -1, "", 1);// 131
|
||||
AddComplexComponent((BaseAddon)this, 6077, 7, 6, 0, 2729, -1, "", 1);// 132
|
||||
AddComplexComponent((BaseAddon)this, 6077, 7, 5, 0, 2729, -1, "", 1);// 133
|
||||
AddComplexComponent((BaseAddon)this, 6077, 7, 4, 0, 2729, -1, "", 1);// 134
|
||||
AddComplexComponent((BaseAddon)this, 6077, 7, 3, 0, 2729, -1, "", 1);// 135
|
||||
AddComplexComponent((BaseAddon)this, 6077, 9, 2, 0, 2729, -1, "", 1);// 136
|
||||
AddComplexComponent((BaseAddon)this, 6077, 9, 1, 0, 2729, -1, "", 1);// 137
|
||||
AddComplexComponent((BaseAddon)this, 6077, 9, 0, 0, 2729, -1, "", 1);// 138
|
||||
AddComplexComponent((BaseAddon)this, 6077, 9, -1, 0, 2729, -1, "", 1);// 139
|
||||
AddComplexComponent((BaseAddon)this, 6077, 8, 2, 0, 2729, -1, "", 1);// 140
|
||||
AddComplexComponent((BaseAddon)this, 6077, 8, 1, 0, 2729, -1, "", 1);// 141
|
||||
AddComplexComponent((BaseAddon)this, 6077, 8, 0, 0, 2729, -1, "", 1);// 142
|
||||
AddComplexComponent((BaseAddon)this, 6077, 8, -1, 0, 2729, -1, "", 1);// 143
|
||||
AddComplexComponent((BaseAddon)this, 6077, 7, 2, 0, 2729, -1, "", 1);// 144
|
||||
AddComplexComponent((BaseAddon)this, 6077, 7, 1, 0, 2729, -1, "", 1);// 145
|
||||
AddComplexComponent((BaseAddon)this, 6077, 7, 0, 0, 2729, -1, "", 1);// 146
|
||||
AddComplexComponent((BaseAddon)this, 6077, 7, -1, 0, 2729, -1, "", 1);// 147
|
||||
AddComplexComponent((BaseAddon)this, 6077, 6, 2, 0, 2729, -1, "", 1);// 148
|
||||
AddComplexComponent((BaseAddon)this, 6077, 6, 1, 0, 2729, -1, "", 1);// 149
|
||||
AddComplexComponent((BaseAddon)this, 6077, 6, 0, 0, 2729, -1, "", 1);// 150
|
||||
AddComplexComponent((BaseAddon)this, 6077, 6, -1, 0, 2729, -1, "", 1);// 151
|
||||
AddComplexComponent((BaseAddon)this, 6077, 5, 2, 0, 2729, -1, "", 1);// 152
|
||||
AddComplexComponent((BaseAddon)this, 6077, 5, 1, 0, 2729, -1, "", 1);// 153
|
||||
AddComplexComponent((BaseAddon)this, 6077, 5, 0, 0, 2729, -1, "", 1);// 154
|
||||
AddComplexComponent((BaseAddon)this, 6077, 5, -1, 0, 2729, -1, "", 1);// 155
|
||||
AddComplexComponent((BaseAddon)this, 6077, 4, 2, 0, 2729, -1, "", 1);// 156
|
||||
AddComplexComponent((BaseAddon)this, 6077, 4, 1, 0, 2729, -1, "", 1);// 157
|
||||
AddComplexComponent((BaseAddon)this, 6077, 4, 0, 0, 2729, -1, "", 1);// 158
|
||||
AddComplexComponent((BaseAddon)this, 6077, 4, -1, 0, 2729, -1, "", 1);// 159
|
||||
AddComplexComponent((BaseAddon)this, 6077, 3, 2, 0, 2729, -1, "", 1);// 160
|
||||
AddComplexComponent((BaseAddon)this, 6077, 3, 1, 0, 2729, -1, "", 1);// 161
|
||||
AddComplexComponent((BaseAddon)this, 6077, 3, 0, 0, 2729, -1, "", 1);// 162
|
||||
AddComplexComponent((BaseAddon)this, 6077, 3, -1, 0, 2729, -1, "", 1);// 163
|
||||
AddComplexComponent((BaseAddon)this, 6077, 2, 2, 0, 2729, -1, "", 1);// 164
|
||||
AddComplexComponent((BaseAddon)this, 6077, 2, 1, 0, 2729, -1, "", 1);// 165
|
||||
AddComplexComponent((BaseAddon)this, 6077, 2, 0, 0, 2729, -1, "", 1);// 166
|
||||
AddComplexComponent((BaseAddon)this, 6077, 2, -1, 0, 2729, -1, "", 1);// 167
|
||||
AddComplexComponent((BaseAddon)this, 6077, 1, 2, 0, 2729, -1, "", 1);// 168
|
||||
AddComplexComponent((BaseAddon)this, 6077, 1, 1, 0, 2729, -1, "", 1);// 169
|
||||
AddComplexComponent((BaseAddon)this, 6077, 1, 0, 0, 2729, -1, "", 1);// 170
|
||||
AddComplexComponent((BaseAddon)this, 6077, 1, -1, 0, 2729, -1, "", 1);// 171
|
||||
AddComplexComponent((BaseAddon)this, 6077, 0, 2, 0, 2729, -1, "", 1);// 172
|
||||
AddComplexComponent((BaseAddon)this, 6077, 0, 1, 0, 2729, -1, "", 1);// 173
|
||||
AddComplexComponent((BaseAddon)this, 6077, 0, 0, 0, 2729, -1, "", 1);// 174
|
||||
AddComplexComponent((BaseAddon)this, 6077, 0, -1, 0, 2729, -1, "", 1);// 175
|
||||
AddComplexComponent((BaseAddon)this, 6077, 0, -2, 0, 2729, -1, "", 1);// 176
|
||||
AddComplexComponent((BaseAddon)this, 6077, -1, 2, 0, 2729, -1, "", 1);// 177
|
||||
AddComplexComponent((BaseAddon)this, 6077, -1, 1, 0, 2729, -1, "", 1);// 178
|
||||
AddComplexComponent((BaseAddon)this, 6077, -1, 0, 0, 2729, -1, "", 1);// 179
|
||||
AddComplexComponent((BaseAddon)this, 6077, -1, -1, 0, 2729, -1, "", 1);// 180
|
||||
AddComplexComponent((BaseAddon)this, 6077, -1, -2, 0, 2729, -1, "", 1);// 181
|
||||
AddComplexComponent((BaseAddon)this, 6077, -2, 2, 0, 2729, -1, "", 1);// 182
|
||||
AddComplexComponent((BaseAddon)this, 6077, -2, 1, 0, 2729, -1, "", 1);// 183
|
||||
AddComplexComponent((BaseAddon)this, 6077, -2, 0, 0, 2729, -1, "", 1);// 184
|
||||
AddComplexComponent((BaseAddon)this, 6077, -2, -1, 0, 2729, -1, "", 1);// 185
|
||||
AddComplexComponent((BaseAddon)this, 6077, -2, -2, 0, 2729, -1, "", 1);// 186
|
||||
AddComplexComponent((BaseAddon)this, 6077, -3, 2, 0, 2729, -1, "", 1);// 187
|
||||
AddComplexComponent((BaseAddon)this, 6077, -3, 1, 0, 2729, -1, "", 1);// 188
|
||||
AddComplexComponent((BaseAddon)this, 6077, -3, 0, 0, 2729, -1, "", 1);// 189
|
||||
AddComplexComponent((BaseAddon)this, 6077, -3, -1, 0, 2729, -1, "", 1);// 190
|
||||
AddComplexComponent((BaseAddon)this, 6077, -3, -2, 0, 2729, -1, "", 1);// 191
|
||||
AddComplexComponent((BaseAddon)this, 6077, -4, 2, 0, 2729, -1, "", 1);// 192
|
||||
AddComplexComponent((BaseAddon)this, 6077, -4, 1, 0, 2729, -1, "", 1);// 193
|
||||
AddComplexComponent((BaseAddon)this, 6077, -4, 0, 0, 2729, -1, "", 1);// 194
|
||||
AddComplexComponent((BaseAddon)this, 6077, -4, -1, 0, 2729, -1, "", 1);// 195
|
||||
AddComplexComponent((BaseAddon)this, 6077, -4, -2, 0, 2729, -1, "", 1);// 196
|
||||
AddComplexComponent((BaseAddon)this, 6077, -5, 2, 0, 2729, -1, "", 1);// 197
|
||||
AddComplexComponent((BaseAddon)this, 6077, -5, 1, 0, 2729, -1, "", 1);// 198
|
||||
AddComplexComponent((BaseAddon)this, 6077, -5, 0, 0, 2729, -1, "", 1);// 199
|
||||
AddComplexComponent((BaseAddon)this, 6077, -5, -1, 0, 2729, -1, "", 1);// 200
|
||||
AddComplexComponent((BaseAddon)this, 6077, -5, -2, 0, 2729, -1, "", 1);// 201
|
||||
AddComplexComponent((BaseAddon)this, 6077, -6, 2, 0, 2729, -1, "", 1);// 202
|
||||
AddComplexComponent((BaseAddon)this, 6077, -6, 1, 0, 2729, -1, "", 1);// 203
|
||||
AddComplexComponent((BaseAddon)this, 6077, -6, 0, 0, 2729, -1, "", 1);// 204
|
||||
AddComplexComponent((BaseAddon)this, 6077, -6, -1, 0, 2729, -1, "", 1);// 205
|
||||
AddComplexComponent((BaseAddon)this, 6077, -6, -2, 0, 2729, -1, "", 1);// 206
|
||||
AddComplexComponent((BaseAddon)this, 6077, 1, -3, 0, 2729, -1, "", 1);// 207
|
||||
AddComplexComponent((BaseAddon)this, 6077, 1, -4, 0, 2729, -1, "", 1);// 208
|
||||
AddComplexComponent((BaseAddon)this, 6077, 1, -5, 0, 2729, -1, "", 1);// 209
|
||||
AddComplexComponent((BaseAddon)this, 6077, 0, -3, 0, 2729, -1, "", 1);// 210
|
||||
AddComplexComponent((BaseAddon)this, 6077, 0, -4, 0, 2729, -1, "", 1);// 211
|
||||
AddComplexComponent((BaseAddon)this, 6077, 0, -5, 0, 2729, -1, "", 1);// 212
|
||||
AddComplexComponent((BaseAddon)this, 6077, -1, -3, 0, 2729, -1, "", 1);// 213
|
||||
AddComplexComponent((BaseAddon)this, 6077, -1, -4, 0, 2729, -1, "", 1);// 214
|
||||
AddComplexComponent((BaseAddon)this, 6077, -1, -5, 0, 2729, -1, "", 1);// 215
|
||||
AddComplexComponent((BaseAddon)this, 6077, -2, -3, 0, 2729, -1, "", 1);// 216
|
||||
AddComplexComponent((BaseAddon)this, 6077, -2, -4, 0, 2729, -1, "", 1);// 217
|
||||
AddComplexComponent((BaseAddon)this, 6077, -2, -5, 0, 2729, -1, "", 1);// 218
|
||||
AddComplexComponent((BaseAddon)this, 6077, -3, -3, 0, 2729, -1, "", 1);// 219
|
||||
AddComplexComponent((BaseAddon)this, 6077, -3, -4, 0, 2729, -1, "", 1);// 220
|
||||
AddComplexComponent((BaseAddon)this, 6077, -3, -5, 0, 2729, -1, "", 1);// 221
|
||||
AddComplexComponent((BaseAddon)this, 6077, -4, -3, 0, 2729, -1, "", 1);// 222
|
||||
AddComplexComponent((BaseAddon)this, 6077, -4, -4, 0, 2729, -1, "", 1);// 223
|
||||
AddComplexComponent((BaseAddon)this, 6077, -4, -5, 0, 2729, -1, "", 1);// 224
|
||||
AddComplexComponent((BaseAddon)this, 6077, -5, -3, 0, 2729, -1, "", 1);// 225
|
||||
AddComplexComponent((BaseAddon)this, 6077, -5, -4, 0, 2729, -1, "", 1);// 226
|
||||
AddComplexComponent((BaseAddon)this, 6077, -5, -5, 0, 2729, -1, "", 1);// 227
|
||||
AddComplexComponent((BaseAddon)this, 6077, -6, -3, 0, 2729, -1, "", 1);// 228
|
||||
AddComplexComponent((BaseAddon)this, 6077, -6, -4, 0, 2729, -1, "", 1);// 229
|
||||
AddComplexComponent((BaseAddon)this, 6077, -6, -5, 0, 2729, -1, "", 1);// 230
|
||||
AddComplexComponent((BaseAddon)this, 6077, 9, -2, 0, 2729, -1, "", 1);// 231
|
||||
AddComplexComponent((BaseAddon)this, 6077, 9, -3, 0, 2729, -1, "", 1);// 232
|
||||
AddComplexComponent((BaseAddon)this, 6077, 9, -4, 0, 2729, -1, "", 1);// 233
|
||||
AddComplexComponent((BaseAddon)this, 6077, 9, -5, 0, 2729, -1, "", 1);// 234
|
||||
AddComplexComponent((BaseAddon)this, 6077, 8, -2, 0, 2729, -1, "", 1);// 235
|
||||
AddComplexComponent((BaseAddon)this, 6077, 8, -3, 0, 2729, -1, "", 1);// 236
|
||||
AddComplexComponent((BaseAddon)this, 6077, 8, -4, 0, 2729, -1, "", 1);// 237
|
||||
AddComplexComponent((BaseAddon)this, 6077, 8, -5, 0, 2729, -1, "", 1);// 238
|
||||
AddComplexComponent((BaseAddon)this, 6077, 7, -2, 0, 2729, -1, "", 1);// 239
|
||||
AddComplexComponent((BaseAddon)this, 6077, 7, -3, 0, 2729, -1, "", 1);// 240
|
||||
AddComplexComponent((BaseAddon)this, 6077, 7, -4, 0, 2729, -1, "", 1);// 241
|
||||
AddComplexComponent((BaseAddon)this, 6077, 7, -5, 0, 2729, -1, "", 1);// 242
|
||||
AddComplexComponent((BaseAddon)this, 6077, 6, -2, 0, 2729, -1, "", 1);// 243
|
||||
AddComplexComponent((BaseAddon)this, 6077, 6, -3, 0, 2729, -1, "", 1);// 244
|
||||
AddComplexComponent((BaseAddon)this, 6077, 6, -4, 0, 2729, -1, "", 1);// 245
|
||||
AddComplexComponent((BaseAddon)this, 6077, 6, -5, 0, 2729, -1, "", 1);// 246
|
||||
AddComplexComponent((BaseAddon)this, 6077, 5, -2, 0, 2729, -1, "", 1);// 247
|
||||
AddComplexComponent((BaseAddon)this, 6077, 5, -3, 0, 2729, -1, "", 1);// 248
|
||||
AddComplexComponent((BaseAddon)this, 6077, 5, -4, 0, 2729, -1, "", 1);// 249
|
||||
AddComplexComponent((BaseAddon)this, 6077, 5, -5, 0, 2729, -1, "", 1);// 250
|
||||
AddComplexComponent((BaseAddon)this, 6077, 4, -2, 0, 2729, -1, "", 1);// 251
|
||||
AddComplexComponent((BaseAddon)this, 6077, 4, -3, 0, 2729, -1, "", 1);// 252
|
||||
AddComplexComponent((BaseAddon)this, 6077, 4, -4, 0, 2729, -1, "", 1);// 253
|
||||
AddComplexComponent((BaseAddon)this, 6077, 4, -5, 0, 2729, -1, "", 1);// 254
|
||||
AddComplexComponent((BaseAddon)this, 6077, 3, -2, 0, 2729, -1, "", 1);// 255
|
||||
AddComplexComponent((BaseAddon)this, 6077, 3, -3, 0, 2729, -1, "", 1);// 256
|
||||
AddComplexComponent((BaseAddon)this, 6077, 3, -4, 0, 2729, -1, "", 1);// 257
|
||||
AddComplexComponent((BaseAddon)this, 6077, 3, -5, 0, 2729, -1, "", 1);// 258
|
||||
AddComplexComponent((BaseAddon)this, 6077, 2, -2, 0, 2729, -1, "", 1);// 259
|
||||
AddComplexComponent((BaseAddon)this, 6077, 2, -3, 0, 2729, -1, "", 1);// 260
|
||||
AddComplexComponent((BaseAddon)this, 6077, 2, -4, 0, 2729, -1, "", 1);// 261
|
||||
AddComplexComponent((BaseAddon)this, 6077, 2, -5, 0, 2729, -1, "", 1);// 262
|
||||
AddComplexComponent((BaseAddon)this, 6077, 1, -2, 0, 2729, -1, "", 1);// 263
|
||||
AddComplexComponent((BaseAddon)this, 17780, -4, -9, 0, 1152, -1, "", 1);// 264
|
||||
AddComplexComponent((BaseAddon)this, 17780, 1, -9, 0, 1152, -1, "", 1);// 265
|
||||
AddComplexComponent((BaseAddon)this, 17780, 9, -9, 0, 1152, -1, "", 1);// 266
|
||||
AddComplexComponent((BaseAddon)this, 17780, 8, -9, 0, 1152, -1, "", 1);// 267
|
||||
AddComplexComponent((BaseAddon)this, 17780, 8, -9, 0, 1152, -1, "", 1);// 268
|
||||
AddComplexComponent((BaseAddon)this, 6257, -1, -9, 5, 2729, -1, "", 1);// 269
|
||||
AddComplexComponent((BaseAddon)this, 17779, -5, -9, 0, 1152, -1, "", 1);// 270
|
||||
AddComplexComponent((BaseAddon)this, 17779, -2, -9, 0, 1152, -1, "", 1);// 271
|
||||
AddComplexComponent((BaseAddon)this, 17779, 2, -9, 0, 1152, -1, "", 1);// 272
|
||||
AddComplexComponent((BaseAddon)this, 17779, 7, -9, 0, 1152, -1, "", 1);// 273
|
||||
AddComplexComponent((BaseAddon)this, 17778, -6, -9, 0, 1152, -1, "", 1);// 274
|
||||
AddComplexComponent((BaseAddon)this, 17778, -3, -9, 0, 1152, -1, "", 1);// 275
|
||||
AddComplexComponent((BaseAddon)this, 17778, 0, -9, 0, 1152, -1, "", 1);// 276
|
||||
AddComplexComponent((BaseAddon)this, 17778, 3, -9, 0, 1152, -1, "", 1);// 277
|
||||
AddComplexComponent((BaseAddon)this, 17778, 4, -9, 0, 1152, -1, "", 1);// 278
|
||||
AddComplexComponent((BaseAddon)this, 17778, 5, -9, 0, 1152, -1, "", 1);// 279
|
||||
AddComplexComponent((BaseAddon)this, 17778, 6, -9, 0, 1152, -1, "", 1);// 280
|
||||
AddComplexComponent((BaseAddon)this, 22300, 5, -7, 0, 1152, -1, "", 1);// 289
|
||||
AddComplexComponent((BaseAddon)this, 6077, 1, -6, 0, 2729, -1, "", 1);// 290
|
||||
AddComplexComponent((BaseAddon)this, 6077, 1, -7, 0, 2729, -1, "", 1);// 291
|
||||
AddComplexComponent((BaseAddon)this, 6077, 1, -8, 0, 2729, -1, "", 1);// 292
|
||||
AddComplexComponent((BaseAddon)this, 6077, 0, -6, 0, 2729, -1, "", 1);// 293
|
||||
AddComplexComponent((BaseAddon)this, 6077, 0, -7, 0, 2729, -1, "", 1);// 294
|
||||
AddComplexComponent((BaseAddon)this, 6077, 0, -8, 0, 2729, -1, "", 1);// 295
|
||||
AddComplexComponent((BaseAddon)this, 6077, -1, -6, 0, 2729, -1, "", 1);// 296
|
||||
AddComplexComponent((BaseAddon)this, 6077, -1, -7, 0, 2729, -1, "", 1);// 297
|
||||
AddComplexComponent((BaseAddon)this, 6077, -1, -8, 0, 2729, -1, "", 1);// 298
|
||||
AddComplexComponent((BaseAddon)this, 6077, -2, -6, 0, 2729, -1, "", 1);// 299
|
||||
AddComplexComponent((BaseAddon)this, 6077, -2, -7, 0, 2729, -1, "", 1);// 300
|
||||
AddComplexComponent((BaseAddon)this, 6077, -2, -8, 0, 2729, -1, "", 1);// 301
|
||||
AddComplexComponent((BaseAddon)this, 6077, -3, -6, 0, 2729, -1, "", 1);// 302
|
||||
AddComplexComponent((BaseAddon)this, 6077, -3, -7, 0, 2729, -1, "", 1);// 303
|
||||
AddComplexComponent((BaseAddon)this, 6077, -3, -8, 0, 2729, -1, "", 1);// 304
|
||||
AddComplexComponent((BaseAddon)this, 6077, -4, -6, 0, 2729, -1, "", 1);// 305
|
||||
AddComplexComponent((BaseAddon)this, 6077, -4, -7, 0, 2729, -1, "", 1);// 306
|
||||
AddComplexComponent((BaseAddon)this, 6077, -4, -8, 0, 2729, -1, "", 1);// 307
|
||||
AddComplexComponent((BaseAddon)this, 6077, -5, -6, 0, 2729, -1, "", 1);// 308
|
||||
AddComplexComponent((BaseAddon)this, 6077, -5, -7, 0, 2729, -1, "", 1);// 309
|
||||
AddComplexComponent((BaseAddon)this, 6077, -5, -8, 0, 2729, -1, "", 1);// 310
|
||||
AddComplexComponent((BaseAddon)this, 6077, -6, -6, 0, 2729, -1, "", 1);// 311
|
||||
AddComplexComponent((BaseAddon)this, 6077, -6, -7, 0, 2729, -1, "", 1);// 312
|
||||
AddComplexComponent((BaseAddon)this, 6077, -6, -8, 0, 2729, -1, "", 1);// 313
|
||||
AddComplexComponent((BaseAddon)this, 6077, 9, -8, 0, 2729, -1, "", 1);// 314
|
||||
AddComplexComponent((BaseAddon)this, 6077, 9, -9, 0, 2729, -1, "", 1);// 315
|
||||
AddComplexComponent((BaseAddon)this, 6077, 8, -8, 0, 2729, -1, "", 1);// 316
|
||||
AddComplexComponent((BaseAddon)this, 6077, 8, -9, 0, 2729, -1, "", 1);// 317
|
||||
AddComplexComponent((BaseAddon)this, 6077, 7, -8, 0, 2729, -1, "", 1);// 318
|
||||
AddComplexComponent((BaseAddon)this, 6077, 7, -9, 0, 2729, -1, "", 1);// 319
|
||||
AddComplexComponent((BaseAddon)this, 6077, 6, -8, 0, 2729, -1, "", 1);// 320
|
||||
AddComplexComponent((BaseAddon)this, 6077, 6, -9, 0, 2729, -1, "", 1);// 321
|
||||
AddComplexComponent((BaseAddon)this, 6077, 5, -8, 0, 2729, -1, "", 1);// 322
|
||||
AddComplexComponent((BaseAddon)this, 6077, 5, -9, 0, 2729, -1, "", 1);// 323
|
||||
AddComplexComponent((BaseAddon)this, 6077, 4, -8, 0, 2729, -1, "", 1);// 324
|
||||
AddComplexComponent((BaseAddon)this, 6077, 4, -9, 0, 2729, -1, "", 1);// 325
|
||||
AddComplexComponent((BaseAddon)this, 6077, 3, -8, 0, 2729, -1, "", 1);// 326
|
||||
AddComplexComponent((BaseAddon)this, 6077, 3, -9, 0, 2729, -1, "", 1);// 327
|
||||
AddComplexComponent((BaseAddon)this, 6077, 2, -8, 0, 2729, -1, "", 1);// 328
|
||||
AddComplexComponent((BaseAddon)this, 6077, 2, -9, 0, 2729, -1, "", 1);// 329
|
||||
AddComplexComponent((BaseAddon)this, 6077, 9, -6, 0, 2729, -1, "", 1);// 330
|
||||
AddComplexComponent((BaseAddon)this, 6077, 9, -7, 0, 2729, -1, "", 1);// 331
|
||||
AddComplexComponent((BaseAddon)this, 6077, 8, -6, 0, 2729, -1, "", 1);// 332
|
||||
AddComplexComponent((BaseAddon)this, 6077, 8, -7, 0, 2729, -1, "", 1);// 333
|
||||
AddComplexComponent((BaseAddon)this, 6077, 7, -6, 0, 2729, -1, "", 1);// 334
|
||||
AddComplexComponent((BaseAddon)this, 6077, 7, -7, 0, 2729, -1, "", 1);// 335
|
||||
AddComplexComponent((BaseAddon)this, 6077, 6, -6, 0, 2729, -1, "", 1);// 336
|
||||
AddComplexComponent((BaseAddon)this, 6077, 6, -7, 0, 2729, -1, "", 1);// 337
|
||||
AddComplexComponent((BaseAddon)this, 6077, 5, -6, 0, 2729, -1, "", 1);// 338
|
||||
AddComplexComponent((BaseAddon)this, 6077, 5, -7, 0, 2729, -1, "", 1);// 339
|
||||
AddComplexComponent((BaseAddon)this, 6077, 4, -6, 0, 2729, -1, "", 1);// 340
|
||||
AddComplexComponent((BaseAddon)this, 6077, 4, -7, 0, 2729, -1, "", 1);// 341
|
||||
AddComplexComponent((BaseAddon)this, 6077, 3, -6, 0, 2729, -1, "", 1);// 342
|
||||
AddComplexComponent((BaseAddon)this, 6077, 3, -7, 0, 2729, -1, "", 1);// 343
|
||||
AddComplexComponent((BaseAddon)this, 6077, 2, -6, 0, 2729, -1, "", 1);// 344
|
||||
AddComplexComponent((BaseAddon)this, 6077, 2, -7, 0, 2729, -1, "", 1);// 345
|
||||
AddComplexComponent((BaseAddon)this, 6077, 1, -9, 0, 2729, -1, "", 1);// 346
|
||||
AddComplexComponent((BaseAddon)this, 6077, 0, -9, 0, 2729, -1, "", 1);// 347
|
||||
AddComplexComponent((BaseAddon)this, 6077, -1, -9, 0, 2729, -1, "", 1);// 348
|
||||
AddComplexComponent((BaseAddon)this, 6077, -2, -9, 0, 2729, -1, "", 1);// 349
|
||||
AddComplexComponent((BaseAddon)this, 6077, -3, -9, 0, 2729, -1, "", 1);// 350
|
||||
AddComplexComponent((BaseAddon)this, 6077, -4, -9, 0, 2729, -1, "", 1);// 351
|
||||
AddComplexComponent((BaseAddon)this, 6077, -5, -9, 0, 2729, -1, "", 1);// 352
|
||||
AddComplexComponent((BaseAddon)this, 6077, -6, -9, 0, 2729, -1, "", 1);// 353
|
||||
AddComplexComponent((BaseAddon)this, 17754, -8, 5, 0, 2729, -1, "", 1);// 354
|
||||
AddComplexComponent((BaseAddon)this, 17754, -9, 5, 0, 2729, -1, "", 1);// 355
|
||||
AddComplexComponent((BaseAddon)this, 17760, -10, 5, 0, 2729, -1, "", 1);// 356
|
||||
AddComplexComponent((BaseAddon)this, 17758, -11, 5, 0, 2729, -1, "", 1);// 357
|
||||
AddComplexComponent((BaseAddon)this, 17754, -12, 5, 0, 2729, -1, "", 1);// 358
|
||||
AddComplexComponent((BaseAddon)this, 17756, -12, 4, 0, 2729, -1, "", 1);// 359
|
||||
AddComplexComponent((BaseAddon)this, 17724, -11, 4, 0, 2729, -1, "", 1);// 360
|
||||
AddComplexComponent((BaseAddon)this, 17757, -10, 4, 0, 2729, -1, "", 1);// 361
|
||||
AddComplexComponent((BaseAddon)this, 17729, -9, 4, 0, 2729, -1, "", 1);// 362
|
||||
AddComplexComponent((BaseAddon)this, 17782, -13, -3, 0, 1152, -1, "", 1);// 363
|
||||
AddComplexComponent((BaseAddon)this, 17782, -13, -2, 0, 1152, -1, "", 1);// 364
|
||||
AddComplexComponent((BaseAddon)this, 17782, -13, 0, 0, 1152, -1, "", 1);// 365
|
||||
AddComplexComponent((BaseAddon)this, 17783, -13, 1, 0, 1152, -1, "", 1);// 366
|
||||
AddComplexComponent((BaseAddon)this, 17783, -13, -1, 0, 1152, -1, "", 1);// 367
|
||||
AddComplexComponent((BaseAddon)this, 17783, -13, -4, 0, 1152, -1, "", 1);// 368
|
||||
AddComplexComponent((BaseAddon)this, 17781, -13, 2, 0, 1152, -1, "", 1);// 369
|
||||
AddComplexComponent((BaseAddon)this, 17781, -13, -5, 0, 1152, -1, "", 1);// 370
|
||||
AddComplexComponent((BaseAddon)this, 17734, -8, 4, 0, 2729, -1, "", 1);// 371
|
||||
AddComplexComponent((BaseAddon)this, 19122, -9, -1, 0, 1152, -1, "", 1);// 372
|
||||
AddComplexComponent((BaseAddon)this, 22300, -11, 7, 0, 1152, -1, "", 1);// 387
|
||||
AddComplexComponent((BaseAddon)this, 6077, -8, 8, 0, 2729, -1, "", 1);// 388
|
||||
AddComplexComponent((BaseAddon)this, 6077, -8, 7, 0, 2729, -1, "", 1);// 389
|
||||
AddComplexComponent((BaseAddon)this, 6077, -8, 6, 0, 2729, -1, "", 1);// 390
|
||||
AddComplexComponent((BaseAddon)this, 6077, -8, 5, 0, 2729, -1, "", 1);// 391
|
||||
AddComplexComponent((BaseAddon)this, 6077, -8, 4, 0, 2729, -1, "", 1);// 392
|
||||
AddComplexComponent((BaseAddon)this, 6077, -8, 3, 0, 2729, -1, "", 1);// 393
|
||||
AddComplexComponent((BaseAddon)this, 6077, -9, 8, 0, 2729, -1, "", 1);// 394
|
||||
AddComplexComponent((BaseAddon)this, 6077, -9, 7, 0, 2729, -1, "", 1);// 395
|
||||
AddComplexComponent((BaseAddon)this, 6077, -9, 6, 0, 2729, -1, "", 1);// 396
|
||||
AddComplexComponent((BaseAddon)this, 6077, -9, 5, 0, 2729, -1, "", 1);// 397
|
||||
AddComplexComponent((BaseAddon)this, 6077, -9, 4, 0, 2729, -1, "", 1);// 398
|
||||
AddComplexComponent((BaseAddon)this, 6077, -9, 3, 0, 2729, -1, "", 1);// 399
|
||||
AddComplexComponent((BaseAddon)this, 6077, -10, 8, 0, 2729, -1, "", 1);// 400
|
||||
AddComplexComponent((BaseAddon)this, 6077, -10, 7, 0, 2729, -1, "", 1);// 401
|
||||
AddComplexComponent((BaseAddon)this, 6077, -10, 6, 0, 2729, -1, "", 1);// 402
|
||||
AddComplexComponent((BaseAddon)this, 6077, -10, 5, 0, 2729, -1, "", 1);// 403
|
||||
AddComplexComponent((BaseAddon)this, 6077, -10, 4, 0, 2729, -1, "", 1);// 404
|
||||
AddComplexComponent((BaseAddon)this, 6077, -10, 3, 0, 2729, -1, "", 1);// 405
|
||||
AddComplexComponent((BaseAddon)this, 6077, -11, 8, 0, 2729, -1, "", 1);// 406
|
||||
AddComplexComponent((BaseAddon)this, 6077, -11, 7, 0, 2729, -1, "", 1);// 407
|
||||
AddComplexComponent((BaseAddon)this, 6077, -11, 6, 0, 2729, -1, "", 1);// 408
|
||||
AddComplexComponent((BaseAddon)this, 6077, -11, 5, 0, 2729, -1, "", 1);// 409
|
||||
AddComplexComponent((BaseAddon)this, 6077, -11, 4, 0, 2729, -1, "", 1);// 410
|
||||
AddComplexComponent((BaseAddon)this, 6077, -11, 3, 0, 2729, -1, "", 1);// 411
|
||||
AddComplexComponent((BaseAddon)this, 6077, -7, 2, 0, 2729, -1, "", 1);// 412
|
||||
AddComplexComponent((BaseAddon)this, 6077, -7, 1, 0, 2729, -1, "", 1);// 413
|
||||
AddComplexComponent((BaseAddon)this, 6077, -7, 0, 0, 2729, -1, "", 1);// 414
|
||||
AddComplexComponent((BaseAddon)this, 6077, -7, -1, 0, 2729, -1, "", 1);// 415
|
||||
AddComplexComponent((BaseAddon)this, 6077, -7, -2, 0, 2729, -1, "", 1);// 416
|
||||
AddComplexComponent((BaseAddon)this, 6077, -8, 2, 0, 2729, -1, "", 1);// 417
|
||||
AddComplexComponent((BaseAddon)this, 6077, -8, 1, 0, 2729, -1, "", 1);// 418
|
||||
AddComplexComponent((BaseAddon)this, 6077, -8, 0, 0, 2729, -1, "", 1);// 419
|
||||
AddComplexComponent((BaseAddon)this, 6077, -8, -1, 0, 2729, -1, "", 1);// 420
|
||||
AddComplexComponent((BaseAddon)this, 6077, -8, -2, 0, 2729, -1, "", 1);// 421
|
||||
AddComplexComponent((BaseAddon)this, 6077, -9, 2, 0, 2729, -1, "", 1);// 422
|
||||
AddComplexComponent((BaseAddon)this, 6077, -9, 1, 0, 2729, -1, "", 1);// 423
|
||||
AddComplexComponent((BaseAddon)this, 6077, -9, 0, 0, 2729, -1, "", 1);// 424
|
||||
AddComplexComponent((BaseAddon)this, 6077, -9, -1, 0, 2729, -1, "", 1);// 425
|
||||
AddComplexComponent((BaseAddon)this, 6077, -9, -2, 0, 2729, -1, "", 1);// 426
|
||||
AddComplexComponent((BaseAddon)this, 6077, -10, 2, 0, 2729, -1, "", 1);// 427
|
||||
AddComplexComponent((BaseAddon)this, 6077, -10, 1, 0, 2729, -1, "", 1);// 428
|
||||
AddComplexComponent((BaseAddon)this, 6077, -10, 0, 0, 2729, -1, "", 1);// 429
|
||||
AddComplexComponent((BaseAddon)this, 6077, -10, -1, 0, 2729, -1, "", 1);// 430
|
||||
AddComplexComponent((BaseAddon)this, 6077, -10, -2, 0, 2729, -1, "", 1);// 431
|
||||
AddComplexComponent((BaseAddon)this, 6077, -11, 2, 0, 2729, -1, "", 1);// 432
|
||||
AddComplexComponent((BaseAddon)this, 6077, -11, 1, 0, 2729, -1, "", 1);// 433
|
||||
AddComplexComponent((BaseAddon)this, 6077, -11, 0, 0, 2729, -1, "", 1);// 434
|
||||
AddComplexComponent((BaseAddon)this, 6077, -11, -1, 0, 2729, -1, "", 1);// 435
|
||||
AddComplexComponent((BaseAddon)this, 6077, -11, -2, 0, 2729, -1, "", 1);// 436
|
||||
AddComplexComponent((BaseAddon)this, 6077, -12, 2, 0, 2729, -1, "", 1);// 437
|
||||
AddComplexComponent((BaseAddon)this, 6077, -12, 1, 0, 2729, -1, "", 1);// 438
|
||||
AddComplexComponent((BaseAddon)this, 6077, -12, 0, 0, 2729, -1, "", 1);// 439
|
||||
AddComplexComponent((BaseAddon)this, 6077, -12, -1, 0, 2729, -1, "", 1);// 440
|
||||
AddComplexComponent((BaseAddon)this, 6077, -12, -2, 0, 2729, -1, "", 1);// 441
|
||||
AddComplexComponent((BaseAddon)this, 6077, -7, -3, 0, 2729, -1, "", 1);// 442
|
||||
AddComplexComponent((BaseAddon)this, 6077, -7, -4, 0, 2729, -1, "", 1);// 443
|
||||
AddComplexComponent((BaseAddon)this, 6077, -7, -5, 0, 2729, -1, "", 1);// 444
|
||||
AddComplexComponent((BaseAddon)this, 6077, -8, -3, 0, 2729, -1, "", 1);// 445
|
||||
AddComplexComponent((BaseAddon)this, 6077, -8, -4, 0, 2729, -1, "", 1);// 446
|
||||
AddComplexComponent((BaseAddon)this, 6077, -8, -5, 0, 2729, -1, "", 1);// 447
|
||||
AddComplexComponent((BaseAddon)this, 6077, -9, -3, 0, 2729, -1, "", 1);// 448
|
||||
AddComplexComponent((BaseAddon)this, 6077, -9, -4, 0, 2729, -1, "", 1);// 449
|
||||
AddComplexComponent((BaseAddon)this, 6077, -9, -5, 0, 2729, -1, "", 1);// 450
|
||||
AddComplexComponent((BaseAddon)this, 6077, -10, -3, 0, 2729, -1, "", 1);// 451
|
||||
AddComplexComponent((BaseAddon)this, 6077, -10, -4, 0, 2729, -1, "", 1);// 452
|
||||
AddComplexComponent((BaseAddon)this, 6077, -10, -5, 0, 2729, -1, "", 1);// 453
|
||||
AddComplexComponent((BaseAddon)this, 6077, -11, -3, 0, 2729, -1, "", 1);// 454
|
||||
AddComplexComponent((BaseAddon)this, 6077, -11, -4, 0, 2729, -1, "", 1);// 455
|
||||
AddComplexComponent((BaseAddon)this, 6077, -11, -5, 0, 2729, -1, "", 1);// 456
|
||||
AddComplexComponent((BaseAddon)this, 6077, -12, -3, 0, 2729, -1, "", 1);// 457
|
||||
AddComplexComponent((BaseAddon)this, 6077, -12, -4, 0, 2729, -1, "", 1);// 458
|
||||
AddComplexComponent((BaseAddon)this, 6077, -12, -5, 0, 2729, -1, "", 1);// 459
|
||||
AddComplexComponent((BaseAddon)this, 6077, -13, -5, 0, 2729, -1, "", 1);// 460
|
||||
AddComplexComponent((BaseAddon)this, 6077, -13, -4, 0, 2729, -1, "", 1);// 461
|
||||
AddComplexComponent((BaseAddon)this, 6077, -13, -3, 0, 2729, -1, "", 1);// 462
|
||||
AddComplexComponent((BaseAddon)this, 6077, -13, -2, 0, 2729, -1, "", 1);// 463
|
||||
AddComplexComponent((BaseAddon)this, 6077, -13, -1, 0, 2729, -1, "", 1);// 464
|
||||
AddComplexComponent((BaseAddon)this, 6077, -13, 0, 0, 2729, -1, "", 1);// 465
|
||||
AddComplexComponent((BaseAddon)this, 6077, -13, 1, 0, 2729, -1, "", 1);// 466
|
||||
AddComplexComponent((BaseAddon)this, 6077, -13, 2, 0, 2729, -1, "", 1);// 467
|
||||
AddComplexComponent((BaseAddon)this, 6077, -13, 3, 0, 2729, -1, "", 1);// 468
|
||||
AddComplexComponent((BaseAddon)this, 6077, -12, 3, 0, 2729, -1, "", 1);// 469
|
||||
AddComplexComponent((BaseAddon)this, 6077, -12, 4, 0, 2729, -1, "", 1);// 470
|
||||
AddComplexComponent((BaseAddon)this, 6077, -12, 5, 0, 2729, -1, "", 1);// 471
|
||||
AddComplexComponent((BaseAddon)this, 6077, -12, 6, 0, 2729, -1, "", 1);// 472
|
||||
AddComplexComponent((BaseAddon)this, 6077, -12, 7, 0, 2729, -1, "", 1);// 473
|
||||
AddComplexComponent((BaseAddon)this, 6077, -12, 8, 0, 2729, -1, "", 1);// 474
|
||||
AddComplexComponent((BaseAddon)this, 17306, -8, 9, 0, 2729, -1, "", 1);// 475
|
||||
AddComplexComponent((BaseAddon)this, 17306, -9, 9, 0, 2729, -1, "", 1);// 476
|
||||
AddComplexComponent((BaseAddon)this, 17306, -10, 9, 0, 2729, -1, "", 1);// 477
|
||||
AddComplexComponent((BaseAddon)this, 17306, -11, 9, 0, 2729, -1, "", 1);// 478
|
||||
AddComplexComponent((BaseAddon)this, 17306, -12, 9, 0, 2729, -1, "", 1);// 479
|
||||
AddComplexComponent((BaseAddon)this, 17783, -13, -6, 0, 1152, -1, "", 1);// 480
|
||||
AddComplexComponent((BaseAddon)this, 17783, -13, -7, 0, 1152, -1, "", 1);// 481
|
||||
AddComplexComponent((BaseAddon)this, 17781, -13, -8, 0, 1152, -1, "", 1);// 482
|
||||
AddComplexComponent((BaseAddon)this, 17780, -9, -9, 0, 1152, -1, "", 1);// 483
|
||||
AddComplexComponent((BaseAddon)this, 17780, -7, -9, 0, 1152, -1, "", 1);// 484
|
||||
AddComplexComponent((BaseAddon)this, 17779, -11, -9, 0, 1152, -1, "", 1);// 485
|
||||
AddComplexComponent((BaseAddon)this, 17779, -12, -9, 0, 1152, -1, "", 1);// 486
|
||||
AddComplexComponent((BaseAddon)this, 17779, -8, -9, 0, 1152, -1, "", 1);// 487
|
||||
AddComplexComponent((BaseAddon)this, 17778, -10, -9, 0, 1152, -1, "", 1);// 488
|
||||
AddComplexComponent((BaseAddon)this, 22300, -12, -7, 0, 1152, -1, "", 1);// 493
|
||||
AddComplexComponent((BaseAddon)this, 6077, -7, -6, 0, 2729, -1, "", 1);// 494
|
||||
AddComplexComponent((BaseAddon)this, 6077, -7, -7, 0, 2729, -1, "", 1);// 495
|
||||
AddComplexComponent((BaseAddon)this, 6077, -7, -8, 0, 2729, -1, "", 1);// 496
|
||||
AddComplexComponent((BaseAddon)this, 6077, -8, -6, 0, 2729, -1, "", 1);// 497
|
||||
AddComplexComponent((BaseAddon)this, 6077, -8, -7, 0, 2729, -1, "", 1);// 498
|
||||
AddComplexComponent((BaseAddon)this, 6077, -8, -8, 0, 2729, -1, "", 1);// 499
|
||||
AddComplexComponent((BaseAddon)this, 6077, -9, -6, 0, 2729, -1, "", 1);// 500
|
||||
AddComplexComponent((BaseAddon)this, 6077, -9, -7, 0, 2729, -1, "", 1);// 501
|
||||
AddComplexComponent((BaseAddon)this, 6077, -9, -8, 0, 2729, -1, "", 1);// 502
|
||||
AddComplexComponent((BaseAddon)this, 6077, -10, -6, 0, 2729, -1, "", 1);// 503
|
||||
AddComplexComponent((BaseAddon)this, 6077, -10, -7, 0, 2729, -1, "", 1);// 504
|
||||
AddComplexComponent((BaseAddon)this, 6077, -10, -8, 0, 2729, -1, "", 1);// 505
|
||||
AddComplexComponent((BaseAddon)this, 6077, -11, -6, 0, 2729, -1, "", 1);// 506
|
||||
AddComplexComponent((BaseAddon)this, 6077, -11, -7, 0, 2729, -1, "", 1);// 507
|
||||
AddComplexComponent((BaseAddon)this, 6077, -11, -8, 0, 2729, -1, "", 1);// 508
|
||||
AddComplexComponent((BaseAddon)this, 6077, -12, -6, 0, 2729, -1, "", 1);// 509
|
||||
AddComplexComponent((BaseAddon)this, 6077, -12, -7, 0, 2729, -1, "", 1);// 510
|
||||
AddComplexComponent((BaseAddon)this, 6077, -12, -8, 0, 2729, -1, "", 1);// 511
|
||||
AddComplexComponent((BaseAddon)this, 6077, -7, -9, 0, 2729, -1, "", 1);// 512
|
||||
AddComplexComponent((BaseAddon)this, 6077, -8, -9, 0, 2729, -1, "", 1);// 513
|
||||
AddComplexComponent((BaseAddon)this, 6077, -9, -9, 0, 2729, -1, "", 1);// 514
|
||||
AddComplexComponent((BaseAddon)this, 6077, -10, -9, 0, 2729, -1, "", 1);// 515
|
||||
AddComplexComponent((BaseAddon)this, 6077, -11, -9, 0, 2729, -1, "", 1);// 516
|
||||
AddComplexComponent((BaseAddon)this, 6077, -12, -9, 0, 2729, -1, "", 1);// 517
|
||||
AddComplexComponent((BaseAddon)this, 6077, -13, -9, 0, 2729, -1, "", 1);// 518
|
||||
AddComplexComponent((BaseAddon)this, 6077, -13, -8, 0, 2729, -1, "", 1);// 519
|
||||
AddComplexComponent((BaseAddon)this, 6077, -13, -7, 0, 2729, -1, "", 1);// 520
|
||||
AddComplexComponent((BaseAddon)this, 6077, -13, -6, 0, 2729, -1, "", 1);// 521
|
||||
}
|
||||
|
||||
public BlackthornStep3(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write(0); // Version
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
|
||||
if (Map == Map.Trammel)
|
||||
{
|
||||
InstanceTram = this;
|
||||
}
|
||||
|
||||
if (Map == Map.Felucca)
|
||||
{
|
||||
InstanceFel = this;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,132 @@
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class BlackthornStep4 : BlackthornBaseAddon
|
||||
{
|
||||
public static BlackthornStep4 InstanceTram { get; set; }
|
||||
public static BlackthornStep4 InstanceFel { get; set; }
|
||||
|
||||
private static int[,] m_AddOnSimpleComponents = new int[,]
|
||||
{
|
||||
{7036, 7, 8, 0}, {6773, 12, 2, 0}, {7822, 12, 0, 0}// 1 8 10
|
||||
, {6773, 6, -6, 0}, {7059, 6, -7, 0}, {12906, 3, -3, 0}// 20 21 30
|
||||
, {12906, 1, -1, 0}, {12906, 1, -2, 0}, {12906, 1, -3, 0}// 31 32 33
|
||||
, {12906, 0, -3, 0}, {12906, 0, -2, 0}, {12906, 0, -1, 0}// 34 35 36
|
||||
, {12906, 0, 0, 0}, {12906, -1, -2, 0}, {12906, -1, -1, 0}// 37 38 39
|
||||
, {12906, -1, 0, 0}, {12906, -2, 0, 0}, {12906, -2, -1, 0}// 40 41 42
|
||||
, {12906, -2, -2, 0}, {12906, -1, -3, 0}, {12906, 2, -3, 0}// 43 44 45
|
||||
, {12906, 3, -2, 0}, {12906, 2, -2, 0}, {12906, 2, -1, 0}// 46 47 48
|
||||
, {12906, 2, 0, 0}, {12906, 1, 0, 0}, {12906, 0, 2, 0}// 49 50 51
|
||||
, {12906, 0, 1, 0}, {12906, -1, 1, 0}, {12906, -2, 1, 0}// 52 53 54
|
||||
, {12906, -3, 0, 0}, {12906, -4, -1, 0}, {12906, -3, -1, 0}// 55 56 57
|
||||
, {12906, -3, -2, 0}, {12906, -3, -3, 0}, {12906, -2, -3, 0}// 58 59 60
|
||||
, {15723, -2, -7, 0}, {15721, -11, -7, 0}, {12906, 3, -5, 0}// 79 80 83
|
||||
, {12906, 3, -4, 0}, {12906, -1, -4, 0}, {12906, 0, -4, 0}// 84 85 86
|
||||
, {12906, 1, -4, 0}, {12906, 2, -4, 0}, {12906, -2, -4, 0}// 87 88 89
|
||||
, {12906, -2, -5, 0}, {12906, -1, -5, 0}, {12906, 0, -5, 0}// 90 91 92
|
||||
, {12906, 1, -5, 0}, {12906, 2, -5, 0}, {12906, 2, -6, 0}// 93 94 95
|
||||
, {12906, 3, -6, 0}, {12906, 3, -7, 0}, {12906, 1, -8, 0}// 96 97 98
|
||||
, {12906, 0, -6, 0}, {12906, 0, -7, 0}, {12906, 2, -7, 0}// 99 100 101
|
||||
, {12906, 1, -6, 0}, {12906, 1, -7, 0}, {12906, 3, -8, 0}// 102 103 104
|
||||
, {12906, 2, -8, 0}// 105
|
||||
};
|
||||
|
||||
[Constructable]
|
||||
public BlackthornStep4()
|
||||
{
|
||||
for (int i = 0; i < m_AddOnSimpleComponents.Length / 4; i++)
|
||||
AddComponent(new AddonComponent(m_AddOnSimpleComponents[i, 0]), m_AddOnSimpleComponents[i, 1], m_AddOnSimpleComponents[i, 2], m_AddOnSimpleComponents[i, 3]);
|
||||
|
||||
AddComplexComponent((BaseAddon)this, 3307, 12, 7, 0, 667, -1, "", 1);// 2
|
||||
AddComplexComponent((BaseAddon)this, 3307, 11, 7, 0, 667, -1, "", 1);// 3
|
||||
AddComplexComponent((BaseAddon)this, 3307, 10, 7, 0, 667, -1, "", 1);// 4
|
||||
AddComplexComponent((BaseAddon)this, 3307, 9, 7, 0, 667, -1, "", 1);// 5
|
||||
AddComplexComponent((BaseAddon)this, 3307, 8, 7, 0, 667, -1, "", 1);// 6
|
||||
AddComplexComponent((BaseAddon)this, 3307, 7, 7, 0, 667, -1, "", 1);// 7
|
||||
AddComplexComponent((BaseAddon)this, 6571, 9, 8, 0, 0, 1, "", 1);// 9
|
||||
AddComplexComponent((BaseAddon)this, 7074, 12, 0, 0, 2500, -1, "", 1);// 11
|
||||
AddComplexComponent((BaseAddon)this, 7075, 11, 0, 0, 2500, -1, "", 1);// 12
|
||||
AddComplexComponent((BaseAddon)this, 7077, 11, -3, 0, 2500, -1, "", 1);// 13
|
||||
AddComplexComponent((BaseAddon)this, 7090, 12, -1, 0, 2500, -1, "", 1);// 14
|
||||
AddComplexComponent((BaseAddon)this, 7082, 12, -3, 0, 2500, -1, "", 1);// 15
|
||||
AddComplexComponent((BaseAddon)this, 4944, 5, -2, 0, 1175, -1, "", 1);// 16
|
||||
AddComplexComponent((BaseAddon)this, 6571, 10, -7, 0, 0, 1, "", 1);// 17
|
||||
AddComplexComponent((BaseAddon)this, 4784, 12, -8, 0, 2548, -1, "", 1);// 18
|
||||
AddComplexComponent((BaseAddon)this, 6942, 9, -8, 0, 2500, -1, "", 1);// 19
|
||||
AddComplexComponent((BaseAddon)this, 4947, 5, -4, 0, 1175, -1, "", 1);// 22
|
||||
AddComplexComponent((BaseAddon)this, 3119, -11, 1, 1, 2075, -1, "", 1);// 23
|
||||
AddComplexComponent((BaseAddon)this, 3120, -11, 1, 0, 2075, -1, "", 1);// 24
|
||||
AddComplexComponent((BaseAddon)this, 3120, -11, 0, 1, 2075, -1, "", 1);// 25
|
||||
AddComplexComponent((BaseAddon)this, 3119, -11, 0, 0, 2075, -1, "", 1);// 26
|
||||
AddComplexComponent((BaseAddon)this, 3119, -11, -1, 0, 2075, -1, "", 1);// 27
|
||||
AddComplexComponent((BaseAddon)this, 6773, 0, -2, 0, 872, -1, "", 1);// 28
|
||||
AddComplexComponent((BaseAddon)this, 6571, -10, 2, 0, 0, 1, "", 1);// 29
|
||||
AddComplexComponent((BaseAddon)this, 4955, -4, 0, 0, 1175, -1, "", 1);// 61
|
||||
AddComplexComponent((BaseAddon)this, 4957, -3, 1, 0, 1175, -1, "", 1);// 62
|
||||
AddComplexComponent((BaseAddon)this, 4955, -4, -1, 0, 1175, -1, "", 1);// 63
|
||||
AddComplexComponent((BaseAddon)this, 4946, -4, -2, 0, 1175, -1, "", 1);// 64
|
||||
AddComplexComponent((BaseAddon)this, 4947, -3, -3, 0, 1175, -1, "", 1);// 65
|
||||
AddComplexComponent((BaseAddon)this, 4947, -2, 2, 0, 1175, -1, "", 1);// 66
|
||||
AddComplexComponent((BaseAddon)this, 4962, -1, 2, 0, 1175, -1, "", 1);// 67
|
||||
AddComplexComponent((BaseAddon)this, 4963, -1, 3, 0, 1175, -1, "", 1);// 68
|
||||
AddComplexComponent((BaseAddon)this, 4963, 0, 3, 5, 1175, -1, "", 1);// 69
|
||||
AddComplexComponent((BaseAddon)this, 4962, 0, 3, 0, 1175, -1, "", 1);// 70
|
||||
AddComplexComponent((BaseAddon)this, 4952, 1, 3, 0, 1175, -1, "", 1);// 71
|
||||
AddComplexComponent((BaseAddon)this, 4947, 2, 2, 0, 1175, -1, "", 1);// 72
|
||||
AddComplexComponent((BaseAddon)this, 4944, 3, 2, 0, 1175, -1, "", 1);// 73
|
||||
AddComplexComponent((BaseAddon)this, 4943, 3, 1, 0, 1175, -1, "", 1);// 74
|
||||
AddComplexComponent((BaseAddon)this, 4947, 4, 0, 0, 1175, -1, "", 1);// 75
|
||||
AddComplexComponent((BaseAddon)this, 4956, 4, -1, 0, 1175, -1, "", 1);// 76
|
||||
AddComplexComponent((BaseAddon)this, 4956, 3, -2, 0, 1175, -1, "", 1);// 77
|
||||
AddComplexComponent((BaseAddon)this, 4954, 4, -3, 0, 1175, -1, "", 1);// 78
|
||||
AddComplexComponent((BaseAddon)this, 8708, -10, -8, 0, 2075, -1, "", 1);// 81
|
||||
AddComplexComponent((BaseAddon)this, 6571, -3, -8, 0, 0, 1, "", 1);// 82
|
||||
AddComplexComponent((BaseAddon)this, 4944, -2, -4, 0, 1175, -1, "", 1);// 106
|
||||
AddComplexComponent((BaseAddon)this, 4957, -2, -5, 0, 1175, -1, "", 1);// 107
|
||||
AddComplexComponent((BaseAddon)this, 4958, -1, -6, 0, 1175, -1, "", 1);// 108
|
||||
AddComplexComponent((BaseAddon)this, 4947, 0, -6, 0, 1175, -1, "", 1);// 109
|
||||
AddComplexComponent((BaseAddon)this, 4949, 0, -7, 0, 1175, -1, "", 1);// 110
|
||||
AddComplexComponent((BaseAddon)this, 4952, 1, -8, 0, 1175, -1, "", 1);// 111
|
||||
AddComplexComponent((BaseAddon)this, 4954, 4, -4, 0, 1175, -1, "", 1);// 112
|
||||
AddComplexComponent((BaseAddon)this, 4954, 4, -5, 0, 1175, -1, "", 1);// 113
|
||||
AddComplexComponent((BaseAddon)this, 4963, 4, -7, 5, 1175, -1, "", 1);// 114
|
||||
AddComplexComponent((BaseAddon)this, 4963, 4, -6, 0, 1175, -1, "", 1);// 115
|
||||
AddComplexComponent((BaseAddon)this, 4962, 4, -7, 0, 1175, -1, "", 1);// 116
|
||||
AddComplexComponent((BaseAddon)this, 4952, 4, -8, 0, 1175, -1, "", 1);// 117
|
||||
AddComplexComponent((BaseAddon)this, 3097, -12, 2, 0, 2075, -1, "", 1);// 118
|
||||
AddComplexComponent((BaseAddon)this, 3118, -12, 1, 0, 2075, -1, "", 1);// 119
|
||||
AddComplexComponent((BaseAddon)this, 3119, -12, -1, 0, 2075, -1, "", 1);// 120
|
||||
AddComplexComponent((BaseAddon)this, 3109, -12, 0, 0, 2075, -1, "", 1);// 121
|
||||
AddComplexComponent((BaseAddon)this, 8700, -12, -8, 0, 2075, -1, "", 1);// 122
|
||||
AddComplexComponent((BaseAddon)this, 8708, -12, -6, 0, 2075, -1, "", 1);// 123
|
||||
}
|
||||
|
||||
public BlackthornStep4(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write(0); // Version
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
|
||||
if (Map == Map.Trammel)
|
||||
{
|
||||
InstanceTram = this;
|
||||
}
|
||||
|
||||
if (Map == Map.Felucca)
|
||||
{
|
||||
InstanceFel = this;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,80 @@
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class BlackthornStep5 : BlackthornBaseAddon
|
||||
{
|
||||
public static BlackthornStep5 InstanceTram { get; set; }
|
||||
public static BlackthornStep5 InstanceFel { get; set; }
|
||||
|
||||
private static int[,] m_AddOnSimpleComponents = new int[,]
|
||||
{
|
||||
{4306, 7, 7, 0}, {4317, 5, 7, 0}, {4314, 5, 7, 0}// 2 3 4
|
||||
, {4308, 3, 7, 0}, {4280, -1, 7, 0}, {4286, -7, -3, 0}// 5 6 7
|
||||
, {4287, -6, -4, 0}, {4288, -5, -5, 0}, {9750, -7, -6, 3}// 8 9 10
|
||||
, {4335, 7, 3, 0}, {4335, 4, -3, 0}, {4335, 3, -4, 0}// 12 13 14
|
||||
, {4335, 2, -4, 0}, {4335, -1, -4, 0}, {4335, -5, -3, 0}// 15 16 17
|
||||
, {4335, -7, -2, 0}, {4335, -6, 3, 0}, {4335, -3, 3, 0}// 18 19 20
|
||||
, {4335, 2, 3, 0}, {7391, 7, -2, 0}, {7390, 6, -2, 0}// 21 23 24
|
||||
, {3118, 6, -4, 0}, {3118, 8, -3, 0}, {4338, -7, 1, 0}// 25 26 27
|
||||
, {4339, -3, -4, 0}, {3814, -4, 1, 0}, {3814, -3, 1, 0}// 28 29 30
|
||||
, {3811, 8, -5, 0}, {3811, 0, 1, 0}, {3811, 2, 0, 0}// 41 42 43
|
||||
, {3811, 0, 0, 6}// 44
|
||||
};
|
||||
|
||||
[Constructable]
|
||||
public BlackthornStep5()
|
||||
{
|
||||
for (int i = 0; i < m_AddOnSimpleComponents.Length / 4; i++)
|
||||
AddComponent(new AddonComponent(m_AddOnSimpleComponents[i, 0]), m_AddOnSimpleComponents[i, 1], m_AddOnSimpleComponents[i, 2], m_AddOnSimpleComponents[i, 3]);
|
||||
|
||||
AddComplexComponent((BaseAddon)this, 3309, 9, -6, 0, 63, -1, "", 1);// 1
|
||||
AddComplexComponent((BaseAddon)this, 8445, -6, -4, 17, 2500, -1, "", 1);// 11
|
||||
AddComplexComponent((BaseAddon)this, 8424, 4, -1, 0, 2548, -1, "", 1);// 22
|
||||
AddComplexComponent((BaseAddon)this, 3308, 3, -6, 5, 63, -1, "", 1);// 31
|
||||
AddComplexComponent((BaseAddon)this, 3308, -4, -6, 5, 63, -1, "", 1);// 32
|
||||
AddComplexComponent((BaseAddon)this, 3310, -5, -6, 5, 63, -1, "", 1);// 33
|
||||
AddComplexComponent((BaseAddon)this, 3310, 2, -6, 10, 63, -1, "", 1);// 34
|
||||
AddComplexComponent((BaseAddon)this, 3309, -7, -6, 0, 63, -1, "", 1);// 35
|
||||
AddComplexComponent((BaseAddon)this, 3309, -6, -6, 0, 63, -1, "", 1);// 36
|
||||
AddComplexComponent((BaseAddon)this, 3309, -2, -6, 0, 63, -1, "", 1);// 37
|
||||
AddComplexComponent((BaseAddon)this, 3309, 0, -6, 0, 63, -1, "", 1);// 38
|
||||
AddComplexComponent((BaseAddon)this, 3309, 5, -6, 0, 63, -1, "", 1);// 39
|
||||
AddComplexComponent((BaseAddon)this, 3309, 6, -6, 0, 63, -1, "", 1);// 40
|
||||
AddComplexComponent((BaseAddon)this, 8424, -8, -4, 0, 2548, -1, "", 1);// 45
|
||||
AddComplexComponent((BaseAddon)this, 3314, -9, -5, 0, 63, -1, "", 1);// 46
|
||||
AddComplexComponent((BaseAddon)this, 3314, -9, -2, 5, 63, -1, "", 1);// 47
|
||||
AddComplexComponent((BaseAddon)this, 3314, -9, 2, 5, 63, -1, "", 1);// 48
|
||||
AddComplexComponent((BaseAddon)this, 3313, -9, 0, 5, 63, -1, "", 1);// 49
|
||||
AddComplexComponent((BaseAddon)this, 3313, -9, 5, 0, 63, -1, "", 1);// 50
|
||||
AddComplexComponent((BaseAddon)this, 3313, -9, 4, 0, 63, -1, "", 1);// 51
|
||||
}
|
||||
|
||||
public BlackthornStep5(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write(0); // Version
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
|
||||
if (Map == Map.Trammel)
|
||||
{
|
||||
InstanceTram = this;
|
||||
}
|
||||
|
||||
if (Map == Map.Felucca)
|
||||
{
|
||||
InstanceFel = this;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,115 @@
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class BlackthornStep6 : BlackthornBaseAddon
|
||||
{
|
||||
public static BlackthornStep6 InstanceTram { get; set; }
|
||||
public static BlackthornStep6 InstanceFel { get; set; }
|
||||
|
||||
private static int[,] m_AddOnSimpleComponents = new int[,]
|
||||
{
|
||||
{18324, 11, 1, 4}, {18324, 9, 1, 4}, {3793, -9, 1, 4}// 10 11 19
|
||||
, {4306, -3, -2, 4}, {18325, 3, -4, 4}, {40248, 2, -4, 4}// 20 21 22
|
||||
, {40248, -4, 2, 4}, {3793, -4, 3, 4}, {3792, -12, 6, 4}// 30 31 53
|
||||
, {3792, -12, 5, 4}, {4306, -17, 5, 14}, {4967, -11, 3, 4}// 54 55 58
|
||||
, {4954, -13, 4, 4}, {4962, -15, 1, 4}, {4954, -10, 0, 4}// 59 60 61
|
||||
};
|
||||
|
||||
[Constructable]
|
||||
public BlackthornStep6()
|
||||
{
|
||||
for (int i = 0; i < m_AddOnSimpleComponents.Length / 4; i++)
|
||||
AddComponent(new AddonComponent(m_AddOnSimpleComponents[i, 0]), m_AddOnSimpleComponents[i, 1], m_AddOnSimpleComponents[i, 2], m_AddOnSimpleComponents[i, 3]);
|
||||
|
||||
AddComplexComponent((BaseAddon)this, 17856, 17, 2, 4, 1109, -1, "", 1);// 1
|
||||
AddComplexComponent((BaseAddon)this, 17855, 17, 3, 4, 1109, -1, "", 1);// 2
|
||||
AddComplexComponent((BaseAddon)this, 17858, 16, 3, 4, 1109, -1, "", 1);// 3
|
||||
AddComplexComponent((BaseAddon)this, 18001, 14, -5, 4, 1109, -1, "", 1);// 4
|
||||
AddComplexComponent((BaseAddon)this, 18001, 13, -5, 4, 1109, -1, "", 1);// 5
|
||||
AddComplexComponent((BaseAddon)this, 18012, 11, -5, 4, 1109, -1, "", 1);// 6
|
||||
AddComplexComponent((BaseAddon)this, 18003, 12, -5, 4, 1109, -1, "", 1);// 7
|
||||
AddComplexComponent((BaseAddon)this, 18012, 10, -5, 4, 1109, -1, "", 1);// 8
|
||||
AddComplexComponent((BaseAddon)this, 18020, 10, -4, 4, 1109, -1, "", 1);// 9
|
||||
AddComplexComponent((BaseAddon)this, 17992, 9, 1, 4, 1109, -1, "", 1);// 12
|
||||
AddComplexComponent((BaseAddon)this, 18017, 10, 1, 4, 1109, -1, "", 1);// 13
|
||||
AddComplexComponent((BaseAddon)this, 18006, 10, 2, 2, 1109, -1, "", 1);// 14
|
||||
AddComplexComponent((BaseAddon)this, 18006, 10, 3, 4, 1109, -1, "", 1);// 15
|
||||
AddComplexComponent((BaseAddon)this, 18018, 10, 3, 3, 1109, -1, "", 1);// 16
|
||||
AddComplexComponent((BaseAddon)this, 18012, 10, -6, 4, 1109, -1, "", 1);// 17
|
||||
AddComplexComponent((BaseAddon)this, 18012, 9, -6, 4, 1109, -1, "", 1);// 18
|
||||
AddComplexComponent((BaseAddon)this, 40734, 5, -3, 7, 2500, -1, "", 1);// 23
|
||||
AddComplexComponent((BaseAddon)this, 6049, 5, -3, 7, 2548, -1, "", 1);// 24
|
||||
AddComplexComponent((BaseAddon)this, 40735, 2, -2, 5, 2500, -1, "", 1);// 25
|
||||
AddComplexComponent((BaseAddon)this, 40737, -2, -2, 5, 2500, -1, "", 1);// 26
|
||||
AddComplexComponent((BaseAddon)this, 40442, 6, 7, 4, 2075, -1, "", 1);// 27
|
||||
AddComplexComponent((BaseAddon)this, 40738, 2, 6, 5, 2500, -1, "", 1);// 28
|
||||
AddComplexComponent((BaseAddon)this, 40737, -2, 6, 5, 2500, -1, "", 1);// 29
|
||||
AddComplexComponent((BaseAddon)this, 22000, -9, 1, 4, 2548, -1, "", 1);// 32
|
||||
AddComplexComponent((BaseAddon)this, 22000, -9, 2, 4, 2548, -1, "", 1);// 33
|
||||
AddComplexComponent((BaseAddon)this, 22000, -6, 3, 4, 2548, -1, "", 1);// 34
|
||||
AddComplexComponent((BaseAddon)this, 22000, -7, 3, 4, 2548, -1, "", 1);// 35
|
||||
AddComplexComponent((BaseAddon)this, 22000, -7, 1, 4, 2548, -1, "", 1);// 36
|
||||
AddComplexComponent((BaseAddon)this, 22000, -8, 1, 4, 2548, -1, "", 1);// 37
|
||||
AddComplexComponent((BaseAddon)this, 22000, -8, 2, 4, 2548, -1, "", 1);// 38
|
||||
AddComplexComponent((BaseAddon)this, 22000, -7, 2, 4, 2548, -1, "", 1);// 39
|
||||
AddComplexComponent((BaseAddon)this, 22000, -6, 2, 4, 2548, -1, "", 1);// 40
|
||||
AddComplexComponent((BaseAddon)this, 22000, -6, 1, 4, 2548, -1, "", 1);// 41
|
||||
AddComplexComponent((BaseAddon)this, 22000, -5, 3, 4, 2548, -1, "", 1);// 42
|
||||
AddComplexComponent((BaseAddon)this, 22000, -5, 2, 4, 2548, -1, "", 1);// 43
|
||||
AddComplexComponent((BaseAddon)this, 22000, -5, 1, 4, 2548, -1, "", 1);// 44
|
||||
AddComplexComponent((BaseAddon)this, 22000, -4, 4, 4, 2548, -1, "", 1);// 45
|
||||
AddComplexComponent((BaseAddon)this, 22000, -4, 3, 4, 2548, -1, "", 1);// 46
|
||||
AddComplexComponent((BaseAddon)this, 22000, -4, 2, 4, 2548, -1, "", 1);// 47
|
||||
AddComplexComponent((BaseAddon)this, 22000, -4, 1, 4, 2548, -1, "", 1);// 48
|
||||
AddComplexComponent((BaseAddon)this, 22111, -3, 4, 4, 2548, -1, "", 1);// 49
|
||||
AddComplexComponent((BaseAddon)this, 22111, -3, 3, 4, 2548, -1, "", 1);// 50
|
||||
AddComplexComponent((BaseAddon)this, 22111, -3, 2, 4, 2548, -1, "", 1);// 51
|
||||
AddComplexComponent((BaseAddon)this, 22112, -3, 1, 4, 2548, -1, "", 1);// 52
|
||||
AddComplexComponent((BaseAddon)this, 22000, -10, 1, 4, 2548, -1, "", 1);// 56
|
||||
AddComplexComponent((BaseAddon)this, 22000, -10, 2, 4, 2548, -1, "", 1);// 57
|
||||
AddComplexComponent((BaseAddon)this, 6046, -11, -3, 4, 2548, -1, "", 1);// 62
|
||||
AddComplexComponent((BaseAddon)this, 6046, -11, -2, 4, 2548, -1, "", 1);// 63
|
||||
AddComplexComponent((BaseAddon)this, 6046, -11, -1, 4, 2548, -1, "", 1);// 64
|
||||
AddComplexComponent((BaseAddon)this, 6051, -14, -3, 4, 2548, -1, "", 1);// 65
|
||||
AddComplexComponent((BaseAddon)this, 6051, -14, -2, 4, 2548, -1, "", 1);// 66
|
||||
AddComplexComponent((BaseAddon)this, 6051, -14, 0, 4, 2548, -1, "", 1);// 67
|
||||
AddComplexComponent((BaseAddon)this, 6051, -14, -1, 4, 2548, -1, "", 1);// 68
|
||||
AddComplexComponent((BaseAddon)this, 22000, -13, 0, 4, 2548, -1, "", 1);// 69
|
||||
AddComplexComponent((BaseAddon)this, 41041, -11, 3, 0, 2548, -1, "", 1);// 70
|
||||
AddComplexComponent((BaseAddon)this, 22000, -12, -1, 4, 2548, -1, "", 1);// 71
|
||||
AddComplexComponent((BaseAddon)this, 22000, -13, -1, 4, 2548, -1, "", 1);// 72
|
||||
AddComplexComponent((BaseAddon)this, 22000, -12, -3, 4, 2548, -1, "", 1);// 73
|
||||
AddComplexComponent((BaseAddon)this, 22000, -12, -2, 4, 2548, -1, "", 1);// 74
|
||||
AddComplexComponent((BaseAddon)this, 22000, -13, -2, 4, 2548, -1, "", 1);// 75
|
||||
AddComplexComponent((BaseAddon)this, 22000, -13, -3, 4, 2548, -1, "", 1);// 76
|
||||
}
|
||||
|
||||
public BlackthornStep6(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write(0); // Version
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
|
||||
if (Map == Map.Trammel)
|
||||
{
|
||||
InstanceTram = this;
|
||||
}
|
||||
|
||||
if (Map == Map.Felucca)
|
||||
{
|
||||
InstanceFel = this;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,135 @@
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class BlackthornStep7 : BlackthornBaseAddon
|
||||
{
|
||||
public static BlackthornStep7 InstanceTram { get; set; }
|
||||
public static BlackthornStep7 InstanceFel { get; set; }
|
||||
|
||||
private static int[,] m_AddOnSimpleComponents = new int[,]
|
||||
{
|
||||
{6009, -9, 1, 0}, {6009, -9, 2, 0}, {6012, -9, 2, 0}// 12 13 14
|
||||
, {6012, -8, 2, 0}, {7099, -8, 1, 0}, {7087, -8, 0, 0}// 15 16 17
|
||||
, {7087, -8, -1, 0}, {6004, -9, -1, 0}, {6011, -9, -1, 0}// 18 19 20
|
||||
, {6009, -9, 0, 0}, {6012, -9, 2, 0}, {6011, -8, 1, 0}// 21 22 23
|
||||
, {7403, -1, -3, 0}, {7816, -3, 9, 0}, {7390, -1, -8, 0}// 24 25 77
|
||||
, {9779, -3, -8, 0}// 78
|
||||
};
|
||||
|
||||
[Constructable]
|
||||
public BlackthornStep7()
|
||||
{
|
||||
for (int i = 0; i < m_AddOnSimpleComponents.Length / 4; i++)
|
||||
AddComponent(new AddonComponent(m_AddOnSimpleComponents[i, 0]), m_AddOnSimpleComponents[i, 1], m_AddOnSimpleComponents[i, 2], m_AddOnSimpleComponents[i, 3]);
|
||||
|
||||
AddComplexComponent((BaseAddon)this, 7100, 9, 1, 0, 2500, -1, "", 1);// 1
|
||||
AddComplexComponent((BaseAddon)this, 7087, 9, 0, 0, 2500, -1, "", 1);// 2
|
||||
AddComplexComponent((BaseAddon)this, 7088, 9, -1, 0, 2500, -1, "", 1);// 3
|
||||
AddComplexComponent((BaseAddon)this, 7054, 8, -1, 0, 1175, -1, "", 1);// 4
|
||||
AddComplexComponent((BaseAddon)this, 7056, 7, -1, 0, 1175, -1, "", 1);// 5
|
||||
AddComplexComponent((BaseAddon)this, 7059, 8, 1, 0, 1175, -1, "", 1);// 6
|
||||
AddComplexComponent((BaseAddon)this, 7076, 6, 1, 0, 2500, -1, "", 1);// 7
|
||||
AddComplexComponent((BaseAddon)this, 7049, 6, 0, 6, 2500, -1, "", 1);// 8
|
||||
AddComplexComponent((BaseAddon)this, 12320, 6, 0, 0, 1175, -1, "", 1);// 9
|
||||
AddComplexComponent((BaseAddon)this, 7075, 6, -1, 0, 2500, -1, "", 1);// 10
|
||||
AddComplexComponent((BaseAddon)this, 4962, 3, 2, 0, 1109, -1, "", 1);// 11
|
||||
AddComplexComponent((BaseAddon)this, 4545, -6, 2, 0, 1109, -1, "", 1);// 26
|
||||
AddComplexComponent((BaseAddon)this, 4545, -5, 2, 0, 1109, -1, "", 1);// 27
|
||||
AddComplexComponent((BaseAddon)this, 4545, -4, 2, 0, 1109, -1, "", 1);// 28
|
||||
AddComplexComponent((BaseAddon)this, 4545, -3, 2, 0, 1109, -1, "", 1);// 29
|
||||
AddComplexComponent((BaseAddon)this, 4545, -2, 2, 0, 1109, -1, "", 1);// 30
|
||||
AddComplexComponent((BaseAddon)this, 4545, -1, 2, 0, 1109, -1, "", 1);// 31
|
||||
AddComplexComponent((BaseAddon)this, 4545, 0, 2, 0, 1109, -1, "", 1);// 32
|
||||
AddComplexComponent((BaseAddon)this, 4545, 1, 2, 0, 1109, -1, "", 1);// 33
|
||||
AddComplexComponent((BaseAddon)this, 4545, 2, 2, 0, 1109, -1, "", 1);// 34
|
||||
AddComplexComponent((BaseAddon)this, 22000, -4, 4, 0, 2548, -1, "", 1);// 35
|
||||
AddComplexComponent((BaseAddon)this, 22000, -5, 4, 0, 2548, -1, "", 1);// 36
|
||||
AddComplexComponent((BaseAddon)this, 22000, -5, 5, 0, 2548, -1, "", 1);// 37
|
||||
AddComplexComponent((BaseAddon)this, 22000, -4, 5, 0, 2548, -1, "", 1);// 38
|
||||
AddComplexComponent((BaseAddon)this, 22000, -4, 6, 0, 2548, -1, "", 1);// 39
|
||||
AddComplexComponent((BaseAddon)this, 22000, -5, 6, 0, 2548, -1, "", 1);// 40
|
||||
AddComplexComponent((BaseAddon)this, 22000, -5, 7, 0, 2548, -1, "", 1);// 41
|
||||
AddComplexComponent((BaseAddon)this, 22000, -4, 7, 0, 2548, -1, "", 1);// 42
|
||||
AddComplexComponent((BaseAddon)this, 22000, -4, 8, 0, 2548, -1, "", 1);// 43
|
||||
AddComplexComponent((BaseAddon)this, 22000, -5, 8, 0, 2548, -1, "", 1);// 44
|
||||
AddComplexComponent((BaseAddon)this, 22000, -5, 9, 0, 2548, -1, "", 1);// 45
|
||||
AddComplexComponent((BaseAddon)this, 22000, -4, 9, 0, 2548, -1, "", 1);// 46
|
||||
AddComplexComponent((BaseAddon)this, 22000, -3, 9, 0, 2548, -1, "", 1);// 47
|
||||
AddComplexComponent((BaseAddon)this, 22000, -2, 9, 0, 2548, -1, "", 1);// 48
|
||||
AddComplexComponent((BaseAddon)this, 22000, -1, 9, 0, 2548, -1, "", 1);// 49
|
||||
AddComplexComponent((BaseAddon)this, 22000, 0, 9, 0, 2548, -1, "", 1);// 50
|
||||
AddComplexComponent((BaseAddon)this, 22000, 1, 9, 0, 2548, -1, "", 1);// 51
|
||||
AddComplexComponent((BaseAddon)this, 22000, 2, 8, 0, 2548, -1, "", 1);// 52
|
||||
AddComplexComponent((BaseAddon)this, 22000, 2, 7, 0, 2548, -1, "", 1);// 53
|
||||
AddComplexComponent((BaseAddon)this, 22000, 2, 6, 0, 2548, -1, "", 1);// 54
|
||||
AddComplexComponent((BaseAddon)this, 22000, 2, 5, 0, 2548, -1, "", 1);// 55
|
||||
AddComplexComponent((BaseAddon)this, 22000, 2, 4, 0, 2548, -1, "", 1);// 56
|
||||
AddComplexComponent((BaseAddon)this, 22000, 2, 3, 0, 2548, -1, "", 1);// 57
|
||||
AddComplexComponent((BaseAddon)this, 22000, 1, 3, 0, 2548, -1, "", 1);// 58
|
||||
AddComplexComponent((BaseAddon)this, 22000, 0, 3, 0, 2548, -1, "", 1);// 59
|
||||
AddComplexComponent((BaseAddon)this, 22000, -1, 3, 0, 2548, -1, "", 1);// 60
|
||||
AddComplexComponent((BaseAddon)this, 22000, -2, 3, 0, 2548, -1, "", 1);// 61
|
||||
AddComplexComponent((BaseAddon)this, 22000, -3, 3, 0, 2548, -1, "", 1);// 62
|
||||
AddComplexComponent((BaseAddon)this, 22000, -4, 3, 0, 2548, -1, "", 1);// 63
|
||||
AddComplexComponent((BaseAddon)this, 22000, -6, 3, 0, 2548, -1, "", 1);// 64
|
||||
AddComplexComponent((BaseAddon)this, 22000, -5, 3, 0, 2548, -1, "", 1);// 65
|
||||
AddComplexComponent((BaseAddon)this, 4967, 2, 2, 0, 1109, -1, "", 1);// 66
|
||||
AddComplexComponent((BaseAddon)this, 4964, 1, 2, 2, 1109, -1, "", 1);// 67
|
||||
AddComplexComponent((BaseAddon)this, 4970, 1, 2, 0, 1109, -1, "", 1);// 68
|
||||
AddComplexComponent((BaseAddon)this, 4963, 0, 2, 0, 1109, -1, "", 1);// 69
|
||||
AddComplexComponent((BaseAddon)this, 4967, -1, 2, 0, 1109, -1, "", 1);// 70
|
||||
AddComplexComponent((BaseAddon)this, 4963, -2, 2, 0, 1109, -1, "", 1);// 71
|
||||
AddComplexComponent((BaseAddon)this, 4964, -3, 2, 2, 1109, -1, "", 1);// 72
|
||||
AddComplexComponent((BaseAddon)this, 4970, -3, 2, 0, 1109, -1, "", 1);// 73
|
||||
AddComplexComponent((BaseAddon)this, 4967, -4, 2, 0, 1109, -1, "", 1);// 74
|
||||
AddComplexComponent((BaseAddon)this, 4963, -5, 2, 0, 1109, -1, "", 1);// 75
|
||||
AddComplexComponent((BaseAddon)this, 4962, -6, 2, 0, 1109, -1, "", 1);// 76
|
||||
AddComplexComponent((BaseAddon)this, 22000, -1, -7, 0, 2548, -1, "", 1);// 79
|
||||
AddComplexComponent((BaseAddon)this, 22000, -1, -8, 0, 2548, -1, "", 1);// 80
|
||||
AddComplexComponent((BaseAddon)this, 22000, -1, -9, 0, 2548, -1, "", 1);// 81
|
||||
AddComplexComponent((BaseAddon)this, 22000, -2, -9, 0, 2548, -1, "", 1);// 82
|
||||
AddComplexComponent((BaseAddon)this, 22000, -2, -8, 0, 2548, -1, "", 1);// 83
|
||||
AddComplexComponent((BaseAddon)this, 22000, -2, -7, 0, 2548, -1, "", 1);// 84
|
||||
AddComplexComponent((BaseAddon)this, 22000, -3, -7, 0, 2548, -1, "", 1);// 85
|
||||
AddComplexComponent((BaseAddon)this, 22000, -3, -8, 0, 2548, -1, "", 1);// 86
|
||||
AddComplexComponent((BaseAddon)this, 22000, -3, -9, 0, 2548, -1, "", 1);// 87
|
||||
AddComplexComponent((BaseAddon)this, 22000, -4, -9, 0, 2548, -1, "", 1);// 88
|
||||
AddComplexComponent((BaseAddon)this, 22000, -4, -8, 0, 2548, -1, "", 1);// 89
|
||||
AddComplexComponent((BaseAddon)this, 22000, -5, -8, 0, 2548, -1, "", 1);// 90
|
||||
AddComplexComponent((BaseAddon)this, 22000, -4, -7, 0, 2548, -1, "", 1);// 91
|
||||
AddComplexComponent((BaseAddon)this, 22000, -5, -7, 0, 2548, -1, "", 1);// 92
|
||||
AddComplexComponent((BaseAddon)this, 3220, 0, -8, 0, 1109, -1, "", 1);// 93
|
||||
AddComplexComponent((BaseAddon)this, 3220, 0, -7, 0, 1109, -1, "", 1);// 94
|
||||
AddComplexComponent((BaseAddon)this, 3255, -5, -6, 0, 1109, -1, "", 1);// 95
|
||||
AddComplexComponent((BaseAddon)this, 3220, -4, -6, 0, 1109, -1, "", 1);// 96
|
||||
}
|
||||
|
||||
public BlackthornStep7(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write(0); // Version
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
|
||||
if (Map == Map.Trammel)
|
||||
{
|
||||
InstanceTram = this;
|
||||
}
|
||||
|
||||
if (Map == Map.Felucca)
|
||||
{
|
||||
InstanceFel = this;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,453 @@
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class BlackthornStep8 : BlackthornBaseAddon
|
||||
{
|
||||
public static BlackthornStep8 InstanceTram { get; set; }
|
||||
public static BlackthornStep8 InstanceFel { get; set; }
|
||||
|
||||
private static int[,] m_AddOnSimpleComponents = new int[,]
|
||||
{
|
||||
{8444, 9, -8, 0}, {4947, 8, -8, 0}, {4954, 8, -7, 0}// 13 110 111
|
||||
, {4955, 8, -6, 0}, {4952, 8, -9, 0}, {4301, -8, -8, 0}// 112 119 153
|
||||
, {9619, 6, 0, 0}, {9775, -8, -1, 0}, {8445, -4, -2, 0}// 289 290 291
|
||||
, {4952, 7, -5, 0}, {4955, 7, -4, 0}, {4962, 6, -3, 0}// 295 296 297
|
||||
, {4962, 6, -2, 0}, {4962, 5, -1, 0}, {4949, 4, 0, 0}// 298 299 300
|
||||
, {4943, 5, 1, 0}, {4957, 5, 2, 0}, {4957, 4, 3, 0}// 301 302 303
|
||||
, {4944, 3, 3, 0}, {4960, 1, 2, 0}, {4963, 0, 2, 0}// 304 305 306
|
||||
, {4967, -1, 2, 0}, {4967, -2, 2, 0}, {4963, -3, 2, 0}// 307 308 309
|
||||
, {4960, -4, 2, 0}, {4961, -5, 2, 0}, {4963, -5, 1, 0}// 310 311 312
|
||||
, {4965, -5, 0, 5}, {4960, -5, 0, 0}, {4967, -5, -1, 0}// 313 314 315
|
||||
, {4963, -5, -2, 0}, {4960, -5, -3, 0}, {4967, -5, -4, 0}// 316 317 318
|
||||
, {4970, -5, -5, 0}, {4964, -5, -5, 2}, {4962, -5, -6, 0}// 319 320 321
|
||||
, {4969, -5, -7, 3}, {4964, -5, -7, 0}, {4960, -5, -8, 0}// 322 323 324
|
||||
, {4964, -5, -8, 5}, {4967, -6, -9, 0}, {4973, -5, -9, 0}// 325 335 336
|
||||
, {4300, -9, -7, 0}, {4299, -10, -6, 0}, {4298, -11, -5, 0}// 347 348 349
|
||||
};
|
||||
|
||||
[Constructable]
|
||||
public BlackthornStep8()
|
||||
{
|
||||
for (int i = 0; i < m_AddOnSimpleComponents.Length / 4; i++)
|
||||
AddComponent(new AddonComponent(m_AddOnSimpleComponents[i, 0]), m_AddOnSimpleComponents[i, 1], m_AddOnSimpleComponents[i, 2], m_AddOnSimpleComponents[i, 3]);
|
||||
|
||||
AddComplexComponent((BaseAddon)this, 22000, 13, 9, 0, 2548, -1, "", 1);// 1
|
||||
AddComplexComponent((BaseAddon)this, 22000, 13, 8, 0, 2548, -1, "", 1);// 2
|
||||
AddComplexComponent((BaseAddon)this, 22000, 12, 9, 0, 2548, -1, "", 1);// 3
|
||||
AddComplexComponent((BaseAddon)this, 22000, 12, 8, 0, 2548, -1, "", 1);// 4
|
||||
AddComplexComponent((BaseAddon)this, 22000, 11, 9, 0, 2548, -1, "", 1);// 5
|
||||
AddComplexComponent((BaseAddon)this, 22000, 11, 8, 0, 2548, -1, "", 1);// 6
|
||||
AddComplexComponent((BaseAddon)this, 22000, 10, 9, 0, 2548, -1, "", 1);// 7
|
||||
AddComplexComponent((BaseAddon)this, 22000, 10, 8, 0, 2548, -1, "", 1);// 8
|
||||
AddComplexComponent((BaseAddon)this, 22000, 9, 9, 0, 2548, -1, "", 1);// 9
|
||||
AddComplexComponent((BaseAddon)this, 22000, 9, 8, 0, 2548, -1, "", 1);// 10
|
||||
AddComplexComponent((BaseAddon)this, 22000, 8, 9, 0, 2548, -1, "", 1);// 11
|
||||
AddComplexComponent((BaseAddon)this, 22000, 8, 8, 0, 2548, -1, "", 1);// 12
|
||||
AddComplexComponent((BaseAddon)this, 22000, 13, 2, 0, 2548, -1, "", 1);// 14
|
||||
AddComplexComponent((BaseAddon)this, 22000, 13, 1, 0, 2548, -1, "", 1);// 15
|
||||
AddComplexComponent((BaseAddon)this, 22000, 13, 0, 0, 2548, -1, "", 1);// 16
|
||||
AddComplexComponent((BaseAddon)this, 22000, 13, -1, 0, 2548, -1, "", 1);// 17
|
||||
AddComplexComponent((BaseAddon)this, 22000, 13, -2, 0, 2548, -1, "", 1);// 18
|
||||
AddComplexComponent((BaseAddon)this, 22000, 13, -3, 0, 2548, -1, "", 1);// 19
|
||||
AddComplexComponent((BaseAddon)this, 22000, 13, -4, 0, 2548, -1, "", 1);// 20
|
||||
AddComplexComponent((BaseAddon)this, 22000, 13, -5, 0, 2548, -1, "", 1);// 21
|
||||
AddComplexComponent((BaseAddon)this, 22000, 13, -6, 0, 2548, -1, "", 1);// 22
|
||||
AddComplexComponent((BaseAddon)this, 22000, 13, -7, 0, 2548, -1, "", 1);// 23
|
||||
AddComplexComponent((BaseAddon)this, 22000, 13, -8, 0, 2548, -1, "", 1);// 24
|
||||
AddComplexComponent((BaseAddon)this, 22000, 12, 2, 0, 2548, -1, "", 1);// 25
|
||||
AddComplexComponent((BaseAddon)this, 22000, 12, 1, 0, 2548, -1, "", 1);// 26
|
||||
AddComplexComponent((BaseAddon)this, 22000, 12, 0, 0, 2548, -1, "", 1);// 27
|
||||
AddComplexComponent((BaseAddon)this, 22000, 12, -1, 0, 2548, -1, "", 1);// 28
|
||||
AddComplexComponent((BaseAddon)this, 22000, 12, -2, 0, 2548, -1, "", 1);// 29
|
||||
AddComplexComponent((BaseAddon)this, 22000, 12, -3, 0, 2548, -1, "", 1);// 30
|
||||
AddComplexComponent((BaseAddon)this, 22000, 12, -4, 0, 2548, -1, "", 1);// 31
|
||||
AddComplexComponent((BaseAddon)this, 22000, 12, -5, 0, 2548, -1, "", 1);// 32
|
||||
AddComplexComponent((BaseAddon)this, 22000, 12, -6, 0, 2548, -1, "", 1);// 33
|
||||
AddComplexComponent((BaseAddon)this, 22000, 12, -7, 0, 2548, -1, "", 1);// 34
|
||||
AddComplexComponent((BaseAddon)this, 22000, 12, -8, 0, 2548, -1, "", 1);// 35
|
||||
AddComplexComponent((BaseAddon)this, 22000, 11, 2, 0, 2548, -1, "", 1);// 36
|
||||
AddComplexComponent((BaseAddon)this, 22000, 11, 1, 0, 2548, -1, "", 1);// 37
|
||||
AddComplexComponent((BaseAddon)this, 22000, 11, 0, 0, 2548, -1, "", 1);// 38
|
||||
AddComplexComponent((BaseAddon)this, 22000, 11, -1, 0, 2548, -1, "", 1);// 39
|
||||
AddComplexComponent((BaseAddon)this, 22000, 11, -2, 0, 2548, -1, "", 1);// 40
|
||||
AddComplexComponent((BaseAddon)this, 22000, 11, -3, 0, 2548, -1, "", 1);// 41
|
||||
AddComplexComponent((BaseAddon)this, 22000, 11, -4, 0, 2548, -1, "", 1);// 42
|
||||
AddComplexComponent((BaseAddon)this, 22000, 11, -5, 0, 2548, -1, "", 1);// 43
|
||||
AddComplexComponent((BaseAddon)this, 22000, 11, -6, 0, 2548, -1, "", 1);// 44
|
||||
AddComplexComponent((BaseAddon)this, 22000, 11, -7, 0, 2548, -1, "", 1);// 45
|
||||
AddComplexComponent((BaseAddon)this, 22000, 11, -8, 0, 2548, -1, "", 1);// 46
|
||||
AddComplexComponent((BaseAddon)this, 22000, 10, 2, 0, 2548, -1, "", 1);// 47
|
||||
AddComplexComponent((BaseAddon)this, 22000, 10, 1, 0, 2548, -1, "", 1);// 48
|
||||
AddComplexComponent((BaseAddon)this, 22000, 10, 0, 0, 2548, -1, "", 1);// 49
|
||||
AddComplexComponent((BaseAddon)this, 22000, 10, -1, 0, 2548, -1, "", 1);// 50
|
||||
AddComplexComponent((BaseAddon)this, 22000, 10, -2, 0, 2548, -1, "", 1);// 51
|
||||
AddComplexComponent((BaseAddon)this, 22000, 10, -3, 0, 2548, -1, "", 1);// 52
|
||||
AddComplexComponent((BaseAddon)this, 22000, 10, -4, 0, 2548, -1, "", 1);// 53
|
||||
AddComplexComponent((BaseAddon)this, 22000, 10, -5, 0, 2548, -1, "", 1);// 54
|
||||
AddComplexComponent((BaseAddon)this, 22000, 10, -6, 0, 2548, -1, "", 1);// 55
|
||||
AddComplexComponent((BaseAddon)this, 22000, 10, -7, 0, 2548, -1, "", 1);// 56
|
||||
AddComplexComponent((BaseAddon)this, 22000, 10, -8, 0, 2548, -1, "", 1);// 57
|
||||
AddComplexComponent((BaseAddon)this, 22000, 9, 2, 0, 2548, -1, "", 1);// 58
|
||||
AddComplexComponent((BaseAddon)this, 22000, 9, 1, 0, 2548, -1, "", 1);// 59
|
||||
AddComplexComponent((BaseAddon)this, 22000, 9, 0, 0, 2548, -1, "", 1);// 60
|
||||
AddComplexComponent((BaseAddon)this, 22000, 9, -1, 0, 2548, -1, "", 1);// 61
|
||||
AddComplexComponent((BaseAddon)this, 22000, 9, -2, 0, 2548, -1, "", 1);// 62
|
||||
AddComplexComponent((BaseAddon)this, 22000, 9, -3, 0, 2548, -1, "", 1);// 63
|
||||
AddComplexComponent((BaseAddon)this, 22000, 9, -4, 0, 2548, -1, "", 1);// 64
|
||||
AddComplexComponent((BaseAddon)this, 22000, 9, -5, 0, 2548, -1, "", 1);// 65
|
||||
AddComplexComponent((BaseAddon)this, 22000, 9, -6, 0, 2548, -1, "", 1);// 66
|
||||
AddComplexComponent((BaseAddon)this, 22000, 9, -7, 0, 2548, -1, "", 1);// 67
|
||||
AddComplexComponent((BaseAddon)this, 22000, 9, -8, 0, 2548, -1, "", 1);// 68
|
||||
AddComplexComponent((BaseAddon)this, 22000, 8, 2, 0, 2548, -1, "", 1);// 69
|
||||
AddComplexComponent((BaseAddon)this, 22000, 8, 1, 0, 2548, -1, "", 1);// 70
|
||||
AddComplexComponent((BaseAddon)this, 22000, 8, 0, 0, 2548, -1, "", 1);// 71
|
||||
AddComplexComponent((BaseAddon)this, 22000, 8, -1, 0, 2548, -1, "", 1);// 72
|
||||
AddComplexComponent((BaseAddon)this, 22000, 8, -2, 0, 2548, -1, "", 1);// 73
|
||||
AddComplexComponent((BaseAddon)this, 22000, 8, -3, 0, 2548, -1, "", 1);// 74
|
||||
AddComplexComponent((BaseAddon)this, 22000, 8, -4, 0, 2548, -1, "", 1);// 75
|
||||
AddComplexComponent((BaseAddon)this, 22000, 8, -5, 0, 2548, -1, "", 1);// 76
|
||||
AddComplexComponent((BaseAddon)this, 22000, 8, -6, 0, 2548, -1, "", 1);// 77
|
||||
AddComplexComponent((BaseAddon)this, 22000, 8, -7, 0, 2548, -1, "", 1);// 78
|
||||
AddComplexComponent((BaseAddon)this, 22000, 8, -8, 0, 2548, -1, "", 1);// 79
|
||||
AddComplexComponent((BaseAddon)this, 22000, 13, 7, 0, 2548, -1, "", 1);// 80
|
||||
AddComplexComponent((BaseAddon)this, 22000, 13, 6, 0, 2548, -1, "", 1);// 81
|
||||
AddComplexComponent((BaseAddon)this, 22000, 13, 5, 0, 2548, -1, "", 1);// 82
|
||||
AddComplexComponent((BaseAddon)this, 22000, 13, 4, 0, 2548, -1, "", 1);// 83
|
||||
AddComplexComponent((BaseAddon)this, 22000, 13, 3, 0, 2548, -1, "", 1);// 84
|
||||
AddComplexComponent((BaseAddon)this, 22000, 12, 7, 0, 2548, -1, "", 1);// 85
|
||||
AddComplexComponent((BaseAddon)this, 22000, 12, 6, 0, 2548, -1, "", 1);// 86
|
||||
AddComplexComponent((BaseAddon)this, 22000, 12, 5, 0, 2548, -1, "", 1);// 87
|
||||
AddComplexComponent((BaseAddon)this, 22000, 12, 4, 0, 2548, -1, "", 1);// 88
|
||||
AddComplexComponent((BaseAddon)this, 22000, 12, 3, 0, 2548, -1, "", 1);// 89
|
||||
AddComplexComponent((BaseAddon)this, 22000, 11, 7, 0, 2548, -1, "", 1);// 90
|
||||
AddComplexComponent((BaseAddon)this, 22000, 11, 6, 0, 2548, -1, "", 1);// 91
|
||||
AddComplexComponent((BaseAddon)this, 22000, 11, 5, 0, 2548, -1, "", 1);// 92
|
||||
AddComplexComponent((BaseAddon)this, 22000, 11, 4, 0, 2548, -1, "", 1);// 93
|
||||
AddComplexComponent((BaseAddon)this, 22000, 11, 3, 0, 2548, -1, "", 1);// 94
|
||||
AddComplexComponent((BaseAddon)this, 22000, 10, 7, 0, 2548, -1, "", 1);// 95
|
||||
AddComplexComponent((BaseAddon)this, 22000, 10, 6, 0, 2548, -1, "", 1);// 96
|
||||
AddComplexComponent((BaseAddon)this, 22000, 10, 5, 0, 2548, -1, "", 1);// 97
|
||||
AddComplexComponent((BaseAddon)this, 22000, 10, 4, 0, 2548, -1, "", 1);// 98
|
||||
AddComplexComponent((BaseAddon)this, 22000, 10, 3, 0, 2548, -1, "", 1);// 99
|
||||
AddComplexComponent((BaseAddon)this, 22000, 9, 7, 0, 2548, -1, "", 1);// 100
|
||||
AddComplexComponent((BaseAddon)this, 22000, 9, 6, 0, 2548, -1, "", 1);// 101
|
||||
AddComplexComponent((BaseAddon)this, 22000, 9, 5, 0, 2548, -1, "", 1);// 102
|
||||
AddComplexComponent((BaseAddon)this, 22000, 9, 4, 0, 2548, -1, "", 1);// 103
|
||||
AddComplexComponent((BaseAddon)this, 22000, 9, 3, 0, 2548, -1, "", 1);// 104
|
||||
AddComplexComponent((BaseAddon)this, 22000, 8, 7, 0, 2548, -1, "", 1);// 105
|
||||
AddComplexComponent((BaseAddon)this, 22000, 8, 6, 0, 2548, -1, "", 1);// 106
|
||||
AddComplexComponent((BaseAddon)this, 22000, 8, 5, 0, 2548, -1, "", 1);// 107
|
||||
AddComplexComponent((BaseAddon)this, 22000, 8, 4, 0, 2548, -1, "", 1);// 108
|
||||
AddComplexComponent((BaseAddon)this, 22000, 8, 3, 0, 2548, -1, "", 1);// 109
|
||||
AddComplexComponent((BaseAddon)this, 22000, 13, -9, 0, 2548, -1, "", 1);// 113
|
||||
AddComplexComponent((BaseAddon)this, 22000, 12, -9, 0, 2548, -1, "", 1);// 114
|
||||
AddComplexComponent((BaseAddon)this, 22000, 11, -9, 0, 2548, -1, "", 1);// 115
|
||||
AddComplexComponent((BaseAddon)this, 22000, 10, -9, 0, 2548, -1, "", 1);// 116
|
||||
AddComplexComponent((BaseAddon)this, 22000, 9, -9, 0, 2548, -1, "", 1);// 117
|
||||
AddComplexComponent((BaseAddon)this, 22000, 8, -9, 0, 2548, -1, "", 1);// 118
|
||||
AddComplexComponent((BaseAddon)this, 14138, -7, 8, 0, 762, -1, "", 1);// 120
|
||||
AddComplexComponent((BaseAddon)this, 22000, 7, 9, 0, 2548, -1, "", 1);// 121
|
||||
AddComplexComponent((BaseAddon)this, 22000, 7, 8, 0, 2548, -1, "", 1);// 122
|
||||
AddComplexComponent((BaseAddon)this, 22000, 6, 9, 0, 2548, -1, "", 1);// 123
|
||||
AddComplexComponent((BaseAddon)this, 22000, 6, 8, 0, 2548, -1, "", 1);// 124
|
||||
AddComplexComponent((BaseAddon)this, 22000, 5, 9, 0, 2548, -1, "", 1);// 125
|
||||
AddComplexComponent((BaseAddon)this, 22000, 5, 8, 0, 2548, -1, "", 1);// 126
|
||||
AddComplexComponent((BaseAddon)this, 22000, 4, 9, 0, 2548, -1, "", 1);// 127
|
||||
AddComplexComponent((BaseAddon)this, 22000, 4, 8, 0, 2548, -1, "", 1);// 128
|
||||
AddComplexComponent((BaseAddon)this, 22000, 3, 9, 0, 2548, -1, "", 1);// 129
|
||||
AddComplexComponent((BaseAddon)this, 22000, 3, 8, 0, 2548, -1, "", 1);// 130
|
||||
AddComplexComponent((BaseAddon)this, 22000, 2, 9, 0, 2548, -1, "", 1);// 131
|
||||
AddComplexComponent((BaseAddon)this, 22000, 2, 8, 0, 2548, -1, "", 1);// 132
|
||||
AddComplexComponent((BaseAddon)this, 22000, 1, 9, 0, 2548, -1, "", 1);// 133
|
||||
AddComplexComponent((BaseAddon)this, 22000, 1, 8, 0, 2548, -1, "", 1);// 134
|
||||
AddComplexComponent((BaseAddon)this, 22000, 0, 9, 0, 2548, -1, "", 1);// 135
|
||||
AddComplexComponent((BaseAddon)this, 22000, 0, 8, 0, 2548, -1, "", 1);// 136
|
||||
AddComplexComponent((BaseAddon)this, 22000, -1, 9, 0, 2548, -1, "", 1);// 137
|
||||
AddComplexComponent((BaseAddon)this, 22000, -1, 8, 0, 2548, -1, "", 1);// 138
|
||||
AddComplexComponent((BaseAddon)this, 22000, -2, 9, 0, 2548, -1, "", 1);// 139
|
||||
AddComplexComponent((BaseAddon)this, 22000, -2, 8, 0, 2548, -1, "", 1);// 140
|
||||
AddComplexComponent((BaseAddon)this, 22000, -3, 9, 0, 2548, -1, "", 1);// 141
|
||||
AddComplexComponent((BaseAddon)this, 22000, -3, 8, 0, 2548, -1, "", 1);// 142
|
||||
AddComplexComponent((BaseAddon)this, 22000, -4, 9, 0, 2548, -1, "", 1);// 143
|
||||
AddComplexComponent((BaseAddon)this, 22000, -4, 8, 0, 2548, -1, "", 1);// 144
|
||||
AddComplexComponent((BaseAddon)this, 22000, -5, 9, 0, 2548, -1, "", 1);// 145
|
||||
AddComplexComponent((BaseAddon)this, 22000, -5, 8, 0, 2548, -1, "", 1);// 146
|
||||
AddComplexComponent((BaseAddon)this, 22000, -6, 9, 0, 2548, -1, "", 1);// 147
|
||||
AddComplexComponent((BaseAddon)this, 22000, -6, 8, 0, 2548, -1, "", 1);// 148
|
||||
AddComplexComponent((BaseAddon)this, 22000, -7, 9, 0, 2548, -1, "", 1);// 149
|
||||
AddComplexComponent((BaseAddon)this, 22000, -7, 8, 0, 2548, -1, "", 1);// 150
|
||||
AddComplexComponent((BaseAddon)this, 22000, -8, 9, 0, 2548, -1, "", 1);// 151
|
||||
AddComplexComponent((BaseAddon)this, 22000, -8, 8, 0, 2548, -1, "", 1);// 152
|
||||
AddComplexComponent((BaseAddon)this, 8136, -3, 6, 0, 2548, -1, "", 1);// 154
|
||||
AddComplexComponent((BaseAddon)this, 8446, -2, 6, 0, 1920, -1, "", 1);// 155
|
||||
AddComplexComponent((BaseAddon)this, 22000, -3, 2, 0, 2548, -1, "", 1);// 156
|
||||
AddComplexComponent((BaseAddon)this, 22000, -1, 2, 0, 2548, -1, "", 1);// 157
|
||||
AddComplexComponent((BaseAddon)this, 22000, -2, 2, 0, 2548, -1, "", 1);// 158
|
||||
AddComplexComponent((BaseAddon)this, 22000, 7, 2, 0, 2548, -1, "", 1);// 159
|
||||
AddComplexComponent((BaseAddon)this, 22000, 7, 1, 0, 2548, -1, "", 1);// 160
|
||||
AddComplexComponent((BaseAddon)this, 22000, 7, 0, 0, 2548, -1, "", 1);// 161
|
||||
AddComplexComponent((BaseAddon)this, 22000, 7, -1, 0, 2548, -1, "", 1);// 162
|
||||
AddComplexComponent((BaseAddon)this, 22000, 7, -2, 0, 2548, -1, "", 1);// 163
|
||||
AddComplexComponent((BaseAddon)this, 22000, 7, -3, 0, 2548, -1, "", 1);// 164
|
||||
AddComplexComponent((BaseAddon)this, 22000, 6, 2, 0, 2548, -1, "", 1);// 165
|
||||
AddComplexComponent((BaseAddon)this, 22000, 6, 1, 0, 2548, -1, "", 1);// 166
|
||||
AddComplexComponent((BaseAddon)this, 22000, 6, 0, 0, 2548, -1, "", 1);// 167
|
||||
AddComplexComponent((BaseAddon)this, 22000, 6, -1, 0, 2548, -1, "", 1);// 168
|
||||
AddComplexComponent((BaseAddon)this, 22000, 6, -2, 0, 2548, -1, "", 1);// 169
|
||||
AddComplexComponent((BaseAddon)this, 22000, 6, -3, 0, 2548, -1, "", 1);// 170
|
||||
AddComplexComponent((BaseAddon)this, 22000, 5, 2, 0, 2548, -1, "", 1);// 171
|
||||
AddComplexComponent((BaseAddon)this, 22000, 5, 1, 0, 2548, -1, "", 1);// 172
|
||||
AddComplexComponent((BaseAddon)this, 22000, 5, 0, 0, 2548, -1, "", 1);// 173
|
||||
AddComplexComponent((BaseAddon)this, 22000, 5, -1, 0, 2548, -1, "", 1);// 174
|
||||
AddComplexComponent((BaseAddon)this, 22000, 7, 7, 0, 2548, -1, "", 1);// 175
|
||||
AddComplexComponent((BaseAddon)this, 22000, 7, 6, 0, 2548, -1, "", 1);// 176
|
||||
AddComplexComponent((BaseAddon)this, 22000, 7, 5, 0, 2548, -1, "", 1);// 177
|
||||
AddComplexComponent((BaseAddon)this, 22000, 7, 4, 0, 2548, -1, "", 1);// 178
|
||||
AddComplexComponent((BaseAddon)this, 22000, 7, 3, 0, 2548, -1, "", 1);// 179
|
||||
AddComplexComponent((BaseAddon)this, 22000, 6, 7, 0, 2548, -1, "", 1);// 180
|
||||
AddComplexComponent((BaseAddon)this, 22000, 6, 6, 0, 2548, -1, "", 1);// 181
|
||||
AddComplexComponent((BaseAddon)this, 22000, 6, 5, 0, 2548, -1, "", 1);// 182
|
||||
AddComplexComponent((BaseAddon)this, 22000, 6, 4, 0, 2548, -1, "", 1);// 183
|
||||
AddComplexComponent((BaseAddon)this, 22000, 6, 3, 0, 2548, -1, "", 1);// 184
|
||||
AddComplexComponent((BaseAddon)this, 22000, 5, 7, 0, 2548, -1, "", 1);// 185
|
||||
AddComplexComponent((BaseAddon)this, 22000, 5, 6, 0, 2548, -1, "", 1);// 186
|
||||
AddComplexComponent((BaseAddon)this, 22000, 5, 5, 0, 2548, -1, "", 1);// 187
|
||||
AddComplexComponent((BaseAddon)this, 22000, 5, 4, 0, 2548, -1, "", 1);// 188
|
||||
AddComplexComponent((BaseAddon)this, 22000, 5, 3, 0, 2548, -1, "", 1);// 189
|
||||
AddComplexComponent((BaseAddon)this, 22000, 4, 7, 0, 2548, -1, "", 1);// 190
|
||||
AddComplexComponent((BaseAddon)this, 22000, 4, 6, 0, 2548, -1, "", 1);// 191
|
||||
AddComplexComponent((BaseAddon)this, 22000, 4, 5, 0, 2548, -1, "", 1);// 192
|
||||
AddComplexComponent((BaseAddon)this, 22000, 4, 4, 0, 2548, -1, "", 1);// 193
|
||||
AddComplexComponent((BaseAddon)this, 22000, 4, 3, 0, 2548, -1, "", 1);// 194
|
||||
AddComplexComponent((BaseAddon)this, 22000, 3, 7, 0, 2548, -1, "", 1);// 195
|
||||
AddComplexComponent((BaseAddon)this, 22000, 3, 6, 0, 2548, -1, "", 1);// 196
|
||||
AddComplexComponent((BaseAddon)this, 22000, 3, 5, 0, 2548, -1, "", 1);// 197
|
||||
AddComplexComponent((BaseAddon)this, 22000, 3, 4, 0, 2548, -1, "", 1);// 198
|
||||
AddComplexComponent((BaseAddon)this, 22000, 3, 3, 0, 2548, -1, "", 1);// 199
|
||||
AddComplexComponent((BaseAddon)this, 22000, 2, 7, 0, 2548, -1, "", 1);// 200
|
||||
AddComplexComponent((BaseAddon)this, 22000, 2, 6, 0, 2548, -1, "", 1);// 201
|
||||
AddComplexComponent((BaseAddon)this, 22000, 2, 5, 0, 2548, -1, "", 1);// 202
|
||||
AddComplexComponent((BaseAddon)this, 22000, 2, 4, 0, 2548, -1, "", 1);// 203
|
||||
AddComplexComponent((BaseAddon)this, 22000, 2, 3, 0, 2548, -1, "", 1);// 204
|
||||
AddComplexComponent((BaseAddon)this, 22000, 1, 7, 0, 2548, -1, "", 1);// 205
|
||||
AddComplexComponent((BaseAddon)this, 22000, 1, 6, 0, 2548, -1, "", 1);// 206
|
||||
AddComplexComponent((BaseAddon)this, 22000, 1, 5, 0, 2548, -1, "", 1);// 207
|
||||
AddComplexComponent((BaseAddon)this, 22000, 1, 4, 0, 2548, -1, "", 1);// 208
|
||||
AddComplexComponent((BaseAddon)this, 22000, 1, 3, 0, 2548, -1, "", 1);// 209
|
||||
AddComplexComponent((BaseAddon)this, 22000, 0, 7, 0, 2548, -1, "", 1);// 210
|
||||
AddComplexComponent((BaseAddon)this, 22000, 0, 6, 0, 2548, -1, "", 1);// 211
|
||||
AddComplexComponent((BaseAddon)this, 22000, 0, 5, 0, 2548, -1, "", 1);// 212
|
||||
AddComplexComponent((BaseAddon)this, 22000, 0, 4, 0, 2548, -1, "", 1);// 213
|
||||
AddComplexComponent((BaseAddon)this, 22000, 0, 3, 0, 2548, -1, "", 1);// 214
|
||||
AddComplexComponent((BaseAddon)this, 22000, -1, 7, 0, 2548, -1, "", 1);// 215
|
||||
AddComplexComponent((BaseAddon)this, 22000, -1, 6, 0, 2548, -1, "", 1);// 216
|
||||
AddComplexComponent((BaseAddon)this, 22000, -1, 5, 0, 2548, -1, "", 1);// 217
|
||||
AddComplexComponent((BaseAddon)this, 22000, -1, 4, 0, 2548, -1, "", 1);// 218
|
||||
AddComplexComponent((BaseAddon)this, 22000, -1, 3, 0, 2548, -1, "", 1);// 219
|
||||
AddComplexComponent((BaseAddon)this, 22000, -2, 7, 0, 2548, -1, "", 1);// 220
|
||||
AddComplexComponent((BaseAddon)this, 22000, -2, 6, 0, 2548, -1, "", 1);// 221
|
||||
AddComplexComponent((BaseAddon)this, 22000, -2, 5, 0, 2548, -1, "", 1);// 222
|
||||
AddComplexComponent((BaseAddon)this, 22000, -2, 4, 0, 2548, -1, "", 1);// 223
|
||||
AddComplexComponent((BaseAddon)this, 22000, -2, 3, 0, 2548, -1, "", 1);// 224
|
||||
AddComplexComponent((BaseAddon)this, 22000, -3, 7, 0, 2548, -1, "", 1);// 225
|
||||
AddComplexComponent((BaseAddon)this, 22000, -3, 6, 0, 2548, -1, "", 1);// 226
|
||||
AddComplexComponent((BaseAddon)this, 22000, -3, 5, 0, 2548, -1, "", 1);// 227
|
||||
AddComplexComponent((BaseAddon)this, 22000, -3, 4, 0, 2548, -1, "", 1);// 228
|
||||
AddComplexComponent((BaseAddon)this, 22000, -3, 3, 0, 2548, -1, "", 1);// 229
|
||||
AddComplexComponent((BaseAddon)this, 22000, -4, 7, 0, 2548, -1, "", 1);// 230
|
||||
AddComplexComponent((BaseAddon)this, 22000, -4, 6, 0, 2548, -1, "", 1);// 231
|
||||
AddComplexComponent((BaseAddon)this, 22000, -4, 5, 0, 2548, -1, "", 1);// 232
|
||||
AddComplexComponent((BaseAddon)this, 22000, -4, 4, 0, 2548, -1, "", 1);// 233
|
||||
AddComplexComponent((BaseAddon)this, 22000, -4, 3, 0, 2548, -1, "", 1);// 234
|
||||
AddComplexComponent((BaseAddon)this, 22000, -5, 7, 0, 2548, -1, "", 1);// 235
|
||||
AddComplexComponent((BaseAddon)this, 22000, -5, 6, 0, 2548, -1, "", 1);// 236
|
||||
AddComplexComponent((BaseAddon)this, 22000, -5, 5, 0, 2548, -1, "", 1);// 237
|
||||
AddComplexComponent((BaseAddon)this, 22000, -5, 4, 0, 2548, -1, "", 1);// 238
|
||||
AddComplexComponent((BaseAddon)this, 22000, -5, 3, 0, 2548, -1, "", 1);// 239
|
||||
AddComplexComponent((BaseAddon)this, 22000, -5, 2, 0, 2548, -1, "", 1);// 240
|
||||
AddComplexComponent((BaseAddon)this, 22000, -6, 7, 0, 2548, -1, "", 1);// 241
|
||||
AddComplexComponent((BaseAddon)this, 22000, -6, 6, 0, 2548, -1, "", 1);// 242
|
||||
AddComplexComponent((BaseAddon)this, 22000, -6, 5, 0, 2548, -1, "", 1);// 243
|
||||
AddComplexComponent((BaseAddon)this, 22000, -6, 4, 0, 2548, -1, "", 1);// 244
|
||||
AddComplexComponent((BaseAddon)this, 22000, -6, 3, 0, 2548, -1, "", 1);// 245
|
||||
AddComplexComponent((BaseAddon)this, 22000, -6, 2, 0, 2548, -1, "", 1);// 246
|
||||
AddComplexComponent((BaseAddon)this, 22000, -7, 7, 0, 2548, -1, "", 1);// 247
|
||||
AddComplexComponent((BaseAddon)this, 22000, -7, 6, 0, 2548, -1, "", 1);// 248
|
||||
AddComplexComponent((BaseAddon)this, 22000, -7, 5, 0, 2548, -1, "", 1);// 249
|
||||
AddComplexComponent((BaseAddon)this, 22000, -7, 4, 0, 2548, -1, "", 1);// 250
|
||||
AddComplexComponent((BaseAddon)this, 22000, -7, 3, 0, 2548, -1, "", 1);// 251
|
||||
AddComplexComponent((BaseAddon)this, 22000, -7, 2, 0, 2548, -1, "", 1);// 252
|
||||
AddComplexComponent((BaseAddon)this, 22000, -8, 7, 0, 2548, -1, "", 1);// 253
|
||||
AddComplexComponent((BaseAddon)this, 22000, -8, 6, 0, 2548, -1, "", 1);// 254
|
||||
AddComplexComponent((BaseAddon)this, 22000, -8, 5, 0, 2548, -1, "", 1);// 255
|
||||
AddComplexComponent((BaseAddon)this, 22000, -8, 4, 0, 2548, -1, "", 1);// 256
|
||||
AddComplexComponent((BaseAddon)this, 22000, -8, 3, 0, 2548, -1, "", 1);// 257
|
||||
AddComplexComponent((BaseAddon)this, 22000, -8, 2, 0, 2548, -1, "", 1);// 258
|
||||
AddComplexComponent((BaseAddon)this, 22000, -6, 1, 0, 2548, -1, "", 1);// 259
|
||||
AddComplexComponent((BaseAddon)this, 22000, -6, 0, 0, 2548, -1, "", 1);// 260
|
||||
AddComplexComponent((BaseAddon)this, 22000, -6, -1, 0, 2548, -1, "", 1);// 261
|
||||
AddComplexComponent((BaseAddon)this, 22000, -6, -2, 0, 2548, -1, "", 1);// 262
|
||||
AddComplexComponent((BaseAddon)this, 22000, -6, -3, 0, 2548, -1, "", 1);// 263
|
||||
AddComplexComponent((BaseAddon)this, 22000, -6, -4, 0, 2548, -1, "", 1);// 264
|
||||
AddComplexComponent((BaseAddon)this, 22000, -6, -5, 0, 2548, -1, "", 1);// 265
|
||||
AddComplexComponent((BaseAddon)this, 22000, -7, 1, 0, 2548, -1, "", 1);// 266
|
||||
AddComplexComponent((BaseAddon)this, 22000, -7, 0, 0, 2548, -1, "", 1);// 267
|
||||
AddComplexComponent((BaseAddon)this, 22000, -7, -1, 0, 2548, -1, "", 1);// 268
|
||||
AddComplexComponent((BaseAddon)this, 22000, -7, -2, 0, 2548, -1, "", 1);// 269
|
||||
AddComplexComponent((BaseAddon)this, 22000, -7, -3, 0, 2548, -1, "", 1);// 270
|
||||
AddComplexComponent((BaseAddon)this, 22000, -7, -4, 0, 2548, -1, "", 1);// 271
|
||||
AddComplexComponent((BaseAddon)this, 22000, -7, -5, 0, 2548, -1, "", 1);// 272
|
||||
AddComplexComponent((BaseAddon)this, 22000, -8, 1, 0, 2548, -1, "", 1);// 273
|
||||
AddComplexComponent((BaseAddon)this, 22000, -8, 0, 0, 2548, -1, "", 1);// 274
|
||||
AddComplexComponent((BaseAddon)this, 22000, -8, -1, 0, 2548, -1, "", 1);// 275
|
||||
AddComplexComponent((BaseAddon)this, 22000, -8, -2, 0, 2548, -1, "", 1);// 276
|
||||
AddComplexComponent((BaseAddon)this, 22000, -8, -3, 0, 2548, -1, "", 1);// 277
|
||||
AddComplexComponent((BaseAddon)this, 22000, -8, -4, 0, 2548, -1, "", 1);// 278
|
||||
AddComplexComponent((BaseAddon)this, 22000, -8, -5, 0, 2548, -1, "", 1);// 279
|
||||
AddComplexComponent((BaseAddon)this, 22000, -6, -6, 0, 2548, -1, "", 1);// 280
|
||||
AddComplexComponent((BaseAddon)this, 22000, -6, -7, 0, 2548, -1, "", 1);// 281
|
||||
AddComplexComponent((BaseAddon)this, 22000, -6, -8, 0, 2548, -1, "", 1);// 282
|
||||
AddComplexComponent((BaseAddon)this, 22000, -7, -6, 0, 2548, -1, "", 1);// 283
|
||||
AddComplexComponent((BaseAddon)this, 22000, -7, -7, 0, 2548, -1, "", 1);// 284
|
||||
AddComplexComponent((BaseAddon)this, 22000, -7, -8, 0, 2548, -1, "", 1);// 285
|
||||
AddComplexComponent((BaseAddon)this, 22000, -8, -6, 0, 2548, -1, "", 1);// 286
|
||||
AddComplexComponent((BaseAddon)this, 22000, -8, -7, 0, 2548, -1, "", 1);// 287
|
||||
AddComplexComponent((BaseAddon)this, 22000, -8, -8, 0, 2548, -1, "", 1);// 288
|
||||
AddComplexComponent((BaseAddon)this, 14120, 4, -8, 0, 762, -1, "", 1);// 292
|
||||
AddComplexComponent((BaseAddon)this, 14120, 6, -8, 0, 762, -1, "", 1);// 293
|
||||
AddComplexComponent((BaseAddon)this, 14120, 7, -8, 0, 762, -1, "", 1);// 294
|
||||
AddComplexComponent((BaseAddon)this, 22000, -6, -9, 0, 2548, -1, "", 1);// 326
|
||||
AddComplexComponent((BaseAddon)this, 22000, -7, -9, 0, 2548, -1, "", 1);// 327
|
||||
AddComplexComponent((BaseAddon)this, 22000, -8, -9, 0, 2548, -1, "", 1);// 328
|
||||
AddComplexComponent((BaseAddon)this, 7897, 6, -9, 10, 2548, -1, "", 1);// 329
|
||||
AddComplexComponent((BaseAddon)this, 14120, 3, -9, 0, 762, -1, "", 1);// 330
|
||||
AddComplexComponent((BaseAddon)this, 14120, 2, -9, 0, 762, -1, "", 1);// 331
|
||||
AddComplexComponent((BaseAddon)this, 14120, 1, -9, 0, 762, -1, "", 1);// 332
|
||||
AddComplexComponent((BaseAddon)this, 14120, 0, -9, 0, 762, -1, "", 1);// 333
|
||||
AddComplexComponent((BaseAddon)this, 14120, -1, -9, 0, 762, -1, "", 1);// 334
|
||||
AddComplexComponent((BaseAddon)this, 22000, -9, 9, 0, 2548, -1, "", 1);// 337
|
||||
AddComplexComponent((BaseAddon)this, 22000, -9, 8, 0, 2548, -1, "", 1);// 338
|
||||
AddComplexComponent((BaseAddon)this, 22000, -10, 9, 0, 2548, -1, "", 1);// 339
|
||||
AddComplexComponent((BaseAddon)this, 22000, -10, 8, 0, 2548, -1, "", 1);// 340
|
||||
AddComplexComponent((BaseAddon)this, 22000, -11, 9, 0, 2548, -1, "", 1);// 341
|
||||
AddComplexComponent((BaseAddon)this, 22000, -11, 8, 0, 2548, -1, "", 1);// 342
|
||||
AddComplexComponent((BaseAddon)this, 22000, -12, 9, 0, 2548, -1, "", 1);// 343
|
||||
AddComplexComponent((BaseAddon)this, 22000, -12, 8, 0, 2548, -1, "", 1);// 344
|
||||
AddComplexComponent((BaseAddon)this, 22000, -13, 9, 0, 2548, -1, "", 1);// 345
|
||||
AddComplexComponent((BaseAddon)this, 22000, -13, 8, 0, 2548, -1, "", 1);// 346
|
||||
AddComplexComponent((BaseAddon)this, 22000, -9, 7, 0, 2548, -1, "", 1);// 350
|
||||
AddComplexComponent((BaseAddon)this, 22000, -9, 6, 0, 2548, -1, "", 1);// 351
|
||||
AddComplexComponent((BaseAddon)this, 22000, -9, 5, 0, 2548, -1, "", 1);// 352
|
||||
AddComplexComponent((BaseAddon)this, 22000, -9, 4, 0, 2548, -1, "", 1);// 353
|
||||
AddComplexComponent((BaseAddon)this, 22000, -9, 3, 0, 2548, -1, "", 1);// 354
|
||||
AddComplexComponent((BaseAddon)this, 22000, -9, 2, 0, 2548, -1, "", 1);// 355
|
||||
AddComplexComponent((BaseAddon)this, 22000, -10, 7, 0, 2548, -1, "", 1);// 356
|
||||
AddComplexComponent((BaseAddon)this, 22000, -10, 6, 0, 2548, -1, "", 1);// 357
|
||||
AddComplexComponent((BaseAddon)this, 22000, -10, 5, 0, 2548, -1, "", 1);// 358
|
||||
AddComplexComponent((BaseAddon)this, 22000, -10, 4, 0, 2548, -1, "", 1);// 359
|
||||
AddComplexComponent((BaseAddon)this, 22000, -10, 3, 0, 2548, -1, "", 1);// 360
|
||||
AddComplexComponent((BaseAddon)this, 22000, -10, 2, 0, 2548, -1, "", 1);// 361
|
||||
AddComplexComponent((BaseAddon)this, 22000, -11, 7, 0, 2548, -1, "", 1);// 362
|
||||
AddComplexComponent((BaseAddon)this, 22000, -11, 6, 0, 2548, -1, "", 1);// 363
|
||||
AddComplexComponent((BaseAddon)this, 22000, -11, 5, 0, 2548, -1, "", 1);// 364
|
||||
AddComplexComponent((BaseAddon)this, 22000, -11, 4, 0, 2548, -1, "", 1);// 365
|
||||
AddComplexComponent((BaseAddon)this, 22000, -11, 3, 0, 2548, -1, "", 1);// 366
|
||||
AddComplexComponent((BaseAddon)this, 22000, -11, 2, 0, 2548, -1, "", 1);// 367
|
||||
AddComplexComponent((BaseAddon)this, 22000, -12, 7, 0, 2548, -1, "", 1);// 368
|
||||
AddComplexComponent((BaseAddon)this, 22000, -12, 6, 0, 2548, -1, "", 1);// 369
|
||||
AddComplexComponent((BaseAddon)this, 22000, -12, 5, 0, 2548, -1, "", 1);// 370
|
||||
AddComplexComponent((BaseAddon)this, 22000, -12, 4, 0, 2548, -1, "", 1);// 371
|
||||
AddComplexComponent((BaseAddon)this, 22000, -12, 3, 0, 2548, -1, "", 1);// 372
|
||||
AddComplexComponent((BaseAddon)this, 22000, -12, 2, 0, 2548, -1, "", 1);// 373
|
||||
AddComplexComponent((BaseAddon)this, 22000, -13, 7, 0, 2548, -1, "", 1);// 374
|
||||
AddComplexComponent((BaseAddon)this, 22000, -13, 6, 0, 2548, -1, "", 1);// 375
|
||||
AddComplexComponent((BaseAddon)this, 22000, -13, 5, 0, 2548, -1, "", 1);// 376
|
||||
AddComplexComponent((BaseAddon)this, 22000, -13, 4, 0, 2548, -1, "", 1);// 377
|
||||
AddComplexComponent((BaseAddon)this, 22000, -13, 3, 0, 2548, -1, "", 1);// 378
|
||||
AddComplexComponent((BaseAddon)this, 22000, -13, 2, 0, 2548, -1, "", 1);// 379
|
||||
AddComplexComponent((BaseAddon)this, 22000, -9, 1, 0, 2548, -1, "", 1);// 380
|
||||
AddComplexComponent((BaseAddon)this, 22000, -9, 0, 0, 2548, -1, "", 1);// 381
|
||||
AddComplexComponent((BaseAddon)this, 22000, -9, -1, 0, 2548, -1, "", 1);// 382
|
||||
AddComplexComponent((BaseAddon)this, 22000, -9, -2, 0, 2548, -1, "", 1);// 383
|
||||
AddComplexComponent((BaseAddon)this, 22000, -9, -3, 0, 2548, -1, "", 1);// 384
|
||||
AddComplexComponent((BaseAddon)this, 22000, -9, -4, 0, 2548, -1, "", 1);// 385
|
||||
AddComplexComponent((BaseAddon)this, 22000, -9, -5, 0, 2548, -1, "", 1);// 386
|
||||
AddComplexComponent((BaseAddon)this, 22000, -10, 1, 0, 2548, -1, "", 1);// 387
|
||||
AddComplexComponent((BaseAddon)this, 22000, -10, 0, 0, 2548, -1, "", 1);// 388
|
||||
AddComplexComponent((BaseAddon)this, 22000, -10, -1, 0, 2548, -1, "", 1);// 389
|
||||
AddComplexComponent((BaseAddon)this, 22000, -10, -2, 0, 2548, -1, "", 1);// 390
|
||||
AddComplexComponent((BaseAddon)this, 22000, -10, -3, 0, 2548, -1, "", 1);// 391
|
||||
AddComplexComponent((BaseAddon)this, 22000, -10, -4, 0, 2548, -1, "", 1);// 392
|
||||
AddComplexComponent((BaseAddon)this, 22000, -10, -5, 0, 2548, -1, "", 1);// 393
|
||||
AddComplexComponent((BaseAddon)this, 22000, -11, 1, 0, 2548, -1, "", 1);// 394
|
||||
AddComplexComponent((BaseAddon)this, 22000, -11, 0, 0, 2548, -1, "", 1);// 395
|
||||
AddComplexComponent((BaseAddon)this, 22000, -11, -1, 0, 2548, -1, "", 1);// 396
|
||||
AddComplexComponent((BaseAddon)this, 22000, -11, -2, 0, 2548, -1, "", 1);// 397
|
||||
AddComplexComponent((BaseAddon)this, 22000, -11, -3, 0, 2548, -1, "", 1);// 398
|
||||
AddComplexComponent((BaseAddon)this, 22000, -11, -4, 0, 2548, -1, "", 1);// 399
|
||||
AddComplexComponent((BaseAddon)this, 22000, -11, -5, 0, 2548, -1, "", 1);// 400
|
||||
AddComplexComponent((BaseAddon)this, 22000, -12, 1, 0, 2548, -1, "", 1);// 401
|
||||
AddComplexComponent((BaseAddon)this, 22000, -12, 0, 0, 2548, -1, "", 1);// 402
|
||||
AddComplexComponent((BaseAddon)this, 22000, -12, -1, 0, 2548, -1, "", 1);// 403
|
||||
AddComplexComponent((BaseAddon)this, 22000, -12, -2, 0, 2548, -1, "", 1);// 404
|
||||
AddComplexComponent((BaseAddon)this, 22000, -12, -3, 0, 2548, -1, "", 1);// 405
|
||||
AddComplexComponent((BaseAddon)this, 22000, -12, -4, 0, 2548, -1, "", 1);// 406
|
||||
AddComplexComponent((BaseAddon)this, 22000, -12, -5, 0, 2548, -1, "", 1);// 407
|
||||
AddComplexComponent((BaseAddon)this, 22000, -13, 1, 0, 2548, -1, "", 1);// 408
|
||||
AddComplexComponent((BaseAddon)this, 22000, -13, 0, 0, 2548, -1, "", 1);// 409
|
||||
AddComplexComponent((BaseAddon)this, 22000, -13, -1, 0, 2548, -1, "", 1);// 410
|
||||
AddComplexComponent((BaseAddon)this, 22000, -13, -2, 0, 2548, -1, "", 1);// 411
|
||||
AddComplexComponent((BaseAddon)this, 22000, -13, -3, 0, 2548, -1, "", 1);// 412
|
||||
AddComplexComponent((BaseAddon)this, 22000, -13, -4, 0, 2548, -1, "", 1);// 413
|
||||
AddComplexComponent((BaseAddon)this, 22000, -13, -5, 0, 2548, -1, "", 1);// 414
|
||||
AddComplexComponent((BaseAddon)this, 22000, -9, -6, 0, 2548, -1, "", 1);// 415
|
||||
AddComplexComponent((BaseAddon)this, 22000, -9, -7, 0, 2548, -1, "", 1);// 416
|
||||
AddComplexComponent((BaseAddon)this, 22000, -9, -8, 0, 2548, -1, "", 1);// 417
|
||||
AddComplexComponent((BaseAddon)this, 22000, -10, -6, 0, 2548, -1, "", 1);// 418
|
||||
AddComplexComponent((BaseAddon)this, 22000, -10, -7, 0, 2548, -1, "", 1);// 419
|
||||
AddComplexComponent((BaseAddon)this, 22000, -10, -8, 0, 2548, -1, "", 1);// 420
|
||||
AddComplexComponent((BaseAddon)this, 22000, -11, -6, 0, 2548, -1, "", 1);// 421
|
||||
AddComplexComponent((BaseAddon)this, 22000, -11, -7, 0, 2548, -1, "", 1);// 422
|
||||
AddComplexComponent((BaseAddon)this, 22000, -11, -8, 0, 2548, -1, "", 1);// 423
|
||||
AddComplexComponent((BaseAddon)this, 22000, -12, -6, 0, 2548, -1, "", 1);// 424
|
||||
AddComplexComponent((BaseAddon)this, 22000, -12, -7, 0, 2548, -1, "", 1);// 425
|
||||
AddComplexComponent((BaseAddon)this, 22000, -12, -8, 0, 2548, -1, "", 1);// 426
|
||||
AddComplexComponent((BaseAddon)this, 22000, -13, -6, 0, 2548, -1, "", 1);// 427
|
||||
AddComplexComponent((BaseAddon)this, 22000, -13, -7, 0, 2548, -1, "", 1);// 428
|
||||
AddComplexComponent((BaseAddon)this, 22000, -13, -8, 0, 2548, -1, "", 1);// 429
|
||||
AddComplexComponent((BaseAddon)this, 22000, -9, -9, 0, 2548, -1, "", 1);// 430
|
||||
AddComplexComponent((BaseAddon)this, 22000, -10, -9, 0, 2548, -1, "", 1);// 431
|
||||
AddComplexComponent((BaseAddon)this, 22000, -11, -9, 0, 2548, -1, "", 1);// 432
|
||||
AddComplexComponent((BaseAddon)this, 22000, -12, -9, 0, 2548, -1, "", 1);// 433
|
||||
AddComplexComponent((BaseAddon)this, 22000, -13, -9, 0, 2548, -1, "", 1);// 434
|
||||
}
|
||||
|
||||
public BlackthornStep8(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write(0); // Version
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
|
||||
if (Map == Map.Trammel)
|
||||
{
|
||||
InstanceTram = this;
|
||||
}
|
||||
|
||||
if (Map == Map.Felucca)
|
||||
{
|
||||
InstanceFel = this;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,297 @@
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class TheFellowshipHouse : BlackthornBaseAddon
|
||||
{
|
||||
public static TheFellowshipHouse InstanceTram { get; set; }
|
||||
public static TheFellowshipHouse InstanceFel { get; set; }
|
||||
|
||||
private static int[,] m_AddOnSimpleComponents = new int[,]
|
||||
{
|
||||
{3314, 8, -8, 19}, {3314, 8, -4, 18}, {2147, -2, 6, 11}// 1 2 3
|
||||
, {2147, -2, 6, 17}, {2147, -2, 6, 23}, {2147, -1, 6, 11}// 4 5 6
|
||||
, {2147, -1, 6, 17}, {2147, -1, 6, 23}, {2147, 0, 6, 11}// 7 8 9
|
||||
, {2147, 1, 6, 11}, {2147, 2, 6, 11}, {2147, 3, 6, 11}// 10 11 12
|
||||
, {2147, 0, 6, 17}, {2147, 0, 6, 23}, {2147, 1, 6, 17}// 13 14 15
|
||||
, {2147, 1, 6, 23}, {2147, 2, 6, 17}, {2147, 3, 6, 17}// 16 17 18
|
||||
, {2147, 2, 6, 23}, {2147, 3, 6, 23}, {1872, -5, 6, 27}// 19 20 21
|
||||
, {1872, -6, 6, 27}, {1872, -4, 6, 27}, {1872, -3, 6, 27}// 22 23 24
|
||||
, {1872, -2, 6, 27}, {1872, -1, 6, 27}, {1872, 1, 6, 27}// 25 26 27
|
||||
, {1872, 2, 6, 27}, {1872, 3, 6, 27}, {1872, 0, 6, 27}// 28 29 30
|
||||
, {1872, -6, 6, 12}, {1872, -5, 6, 12}, {1872, -4, 6, 12}// 31 32 33
|
||||
, {1880, -7, 7, 26}, {1431, -1, 6, 61}, {1431, 0, 6, 64}// 34 35 36
|
||||
, {1431, 1, 6, 67}, {1430, 2, 6, 67}, {1430, 3, 6, 64}// 37 38 39
|
||||
, {2147, 4, 6, 11}, {2147, 5, 6, 11}, {2147, 4, 6, 17}// 40 41 42
|
||||
, {2147, 5, 6, 17}, {2147, 4, 6, 23}, {2147, 5, 6, 23}// 43 44 45
|
||||
, {2146, 6, 6, 11}, {2146, 6, 6, 17}, {2146, 6, 6, 23}// 46 47 48
|
||||
, {1872, 4, 6, 27}, {1872, 5, 6, 27}, {1872, 6, 6, 27}// 49 50 51
|
||||
, {1430, 4, 6, 61}, {3309, 6, 7, 10}, {11515, 1, 7, 9}// 52 53 54
|
||||
, {3310, 5, 7, 6}, {11516, 5, 7, 9}, {1873, -6, 11, 8}// 55 56 57
|
||||
, {1873, -5, 11, 8}, {1873, -4, 11, 8}, {1873, -3, 11, 8}// 58 59 60
|
||||
, {1872, -3, 8, 6}, {1872, -3, 9, 6}, {1872, -3, 10, 7}// 61 62 63
|
||||
, {1872, -3, 9, 11}, {1872, -3, 8, 11}, {1872, -3, 8, 16}// 64 65 66
|
||||
, {1873, -3, 8, 21}, {1873, -3, 9, 16}, {1873, -3, 10, 12}// 67 68 69
|
||||
, {1872, -3, 7, 6}, {1872, -3, 7, 11}, {1872, -3, 7, 16}// 70 71 72
|
||||
, {1872, -3, 7, 21}, {3309, 2, 7, 7}, {3309, 3, 7, 9}// 73 74 75
|
||||
, {3310, -2, 7, 14}, {11515, -1, 7, 11}, {1872, -4, 8, 6}// 76 77 79
|
||||
, {1872, -4, 9, 6}, {1872, -4, 10, 7}, {1872, -4, 9, 11}// 80 81 82
|
||||
, {1872, -4, 8, 11}, {1872, -4, 8, 16}, {1873, -4, 8, 21}// 83 84 85
|
||||
, {1873, -4, 9, 16}, {1873, -4, 10, 12}, {1872, -4, 7, 6}// 86 87 88
|
||||
, {1872, -4, 7, 11}, {1872, -4, 7, 16}, {1872, -4, 7, 21}// 89 90 91
|
||||
, {1873, -4, 7, 26}, {1872, -5, 8, 6}, {1872, -5, 9, 6}// 92 93 94
|
||||
, {1872, -5, 10, 7}, {1872, -5, 9, 11}, {1872, -5, 8, 11}// 95 96 97
|
||||
, {1872, -5, 8, 16}, {1873, -5, 8, 21}, {1872, -6, 8, 6}// 98 99 101
|
||||
, {1873, -5, 9, 16}, {1873, -5, 10, 12}, {1872, -5, 7, 6}// 102 103 104
|
||||
, {1872, -5, 7, 11}, {1872, -5, 7, 16}, {1872, -5, 7, 21}// 105 106 107
|
||||
, {1873, -5, 7, 26}, {41374, 0, 7, 7}, {3309, 4, 7, 7}// 108 109 110
|
||||
, {1873, -6, 7, 26}, {1873, -6, 8, 21}, {1873, -6, 10, 12}// 112 113 114
|
||||
, {1872, -6, 7, 11}, {1872, -6, 10, 7}, {1873, -6, 9, 16}// 115 116 117
|
||||
, {1872, -6, 7, 16}, {1872, -6, 8, 11}, {1872, -6, 7, 21}// 118 119 120
|
||||
, {1872, -6, 8, 16}, {1872, -6, 9, 6}, {41254, 0, 8, 6}// 121 122 123
|
||||
, {1873, -3, 7, 26}, {41374, 1, 7, 4}, {1872, -6, 9, 11}// 124 125 126
|
||||
, {1872, -6, 7, 6}, {1872, -6, -10, 27}, {1872, -6, -9, 27}// 127 135 136
|
||||
, {1872, -6, -8, 27}, {1872, -6, -7, 27}, {1872, -5, -10, 27}// 137 138 139
|
||||
, {1872, -5, -9, 27}, {1872, -5, -8, 27}, {1872, -5, -7, 27}// 140 141 142
|
||||
, {1872, -4, -10, 27}, {1872, -4, -9, 27}, {1872, -4, -8, 27}// 143 144 145
|
||||
, {1872, -4, -7, 27}, {1872, -3, -10, 27}, {1872, -3, -9, 27}// 146 147 148
|
||||
, {1872, -3, -8, 27}, {1872, -3, -7, 27}, {1872, -2, -10, 27}// 149 150 151
|
||||
, {1872, -2, -9, 27}, {1872, -2, -8, 27}, {1872, -2, -7, 27}// 152 153 154
|
||||
, {1872, -1, -10, 27}, {1872, -1, -9, 27}, {1872, -1, -8, 27}// 155 156 157
|
||||
, {1872, -1, -7, 27}, {1872, 0, -10, 27}, {1872, 0, -9, 27}// 158 159 160
|
||||
, {1872, 0, -8, 27}, {1872, 0, -7, 27}, {1872, 1, -10, 27}// 161 162 163
|
||||
, {1872, 1, -9, 27}, {1872, 1, -8, 27}, {1872, 1, -7, 27}// 164 165 166
|
||||
, {1872, 2, -10, 27}, {1872, 2, -9, 27}, {1872, 2, -8, 27}// 167 168 169
|
||||
, {1872, 2, -7, 27}, {1872, 3, -10, 27}, {1872, 3, -9, 27}// 170 171 172
|
||||
, {1872, 3, -8, 27}, {1872, 3, -7, 27}, {28, 3, -10, 32}// 173 174 175
|
||||
, {28, 2, -10, 32}, {28, 1, -10, 32}, {28, 0, -10, 32}// 176 177 178
|
||||
, {28, -1, -10, 32}, {28, -2, -10, 32}, {27, -3, -9, 32}// 179 180 181
|
||||
, {27, -3, -8, 32}, {43, -3, -7, 32}, {2762, -2, -8, 32}// 182 183 184
|
||||
, {2765, -2, -7, 32}, {2766, -1, -8, 32}, {2766, 0, -8, 32}// 185 186 187
|
||||
, {2766, 1, -8, 32}, {2766, 2, -8, 32}, {2760, -1, -7, 32}// 188 189 190
|
||||
, {2760, 0, -7, 32}, {2760, 1, -7, 32}, {2760, 2, -7, 32}// 191 192 193
|
||||
, {1431, -2, -7, 55}, {1431, -2, -8, 55}, {1431, -2, -9, 55}// 194 195 196
|
||||
, {1431, -1, -7, 58}, {1431, -1, -8, 58}, {1431, -1, -9, 58}// 197 198 199
|
||||
, {1431, 0, -9, 61}, {1431, 0, -8, 61}, {1431, -1, -7, 12}// 200 201 202
|
||||
, {1431, 0, -7, 61}, {1431, 1, -7, 64}, {1431, 1, -8, 64}// 203 204 205
|
||||
, {1431, 1, -9, 64}, {1430, 2, -7, 64}, {1430, 2, -8, 64}// 206 207 208
|
||||
, {1430, 2, -9, 64}, {1430, 3, -7, 61}, {1430, 3, -8, 61}// 209 210 211
|
||||
, {1430, 3, -9, 61}, {3215, -6, -10, 32}, {3215, -7, -8, 32}// 212 213 214
|
||||
, {3215, -7, -9, 32}, {3215, -6, -9, 32}, {1872, -6, 1, 27}// 215 216 217
|
||||
, {1872, -6, 2, 27}, {1872, -6, 3, 27}, {1872, -6, 4, 27}// 218 219 220
|
||||
, {1872, -6, 5, 27}, {1872, -5, 1, 27}, {1872, -5, 2, 27}// 221 222 223
|
||||
, {1872, -5, 3, 27}, {1872, -5, 4, 27}, {1872, -5, 5, 27}// 224 225 226
|
||||
, {1872, -4, -6, 27}, {1872, -4, -5, 27}, {1872, -4, -4, 27}// 227 228 229
|
||||
, {1872, -4, -3, 27}, {1872, -4, -2, 27}, {1872, -4, -1, 27}// 230 231 232
|
||||
, {1872, -4, 0, 27}, {1872, -4, 1, 27}, {1872, -4, 2, 27}// 233 234 235
|
||||
, {1872, -4, 3, 27}, {1872, -4, 4, 27}, {1872, -4, 5, 27}// 236 237 238
|
||||
, {1872, -3, -6, 27}, {1872, -3, -5, 27}, {1872, -3, -4, 27}// 239 240 241
|
||||
, {1872, -3, -3, 27}, {1872, -3, -2, 27}, {1872, -3, -1, 27}// 242 243 244
|
||||
, {1872, -3, 0, 27}, {1872, -3, 1, 27}, {1872, -3, 2, 27}// 245 246 247
|
||||
, {1872, -3, 3, 27}, {1872, -3, 4, 27}, {1872, -3, 5, 27}// 248 249 250
|
||||
, {1872, -2, -6, 27}, {1872, -2, -5, 27}, {1872, -2, -4, 27}// 251 252 253
|
||||
, {1872, -2, -3, 27}, {1872, -2, -2, 27}, {1872, -2, -1, 27}// 254 255 256
|
||||
, {1872, -2, 0, 27}, {1872, -2, 1, 27}, {1872, -2, 2, 27}// 257 258 259
|
||||
, {1872, -2, 3, 27}, {1872, -2, 4, 27}, {1872, -2, 5, 27}// 260 261 262
|
||||
, {1872, -1, -6, 27}, {1872, -1, -5, 27}, {1872, -1, -4, 27}// 263 264 265
|
||||
, {1872, -1, -3, 27}, {1872, -1, -2, 27}, {1872, -1, -1, 27}// 266 267 268
|
||||
, {1872, -1, 0, 27}, {1872, -1, 1, 27}, {1872, -1, 2, 27}// 269 270 271
|
||||
, {1872, -1, 3, 27}, {1872, -1, 4, 27}, {1872, -1, 5, 27}// 272 273 274
|
||||
, {1872, 0, -6, 27}, {1872, 0, -5, 27}, {1872, 0, -4, 27}// 275 276 277
|
||||
, {1872, 0, -3, 27}, {1872, 0, -2, 27}, {1872, 0, -1, 27}// 278 279 280
|
||||
, {1872, 0, 0, 27}, {1872, 0, 1, 27}, {1872, 0, 2, 27}// 281 282 283
|
||||
, {1872, 0, 3, 27}, {1872, 0, 4, 27}, {1872, 0, 5, 27}// 284 285 286
|
||||
, {1872, 1, -6, 27}, {1872, 1, -5, 27}, {1872, 1, -4, 27}// 287 288 289
|
||||
, {1872, 1, -3, 27}, {1872, 1, -2, 27}, {1872, 1, -1, 27}// 290 291 292
|
||||
, {1872, 1, 0, 27}, {1872, 1, 1, 27}, {1872, 1, 2, 27}// 293 294 295
|
||||
, {1872, 1, 3, 27}, {1872, 1, 4, 27}, {1872, 1, 5, 27}// 296 297 298
|
||||
, {1872, 2, -6, 27}, {1872, 2, -5, 27}, {1872, 2, -4, 27}// 299 300 301
|
||||
, {1872, 2, -3, 27}, {1872, 2, -2, 27}, {1872, 2, -1, 27}// 302 303 304
|
||||
, {1872, 2, 0, 27}, {1872, 2, 1, 27}, {1872, 2, 2, 27}// 305 306 307
|
||||
, {1872, 2, 3, 27}, {1872, 2, 4, 27}, {1872, 2, 5, 27}// 308 309 310
|
||||
, {1872, 3, -6, 27}, {1872, 3, -5, 27}, {1872, 3, -4, 27}// 311 312 313
|
||||
, {1872, 3, -3, 27}, {1872, 3, -2, 27}, {1872, 3, -1, 27}// 314 315 316
|
||||
, {1872, 3, 0, 27}, {1872, 3, 1, 27}, {1872, 3, 2, 27}// 317 318 319
|
||||
, {1872, 3, 3, 27}, {1872, 3, 4, 27}, {1872, 3, 5, 27}// 320 321 322
|
||||
, {42, -3, -4, 32}, {43, -3, -3, 32}, {42, -3, 0, 32}// 323 324 325
|
||||
, {27, -3, 1, 32}, {28, -2, 1, 32}, {28, -3, 1, 32}// 326 327 328
|
||||
, {27, -4, 2, 32}, {27, -4, 3, 32}, {27, -4, 4, 32}// 329 330 331
|
||||
, {7978, -3, 5, 32}, {7979, -3, 5, 40}, {2762, -2, 2, 32}// 332 333 334
|
||||
, {2765, -2, 3, 32}, {2763, -2, 4, 32}, {2766, -1, 2, 32}// 335 336 337
|
||||
, {2766, 0, 2, 32}, {2766, 1, 2, 32}, {2766, 2, 2, 32}// 338 339 340
|
||||
, {2764, 3, 2, 32}, {2768, -1, 4, 32}, {2768, 0, 4, 32}// 341 342 343
|
||||
, {2768, 1, 4, 32}, {2768, 2, 4, 32}, {2761, 3, 4, 32}// 344 345 346
|
||||
, {2767, 3, 3, 32}, {2760, -1, 3, 32}, {2760, 2, 3, 32}// 347 348 349
|
||||
, {2758, 0, 3, 32}, {2759, 1, 3, 32}, {2833, -2, -3, 32}// 350 351 352
|
||||
, {2836, -2, -4, 32}, {2835, -2, -5, 32}, {2765, -2, -6, 32}// 353 354 355
|
||||
, {2765, -2, -5, 32}, {2765, -2, -4, 32}, {2765, -2, -3, 32}// 356 357 358
|
||||
, {2765, -2, -2, 32}, {2765, -2, -1, 32}, {2763, -2, 0, 32}// 359 360 361
|
||||
, {2768, -1, 0, 32}, {2768, 0, 0, 32}, {2768, 1, 0, 32}// 362 363 364
|
||||
, {2768, 2, 0, 32}, {2760, -1, -6, 32}, {2759, 1, -6, 32}// 365 366 367
|
||||
, {2760, 0, -6, 32}, {2760, 2, -6, 32}, {2760, 1, -5, 32}// 368 369 370
|
||||
, {2760, 2, -5, 32}, {2760, -1, -5, 32}, {2759, 0, -5, 32}// 371 372 373
|
||||
, {2759, 1, -4, 32}, {2759, 0, -3, 32}, {2759, 1, -2, 32}// 374 375 376
|
||||
, {2760, -1, -4, 32}, {2760, 0, -4, 32}, {2760, 2, -4, 32}// 377 378 379
|
||||
, {2760, -1, -3, 32}, {2760, -1, -2, 32}, {2760, -1, -1, 32}// 380 381 382
|
||||
, {2760, 0, -1, 32}, {2760, 0, -2, 32}, {2760, 1, -3, 32}// 383 384 385
|
||||
, {2760, 2, -3, 32}, {2760, 2, -2, 32}, {2760, 1, -1, 32}// 386 387 388
|
||||
, {2760, 2, -1, 32}, {1431, -3, 5, 55}, {1431, -3, 4, 55}// 389 390 391
|
||||
, {1431, -3, 3, 55}, {1431, -3, 2, 55}, {1431, -2, 1, 55}// 392 393 394
|
||||
, {1431, -2, 0, 55}, {1431, -2, -1, 55}, {1431, -2, -2, 55}// 395 396 397
|
||||
, {1431, -2, -3, 55}, {1431, -2, -4, 55}, {1431, -2, -5, 55}// 398 399 400
|
||||
, {1431, -2, -6, 55}, {1431, -2, 2, 58}, {1431, -2, 3, 58}// 401 402 403
|
||||
, {1431, -2, 4, 58}, {1431, -2, 5, 58}, {1431, -1, 5, 61}// 404 405 406
|
||||
, {1431, -1, 4, 61}, {1431, -1, 3, 61}, {1431, -1, 2, 61}// 407 408 409
|
||||
, {1431, -1, 1, 58}, {1431, -1, 0, 58}, {1431, -1, -1, 58}// 410 411 412
|
||||
, {1431, -1, -2, 58}, {1431, -1, -3, 58}, {1431, -1, -4, 58}// 413 414 415
|
||||
, {1431, -1, -5, 58}, {1431, -1, -6, 58}, {1431, -1, -6, 12}// 416 417 418
|
||||
, {1431, -1, -5, 12}, {1431, -1, -4, 12}, {1431, -1, -3, 12}// 419 420 421
|
||||
, {1431, -1, -2, 12}, {1431, -1, -1, 12}, {1431, -1, 0, 12}// 422 423 424
|
||||
, {1431, -1, 1, 12}, {1431, -1, 2, 12}, {1431, 0, -6, 61}// 425 426 427
|
||||
, {1431, 0, -5, 61}, {1431, 0, -4, 61}, {1431, 0, -3, 61}// 428 429 430
|
||||
, {1431, 0, -2, 61}, {1431, 0, -1, 61}, {1431, 0, 0, 61}// 431 432 433
|
||||
, {1431, 0, 1, 61}, {1431, 0, 2, 64}, {1431, 0, 3, 64}// 434 435 436
|
||||
, {1431, 0, 4, 64}, {1431, 0, 5, 64}, {1431, 1, 5, 67}// 437 438 439
|
||||
, {1431, 1, 4, 67}, {1431, 1, 3, 67}, {1431, 1, 2, 67}// 440 441 442
|
||||
, {1431, 1, 1, 64}, {1431, 1, 0, 64}, {1431, 1, -1, 64}// 443 444 445
|
||||
, {1431, 1, -2, 64}, {1431, 1, -3, 64}, {1431, 1, -4, 64}// 446 447 448
|
||||
, {1431, 1, -5, 64}, {1431, 1, -6, 64}, {1430, 2, 5, 67}// 449 450 451
|
||||
, {1430, 2, 4, 67}, {1430, 2, 3, 67}, {1430, 2, 2, 67}// 452 453 454
|
||||
, {1430, 2, 1, 64}, {1430, 2, 0, 64}, {1430, 2, -1, 64}// 455 456 457
|
||||
, {1430, 2, -2, 64}, {1430, 2, -3, 64}, {1430, 2, -4, 64}// 458 459 460
|
||||
, {1430, 2, -5, 64}, {1430, 2, -6, 64}, {1430, 3, 5, 64}// 461 462 463
|
||||
, {1430, 3, 4, 64}, {1430, 3, 3, 64}, {1430, 3, 2, 64}// 464 465 466
|
||||
, {1430, 3, 1, 61}, {1430, 3, 0, 61}, {1430, 3, -1, 61}// 467 468 469
|
||||
, {1430, 3, -2, 61}, {1430, 3, -3, 61}, {1430, 3, -4, 61}// 470 471 472
|
||||
, {1430, 3, -5, 61}, {1430, 3, -6, 61}, {3215, -7, 5, 32}// 473 474 475
|
||||
, {3215, -7, 4, 32}, {3215, -7, 2, 32}, {3215, -7, 1, 32}// 476 477 478
|
||||
, {3215, -7, 3, 32}, {3215, -7, 0, 32}, {2921, -1, -2, 32}// 479 480 481
|
||||
, {2920, 0, -2, 32}, {2920, 3, -2, 32}, {2921, 2, -2, 32}// 482 483 484
|
||||
, {2921, -1, -4, 32}, {2920, 0, -4, 32}, {2920, 3, -4, 32}// 485 486 487
|
||||
, {2921, 2, -4, 32}, {2921, -1, -6, 32}, {2920, 0, -6, 32}// 488 489 490
|
||||
, {2920, 3, -6, 32}, {2921, 2, -6, 32}, {2148, 6, -10, 11}// 491 492 493
|
||||
, {2148, 6, -10, 17}, {2148, 6, -10, 23}, {1872, 6, -10, 27}// 494 495 496
|
||||
, {1872, 6, -9, 27}, {1872, 6, -8, 27}, {1872, 6, -7, 27}// 497 498 499
|
||||
, {1872, 4, -10, 27}, {1872, 4, -9, 27}, {1872, 4, -8, 27}// 500 501 502
|
||||
, {1872, 5, -10, 27}, {1872, 5, -9, 27}, {1872, 5, -8, 27}// 503 504 505
|
||||
, {1872, 5, -7, 27}, {2148, 6, -7, 11}, {2148, 6, -7, 17}// 506 507 508
|
||||
, {2148, 6, -7, 23}, {2148, 6, -8, 11}, {2148, 6, -8, 17}// 509 510 511
|
||||
, {2148, 6, -8, 23}, {2148, 6, -9, 11}, {2148, 6, -9, 17}// 512 513 514
|
||||
, {2148, 6, -9, 23}, {1872, 4, -7, 27}, {27, 4, -9, 32}// 515 516 517
|
||||
, {27, 4, -8, 32}, {28, 4, -10, 32}, {1430, 4, -7, 58}// 518 519 520
|
||||
, {1430, 5, -7, 55}, {1430, 4, -8, 58}, {1430, 5, -8, 55}// 521 522 523
|
||||
, {1430, 4, -9, 58}, {1430, 5, -9, 55}, {2148, 6, 5, 11}// 524 525 526
|
||||
, {2148, 6, 4, 11}, {2148, 6, 3, 11}, {2148, 6, 2, 11}// 527 528 529
|
||||
, {2148, 6, 1, 11}, {2148, 6, 0, 11}, {2148, 6, -1, 11}// 530 531 532
|
||||
, {2148, 6, 4, 17}, {2148, 6, 5, 17}, {2148, 6, 5, 23}// 533 534 535
|
||||
, {2148, 6, 4, 23}, {2148, 6, 3, 17}, {2148, 6, 3, 23}// 536 537 538
|
||||
, {2148, 6, 2, 17}, {2148, 6, 2, 23}, {2148, 6, 1, 17}// 539 540 541
|
||||
, {2148, 6, 1, 23}, {2148, 6, 0, 17}, {2148, 6, 0, 23}// 542 543 544
|
||||
, {2148, 6, -1, 17}, {2148, 6, -1, 23}, {1872, 6, -6, 27}// 545 546 547
|
||||
, {1872, 6, -5, 27}, {1872, 6, -4, 27}, {1872, 6, -3, 27}// 548 549 550
|
||||
, {1872, 6, -2, 27}, {1872, 6, -1, 27}, {1872, 6, 0, 27}// 551 552 553
|
||||
, {1872, 6, 1, 27}, {1872, 6, 2, 27}, {1872, 6, 3, 27}// 554 555 556
|
||||
, {1872, 6, 4, 27}, {1872, 6, 5, 27}, {1872, 4, -6, 27}// 557 558 559
|
||||
, {1872, 4, -5, 27}, {1872, 4, -4, 27}, {1872, 4, -3, 27}// 560 561 562
|
||||
, {1872, 4, -2, 27}, {1872, 4, -1, 27}, {1872, 4, 0, 27}// 563 564 565
|
||||
, {1872, 4, 1, 27}, {1872, 4, 2, 27}, {1872, 4, 3, 27}// 566 567 568
|
||||
, {1872, 4, 4, 27}, {1872, 4, 5, 27}, {1872, 5, -6, 27}// 569 570 571
|
||||
, {1872, 5, -5, 27}, {1872, 5, -4, 27}, {1872, 5, -3, 27}// 572 573 574
|
||||
, {1872, 5, -2, 27}, {1872, 5, -1, 27}, {1872, 5, 0, 27}// 575 576 577
|
||||
, {1872, 5, 1, 27}, {1872, 5, 2, 27}, {1872, 5, 3, 27}// 578 579 580
|
||||
, {1872, 5, 4, 27}, {1872, 5, 5, 27}, {2148, 6, -2, 11}// 581 582 583
|
||||
, {2148, 6, -2, 17}, {2148, 6, -2, 23}, {2148, 6, -3, 11}// 584 585 586
|
||||
, {2148, 6, -3, 17}, {2148, 6, -3, 23}, {2148, 6, -4, 11}// 587 588 589
|
||||
, {2148, 6, -4, 17}, {2148, 6, -4, 23}, {2148, 6, -5, 11}// 590 591 592
|
||||
, {2148, 6, -5, 17}, {2148, 6, -5, 23}, {2148, 6, -6, 11}// 593 594 595
|
||||
, {2148, 6, -6, 17}, {2148, 6, -6, 23}, {27, 5, 4, 32}// 596 597 598
|
||||
, {27, 5, 3, 32}, {27, 5, 2, 32}, {28, 5, 1, 32}// 599 600 601
|
||||
, {28, 4, 1, 32}, {27, 4, 1, 32}, {27, 4, 0, 32}// 602 603 604
|
||||
, {27, 4, -1, 32}, {27, 4, -3, 32}, {27, 4, -4, 32}// 605 606 607
|
||||
, {27, 4, -5, 32}, {27, 4, -6, 32}, {7978, 4, 5, 32}// 608 609 610
|
||||
, {7979, 4, 5, 40}, {1430, 4, 5, 61}, {1430, 5, 5, 58}// 611 612 613
|
||||
, {1430, 6, 5, 55}, {1430, 4, 4, 61}, {1430, 5, 4, 58}// 614 615 616
|
||||
, {1430, 6, 4, 55}, {1430, 4, 3, 61}, {1430, 5, 3, 58}// 617 618 619
|
||||
, {1430, 6, 3, 55}, {1430, 4, 2, 61}, {1430, 5, 2, 58}// 620 621 622
|
||||
, {1430, 6, 2, 55}, {1430, 4, 1, 58}, {1430, 5, 1, 55}// 623 624 625
|
||||
, {1430, 4, 0, 58}, {1430, 5, 0, 55}, {1430, 4, -1, 58}// 626 627 628
|
||||
, {1430, 5, -1, 55}, {1430, 4, -2, 58}, {1430, 5, -2, 55}// 629 630 631
|
||||
, {1430, 4, -3, 58}, {1430, 5, -3, 55}, {1430, 4, -4, 58}// 632 633 634
|
||||
, {1430, 5, -4, 55}, {1430, 4, -5, 58}, {1430, 5, -5, 55}// 635 636 637
|
||||
, {1430, 4, -6, 58}, {1430, 5, -6, 55}, {3314, 7, 5, 11}// 638 639 640
|
||||
, {3314, 7, 3, 11}, {41668, 4, 3, 32}, {41728, -7, -3, 33}// 641 645 646
|
||||
, {3245, -7, -1, 33}, {3247, -6, -1, 32}, {3260, -6, -4, 31}// 647 648 649
|
||||
, {3260, -6, -3, 32}, {3260, -6, -2, 32}, {41668, -3, 3, 32}// 650 651 653
|
||||
, {41197, -5, -8, 30}, {6021, -4, -3, 32}, {41375, 6, 0, 0}// 654 661 662
|
||||
, {41375, 6, 3, 1}, {3314, 6, -7, 7}, {3245, -6, -7, 30}// 663 665 667
|
||||
, {6021, -5, -7, 32}, {6021, -4, -2, 32}, {6021, -5, -7, 32}// 675 677 678
|
||||
, {6021, -4, -4, 32}// 679
|
||||
};
|
||||
|
||||
[Constructable]
|
||||
public TheFellowshipHouse()
|
||||
{
|
||||
for (int i = 0; i < m_AddOnSimpleComponents.Length / 4; i++)
|
||||
AddComponent(new AddonComponent(m_AddOnSimpleComponents[i, 0]), m_AddOnSimpleComponents[i, 1], m_AddOnSimpleComponents[i, 2], m_AddOnSimpleComponents[i, 3]);
|
||||
|
||||
AddComplexComponent((BaseAddon)this, 41185, -7, 6, 30, 22, -1, "", 1);// 78
|
||||
AddComplexComponent((BaseAddon)this, 41254, -1, 8, 8, 33, -1, "", 1);// 100
|
||||
AddComplexComponent((BaseAddon)this, 41248, 0, 7, 8, 22, -1, "", 1);// 111
|
||||
AddComplexComponent((BaseAddon)this, 10672, -3, 4, 32, 0, 26, "", 1);// 128
|
||||
AddComplexComponent((BaseAddon)this, 6571, -3, 5, 42, 0, 1, "", 1);// 129
|
||||
AddComplexComponent((BaseAddon)this, 2567, -4, 2, 34, 0, 8, "", 1);// 130
|
||||
AddComplexComponent((BaseAddon)this, 10673, 4, -7, 32, 0, 27, "", 1);// 131
|
||||
AddComplexComponent((BaseAddon)this, 10672, 5, 4, 32, 0, 26, "", 1);// 132
|
||||
AddComplexComponent((BaseAddon)this, 10673, 4, -2, 32, 0, 27, "", 1);// 133
|
||||
AddComplexComponent((BaseAddon)this, 6571, 4, 5, 42, 0, 1, "", 1);// 134
|
||||
AddComplexComponent((BaseAddon)this, 41185, -5, -10, 31, 33, -1, "", 1);// 642
|
||||
AddComplexComponent((BaseAddon)this, 41185, -5, -3, 29, 33, -1, "", 1);// 643
|
||||
AddComplexComponent((BaseAddon)this, 41185, -5, -2, 30, 22, -1, "", 1);// 644
|
||||
AddComplexComponent((BaseAddon)this, 41182, -5, -1, 30, 49, -1, "", 1);// 652
|
||||
AddComplexComponent((BaseAddon)this, 41185, -5, -9, 33, 49, -1, "", 1);// 655
|
||||
AddComplexComponent((BaseAddon)this, 41197, -5, -9, 32, 49, -1, "", 1);// 656
|
||||
AddComplexComponent((BaseAddon)this, 41252, 7, -5, 7, 22, -1, "", 1);// 657
|
||||
AddComplexComponent((BaseAddon)this, 41181, -6, 1, 32, 49, -1, "", 1);// 658
|
||||
AddComplexComponent((BaseAddon)this, 41181, -6, 2, 32, 49, -1, "", 1);// 659
|
||||
AddComplexComponent((BaseAddon)this, 41251, 7, -4, 7, 33, -1, "", 1);// 660
|
||||
AddComplexComponent((BaseAddon)this, 41253, 7, 2, 6, 22, -1, "", 1);// 664
|
||||
AddComplexComponent((BaseAddon)this, 41251, 7, -6, 10, 33, -1, "", 1);// 666
|
||||
AddComplexComponent((BaseAddon)this, 41185, -6, -8, 31, 22, -1, "", 1);// 668
|
||||
AddComplexComponent((BaseAddon)this, 41185, -6, 4, 32, 33, -1, "", 1);// 669
|
||||
AddComplexComponent((BaseAddon)this, 41187, -6, 3, 32, 22, -1, "", 1);// 670
|
||||
AddComplexComponent((BaseAddon)this, 41187, -6, 0, 30, 22, -1, "", 1);// 671
|
||||
AddComplexComponent((BaseAddon)this, 41187, -5, -6, 28, 22, -1, "", 1);// 672
|
||||
AddComplexComponent((BaseAddon)this, 41187, -5, -5, 29, 22, -1, "", 1);// 673
|
||||
AddComplexComponent((BaseAddon)this, 41182, -6, 5, 32, 49, -1, "", 1);// 674
|
||||
AddComplexComponent((BaseAddon)this, 41187, -5, -4, 29, 22, -1, "", 1);// 676
|
||||
AddComplexComponent((BaseAddon)this, 41197, -5, -8, 30, 49, -1, "", 1);// 680
|
||||
}
|
||||
|
||||
public TheFellowshipHouse(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write(0); // Version
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
|
||||
if (Map == Map.Trammel)
|
||||
{
|
||||
InstanceTram = this;
|
||||
}
|
||||
|
||||
if (Map == Map.Felucca)
|
||||
{
|
||||
InstanceFel = this;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,94 @@
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Engines.Fellowship;
|
||||
using Server.Mobiles;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class BlackthornDungeonTeleporter : Item
|
||||
{
|
||||
[CommandProperty(AccessLevel.GameMaster)]
|
||||
public Point3D Dest { get; set; }
|
||||
|
||||
[CommandProperty(AccessLevel.GameMaster)]
|
||||
public FellowshipChain Chain { get; set; }
|
||||
|
||||
[Constructable]
|
||||
public BlackthornDungeonTeleporter()
|
||||
: this(FellowshipChain.None)
|
||||
{
|
||||
}
|
||||
|
||||
[Constructable]
|
||||
public BlackthornDungeonTeleporter(FellowshipChain chain)
|
||||
: base(0x1827)
|
||||
{
|
||||
Chain = chain;
|
||||
Visible = true;
|
||||
Movable = false;
|
||||
}
|
||||
|
||||
public BlackthornDungeonTeleporter(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override bool OnMoveOver(Mobile m)
|
||||
{
|
||||
if (m is PlayerMobile)
|
||||
{
|
||||
if (Worker.FellowshipChainList.ContainsKey(m) && Worker.FellowshipChainList[m] == Chain || Chain == FellowshipChain.None)
|
||||
{
|
||||
Timer.DelayCall(DoTeleport, m);
|
||||
}
|
||||
else
|
||||
{
|
||||
m.SendLocalizedMessage(1159235); // You may not pass.
|
||||
}
|
||||
}
|
||||
|
||||
return base.OnMoveOver(m);
|
||||
}
|
||||
|
||||
public virtual void DoTeleport(Mobile m)
|
||||
{
|
||||
Map map = Map;
|
||||
|
||||
if (map == null || map == Map.Internal)
|
||||
{
|
||||
map = m.Map;
|
||||
}
|
||||
|
||||
Point3D p = Dest;
|
||||
|
||||
if (p == Point3D.Zero)
|
||||
{
|
||||
p = m.Location;
|
||||
}
|
||||
|
||||
BaseCreature.TeleportPets(m, p, map);
|
||||
|
||||
m.MoveToWorld(p, map);
|
||||
|
||||
m.PlaySound(510);
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write((int)0); // version
|
||||
|
||||
writer.Write(Dest);
|
||||
writer.Write((int)Chain);
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
|
||||
Dest = reader.ReadPoint3D();
|
||||
Chain = (FellowshipChain)reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
640
Scripts/Services/Seasonal Events/ForsakenFoes/Generate.cs
Normal file
640
Scripts/Services/Seasonal Events/ForsakenFoes/Generate.cs
Normal file
@@ -0,0 +1,640 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
|
||||
using Server;
|
||||
using Server.Items;
|
||||
using Server.Engines.Points;
|
||||
using Server.Mobiles;
|
||||
using Server.Engines.Quests;
|
||||
|
||||
namespace Server.Engines.Fellowship
|
||||
{
|
||||
public static class ForsakenFoesGeneration
|
||||
{
|
||||
public static void Initialize()
|
||||
{
|
||||
if (Core.EJ)
|
||||
{
|
||||
EventSink.WorldSave += OnWorldSave;
|
||||
|
||||
if (MiningCooperativeMerchant.InstanceTram == null && !Siege.SiegeShard)
|
||||
{
|
||||
MiningCooperativeMerchant.InstanceTram = new MiningCooperativeMerchant();
|
||||
MiningCooperativeMerchant.InstanceTram.MoveToWorld(new Point3D(2497, 432, 15), Map.Trammel);
|
||||
|
||||
MiningCooperativeMerchant.InstanceTram.Home = MiningCooperativeMerchant.InstanceTram.Location;
|
||||
MiningCooperativeMerchant.InstanceTram.RangeHome = 5;
|
||||
}
|
||||
|
||||
if (MiningCooperativeMerchant.InstanceFel == null)
|
||||
{
|
||||
MiningCooperativeMerchant.InstanceFel = new MiningCooperativeMerchant();
|
||||
MiningCooperativeMerchant.InstanceFel.MoveToWorld(new Point3D(2497, 432, 15), Map.Felucca);
|
||||
|
||||
MiningCooperativeMerchant.InstanceFel.Home = MiningCooperativeMerchant.InstanceFel.Location;
|
||||
MiningCooperativeMerchant.InstanceFel.RangeHome = 5;
|
||||
}
|
||||
|
||||
if (FellowshipAdept.InstanceTram == null && !Siege.SiegeShard)
|
||||
{
|
||||
FellowshipAdept.InstanceTram = new FellowshipAdept();
|
||||
FellowshipAdept.InstanceTram.MoveToWorld(new Point3D(1711, 1570, 44), Map.Trammel);
|
||||
|
||||
FellowshipAdept.InstanceTram.Home = FellowshipAdept.InstanceTram.Location;
|
||||
FellowshipAdept.InstanceTram.RangeHome = 5;
|
||||
}
|
||||
|
||||
if (FellowshipAdept.InstanceFel == null)
|
||||
{
|
||||
FellowshipAdept.InstanceFel = new FellowshipAdept();
|
||||
FellowshipAdept.InstanceFel.MoveToWorld(new Point3D(1711, 1570, 44), Map.Felucca);
|
||||
|
||||
FellowshipAdept.InstanceFel.Home = FellowshipAdept.InstanceFel.Location;
|
||||
FellowshipAdept.InstanceFel.RangeHome = 5;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (MiningCooperativeMerchant.InstanceTram != null)
|
||||
{
|
||||
MiningCooperativeMerchant.InstanceTram.Delete();
|
||||
}
|
||||
|
||||
if (MiningCooperativeMerchant.InstanceFel != null)
|
||||
{
|
||||
MiningCooperativeMerchant.InstanceFel.Delete();
|
||||
}
|
||||
|
||||
if (FellowshipAdept.InstanceTram != null)
|
||||
{
|
||||
FellowshipAdept.InstanceTram.Delete();
|
||||
}
|
||||
|
||||
if (FellowshipAdept.InstanceFel != null)
|
||||
{
|
||||
FellowshipAdept.InstanceFel.Delete();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private static void OnWorldSave(WorldSaveEventArgs e)
|
||||
{
|
||||
CheckEnabled(true);
|
||||
}
|
||||
|
||||
public static void CheckEnabled(bool timed = false)
|
||||
{
|
||||
var fellowship = PointsSystem.FellowshipData;
|
||||
|
||||
if (fellowship.Enabled && !fellowship.InSeason)
|
||||
{
|
||||
if (timed)
|
||||
{
|
||||
Timer.DelayCall(TimeSpan.FromSeconds(30), () =>
|
||||
{
|
||||
Utility.WriteConsoleColor(ConsoleColor.Green, "Disabling The Fellowship");
|
||||
|
||||
Remove();
|
||||
fellowship.Enabled = false;
|
||||
});
|
||||
}
|
||||
else
|
||||
{
|
||||
Utility.WriteConsoleColor(ConsoleColor.Green, "Auto Disabling The Fellowship");
|
||||
|
||||
Remove();
|
||||
fellowship.Enabled = false;
|
||||
}
|
||||
}
|
||||
else if (!fellowship.Enabled && fellowship.InSeason)
|
||||
{
|
||||
if (timed)
|
||||
{
|
||||
Timer.DelayCall(TimeSpan.FromSeconds(30), () =>
|
||||
{
|
||||
Utility.WriteConsoleColor(ConsoleColor.Green, "Enabling The Fellowship");
|
||||
|
||||
Generate();
|
||||
fellowship.Enabled = true;
|
||||
|
||||
if (!fellowship.QuestContentGenerated)
|
||||
{
|
||||
GenerateQuestContent();
|
||||
fellowship.QuestContentGenerated = true;
|
||||
}
|
||||
});
|
||||
}
|
||||
else
|
||||
{
|
||||
Utility.WriteConsoleColor(ConsoleColor.Green, "Auto Enabling The Fellowship");
|
||||
|
||||
Generate();
|
||||
fellowship.Enabled = true;
|
||||
|
||||
if (!fellowship.QuestContentGenerated)
|
||||
{
|
||||
GenerateQuestContent();
|
||||
fellowship.QuestContentGenerated = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public static void GenerateQuestContent()
|
||||
{
|
||||
if (!Siege.SiegeShard)
|
||||
{
|
||||
if (TheFellowshipHouse.InstanceTram == null)
|
||||
{
|
||||
TheFellowshipHouse.InstanceTram = new TheFellowshipHouse();
|
||||
TheFellowshipHouse.InstanceTram.MoveToWorld(new Point3D(1720, 1562, 17), Map.Trammel);
|
||||
}
|
||||
|
||||
if (Follower.InstanceTram == null)
|
||||
{
|
||||
Follower.InstanceTram = new Follower();
|
||||
Follower.InstanceTram.MoveToWorld(new Point3D(1720, 1565, 49), Map.Trammel);
|
||||
}
|
||||
|
||||
if (EtherealSoulcleanser.InstanceTram == null)
|
||||
{
|
||||
EtherealSoulcleanser.InstanceTram = new EtherealSoulcleanser();
|
||||
EtherealSoulcleanser.InstanceTram.MoveToWorld(new Point3D(1721, 1565, 50), Map.Trammel);
|
||||
}
|
||||
|
||||
if (FellowshipDonationBox.InstanceTram == null)
|
||||
{
|
||||
FellowshipDonationBox.InstanceTram = new FellowshipDonationBox();
|
||||
FellowshipDonationBox.InstanceTram.MoveToWorld(new Point3D(1721, 1554, 49), Map.Trammel);
|
||||
}
|
||||
|
||||
if (TheFellowshipStaff.InstanceTram == null)
|
||||
{
|
||||
TheFellowshipStaff.InstanceTram = new TheFellowshipStaff();
|
||||
TheFellowshipStaff.InstanceTram.MoveToWorld(new Point3D(1718, 1559, 55), Map.Trammel);
|
||||
}
|
||||
|
||||
OtherQuestContent(Map.Trammel);
|
||||
}
|
||||
|
||||
if (TheFellowshipHouse.InstanceFel == null)
|
||||
{
|
||||
TheFellowshipHouse.InstanceFel = new TheFellowshipHouse();
|
||||
TheFellowshipHouse.InstanceFel.MoveToWorld(new Point3D(1720, 1562, 17), Map.Felucca);
|
||||
}
|
||||
|
||||
if (Follower.InstanceFel == null)
|
||||
{
|
||||
Follower.InstanceFel = new Follower();
|
||||
Follower.InstanceFel.MoveToWorld(new Point3D(1720, 1565, 49), Map.Felucca);
|
||||
}
|
||||
|
||||
if (EtherealSoulcleanser.InstanceFel == null)
|
||||
{
|
||||
EtherealSoulcleanser.InstanceFel = new EtherealSoulcleanser();
|
||||
EtherealSoulcleanser.InstanceFel.MoveToWorld(new Point3D(1721, 1565, 50), Map.Felucca);
|
||||
}
|
||||
|
||||
if (FellowshipDonationBox.InstanceFel == null)
|
||||
{
|
||||
FellowshipDonationBox.InstanceFel = new FellowshipDonationBox();
|
||||
FellowshipDonationBox.InstanceFel.MoveToWorld(new Point3D(1721, 1554, 49), Map.Felucca);
|
||||
}
|
||||
|
||||
if (TheFellowshipStaff.InstanceFel == null)
|
||||
{
|
||||
TheFellowshipStaff.InstanceFel = new TheFellowshipStaff();
|
||||
TheFellowshipStaff.InstanceFel.MoveToWorld(new Point3D(1718, 1559, 55), Map.Felucca);
|
||||
}
|
||||
|
||||
OtherQuestContent(Map.Felucca);
|
||||
}
|
||||
|
||||
public static void OtherQuestContent(Map map)
|
||||
{
|
||||
if (map.FindItem<Static>(new Point3D(1721, 1554, 54)) == null)
|
||||
{
|
||||
Static st = new Static(0x42BF)
|
||||
{
|
||||
Hue = 1910,
|
||||
Name = "The Fellowship Tome"
|
||||
};
|
||||
|
||||
st.MoveToWorld(new Point3D(1721, 1554, 54), map);
|
||||
}
|
||||
|
||||
if (map.FindItem<Static>(new Point3D(1721, 1555, 59)) == null)
|
||||
{
|
||||
Static st = new Static(0x2F60)
|
||||
{
|
||||
Hue = 1912,
|
||||
Name = "The Fellowship Coin"
|
||||
};
|
||||
|
||||
st.MoveToWorld(new Point3D(1721, 1555, 59), map);
|
||||
}
|
||||
|
||||
if (map.FindItem<Static>(new Point3D(1721, 1555, 49)) == null)
|
||||
{
|
||||
Static st = new Static(0x3155)
|
||||
{
|
||||
Hue = 1912,
|
||||
Name = "The Fellowship Icon"
|
||||
};
|
||||
|
||||
st.MoveToWorld(new Point3D(1721, 1555, 49), map);
|
||||
}
|
||||
|
||||
if (map.FindItem<Static>(new Point3D(1719, 1554, 49)) == null)
|
||||
{
|
||||
Candelabra st = new Candelabra()
|
||||
{
|
||||
Hue = 1105
|
||||
};
|
||||
|
||||
st.MoveToWorld(new Point3D(1719, 1554, 49), map);
|
||||
}
|
||||
|
||||
if (map.FindItem<Static>(new Point3D(1722, 1554, 49)) == null)
|
||||
{
|
||||
Candelabra st = new Candelabra()
|
||||
{
|
||||
Hue = 1105
|
||||
};
|
||||
|
||||
st.MoveToWorld(new Point3D(1722, 1554, 49), map);
|
||||
}
|
||||
}
|
||||
|
||||
#region remove decoration
|
||||
public static void Remove()
|
||||
{
|
||||
string filename = XmlSpawner.LocateFile("RevampedSpawns/BlackthornDungeonCreature.xml");
|
||||
XmlSpawner.XmlLoadFromFile(filename, string.Empty, null, Point3D.Zero, Map.Internal, false, 0, false, out int processedmaps, out int processedspawners);
|
||||
|
||||
RemoveDecoration();
|
||||
}
|
||||
|
||||
public static void RemoveDecoration()
|
||||
{
|
||||
if (BlackthornEntry.InstanceTram != null)
|
||||
{
|
||||
BlackthornEntry.InstanceTram.Delete();
|
||||
BlackthornEntry.InstanceTram = null;
|
||||
}
|
||||
|
||||
if (BlackthornStep2.InstanceTram != null)
|
||||
{
|
||||
BlackthornStep2.InstanceTram.Delete();
|
||||
BlackthornStep2.InstanceTram = null;
|
||||
}
|
||||
|
||||
if (BlackthornStep3.InstanceTram != null)
|
||||
{
|
||||
BlackthornStep3.InstanceTram.Delete();
|
||||
BlackthornStep3.InstanceTram = null;
|
||||
}
|
||||
|
||||
if (BlackthornStep4.InstanceTram != null)
|
||||
{
|
||||
BlackthornStep4.InstanceTram.Delete();
|
||||
BlackthornStep4.InstanceTram = null;
|
||||
}
|
||||
|
||||
if (BlackthornStep5.InstanceTram != null)
|
||||
{
|
||||
BlackthornStep5.InstanceTram.Delete();
|
||||
BlackthornStep5.InstanceTram = null;
|
||||
}
|
||||
|
||||
if (BlackthornStep6.InstanceTram != null)
|
||||
{
|
||||
BlackthornStep6.InstanceTram.Delete();
|
||||
BlackthornStep6.InstanceTram = null;
|
||||
}
|
||||
|
||||
if (BlackthornStep7.InstanceTram != null)
|
||||
{
|
||||
BlackthornStep7.InstanceTram.Delete();
|
||||
BlackthornStep7.InstanceTram = null;
|
||||
}
|
||||
|
||||
if (BlackthornStep8.InstanceTram != null)
|
||||
{
|
||||
BlackthornStep8.InstanceTram.Delete();
|
||||
BlackthornStep8.InstanceTram = null;
|
||||
}
|
||||
|
||||
RemoveOtherdecoration(Map.Trammel);
|
||||
|
||||
if (BlackthornEntry.InstanceFel != null)
|
||||
{
|
||||
BlackthornEntry.InstanceFel.Delete();
|
||||
BlackthornEntry.InstanceFel = null;
|
||||
}
|
||||
|
||||
if (BlackthornStep2.InstanceFel != null)
|
||||
{
|
||||
BlackthornStep2.InstanceFel.Delete();
|
||||
BlackthornStep2.InstanceFel = null;
|
||||
}
|
||||
|
||||
if (BlackthornStep3.InstanceFel != null)
|
||||
{
|
||||
BlackthornStep3.InstanceFel.Delete();
|
||||
BlackthornStep3.InstanceFel = null;
|
||||
}
|
||||
|
||||
if (BlackthornStep4.InstanceFel != null)
|
||||
{
|
||||
BlackthornStep4.InstanceFel.Delete();
|
||||
BlackthornStep4.InstanceFel = null;
|
||||
}
|
||||
|
||||
if (BlackthornStep5.InstanceFel != null)
|
||||
{
|
||||
BlackthornStep5.InstanceFel.Delete();
|
||||
BlackthornStep5.InstanceFel = null;
|
||||
}
|
||||
|
||||
if (BlackthornStep6.InstanceFel != null)
|
||||
{
|
||||
BlackthornStep6.InstanceFel.Delete();
|
||||
BlackthornStep6.InstanceFel = null;
|
||||
}
|
||||
|
||||
if (BlackthornStep7.InstanceFel != null)
|
||||
{
|
||||
BlackthornStep7.InstanceFel.Delete();
|
||||
BlackthornStep7.InstanceFel = null;
|
||||
}
|
||||
|
||||
if (BlackthornStep8.InstanceFel != null)
|
||||
{
|
||||
BlackthornStep8.InstanceFel.Delete();
|
||||
BlackthornStep8.InstanceFel = null;
|
||||
}
|
||||
|
||||
RemoveOtherdecoration(Map.Felucca);
|
||||
}
|
||||
|
||||
public static void RemoveOtherdecoration(Map map)
|
||||
{
|
||||
blocker.ToList().ForEach(x =>
|
||||
{
|
||||
Item b = map.FindItem<Blocker>(new Point3D(x));
|
||||
|
||||
if (b != null)
|
||||
{
|
||||
b.Delete();
|
||||
}
|
||||
|
||||
Item lb = map.FindItem<LOSBlocker>(new Point3D(x));
|
||||
|
||||
if (lb != null)
|
||||
{
|
||||
lb.Delete();
|
||||
}
|
||||
});
|
||||
|
||||
for (int i = 0; i < Workers.Length; i++)
|
||||
{
|
||||
Point3D p = Workers[i];
|
||||
|
||||
Mobile w = map.FindMobile<Worker>(p);
|
||||
|
||||
if (w != null)
|
||||
{
|
||||
w.Delete();
|
||||
}
|
||||
}
|
||||
|
||||
for (int t = 0; t < Teleporters.Length / 2; t++)
|
||||
{
|
||||
Point3D p = Teleporters[t, 0];
|
||||
|
||||
Item tele = map.FindItem<BlackthornDungeonTeleporter>(p);
|
||||
|
||||
if (tele != null)
|
||||
{
|
||||
tele.Delete();
|
||||
}
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
private static readonly Point3D[] blocker = new Point3D[]
|
||||
{
|
||||
new Point3D(6408, 2667, 0), new Point3D(6409, 2667, 0), new Point3D(6410, 2667, 0), new Point3D(6411, 2667, 0),
|
||||
new Point3D(6412, 2667, 0), new Point3D(6396, 2677, 0), new Point3D(6396, 2678, 0), new Point3D(6396, 2679, 0),
|
||||
new Point3D(6396, 2680, 0), new Point3D(6396, 2681, 0), new Point3D(6407, 2692, 0), new Point3D(6408, 2692, 0),
|
||||
new Point3D(6409, 2692, 0), new Point3D(6410, 2692, 0), new Point3D(6370, 2744, 0), new Point3D(6371, 2744, 0),
|
||||
new Point3D(6372, 2744, 0), new Point3D(6373, 2744, 0), new Point3D(6374, 2744, 0), new Point3D(6375, 2744, 0),
|
||||
new Point3D(6331, 2653, 0), new Point3D(6332, 2653, 0), new Point3D(6333, 2653, 0), new Point3D(6410, 2783, 0),
|
||||
new Point3D(6305, 2678, 0), new Point3D(6305, 2679, 0), new Point3D(6305, 2680, 0), new Point3D(6411, 2783, 0),
|
||||
new Point3D(6422, 2708, 0), new Point3D(6422, 2709, 0), new Point3D(6422, 2710, 0), new Point3D(6422, 2711, 0),
|
||||
new Point3D(6406, 2783, 0), new Point3D(6407, 2783, 0), new Point3D(6408, 2783, 0), new Point3D(6409, 2783, 0),
|
||||
new Point3D(6442, 2744, 0), new Point3D(6443, 2744, 0), new Point3D(6444, 2744, 0), new Point3D(6445, 2744, 0),
|
||||
new Point3D(6446, 2744, 0), new Point3D(6390, 2617, 0), new Point3D(6390, 2618, 0), new Point3D(6390, 2619, 0),
|
||||
new Point3D(6390, 2620, 0), new Point3D(6390, 2621, 0), new Point3D(6390, 2622, 0), new Point3D(6390, 2623, 0),
|
||||
new Point3D(6390, 2624, 0), new Point3D(6390, 2625, 0), new Point3D(6434, 2708, 0), new Point3D(6434, 2709, 0),
|
||||
new Point3D(6434, 2710, 0), new Point3D(6434, 2711, 0)
|
||||
};
|
||||
|
||||
private static readonly Point3D[] Workers = new Point3D[]
|
||||
{
|
||||
new Point3D(6406, 2680, 0), new Point3D(6386, 2621, 0), new Point3D(6444, 2738, 0), new Point3D(6371, 2742, 0),
|
||||
new Point3D(6332, 2650, 0), new Point3D(6299, 2679, 0), new Point3D(6428, 2709, 0), new Point3D(6409, 2787, 0)
|
||||
};
|
||||
|
||||
private static readonly Point3D[,] Teleporters = new Point3D[,]
|
||||
{
|
||||
{new Point3D(6405, 2679, 0), new Point3D(6387, 2620, 0)},
|
||||
{new Point3D(6387, 2620, 0), new Point3D(6405, 2679, 0)},
|
||||
{new Point3D(6385, 2620, 0), new Point3D(6445, 2737, 0)},
|
||||
{new Point3D(6445, 2737, 1), new Point3D(6385, 2620, 0)},
|
||||
{new Point3D(6443, 2737, 1), new Point3D(6372, 2741, 0)},
|
||||
{new Point3D(6372, 2741, 0), new Point3D(6443, 2737, 0)},
|
||||
{new Point3D(6370, 2741, 0), new Point3D(6333, 2649, 0)},
|
||||
{new Point3D(6333, 2649, 0), new Point3D(6370, 2741, 0)},
|
||||
{new Point3D(6331, 2649, 0), new Point3D(6300, 2678, 0)},
|
||||
{new Point3D(6300, 2678, 0), new Point3D(6331, 2649, 0)},
|
||||
{new Point3D(6298, 2678, 0), new Point3D(6429, 2708, 0)},
|
||||
{new Point3D(6429, 2708, 0), new Point3D(6298, 2678, 0)},
|
||||
{new Point3D(6427, 2708, 0), new Point3D(6410, 2786, 0)},
|
||||
{new Point3D(6410, 2786, 0), new Point3D(6427, 2708, 0)},
|
||||
};
|
||||
|
||||
public static void Generate()
|
||||
{
|
||||
string filename = XmlSpawner.LocateFile("RevampedSpawns/BlackthornDungeonCreature.xml");
|
||||
XmlSpawner.XmlUnLoadFromFile(filename, string.Empty, null, out int processedmaps, out int processedspawners);
|
||||
|
||||
if (!Siege.SiegeShard)
|
||||
{
|
||||
if (BlackthornEntry.InstanceTram == null)
|
||||
{
|
||||
BlackthornEntry.InstanceTram = new BlackthornEntry();
|
||||
BlackthornEntry.InstanceTram.MoveToWorld(new Point3D(6409, 2677, 0), Map.Trammel);
|
||||
}
|
||||
|
||||
if (BlackthornStep2.InstanceTram == null)
|
||||
{
|
||||
BlackthornStep2.InstanceTram = new BlackthornStep2();
|
||||
BlackthornStep2.InstanceTram.MoveToWorld(new Point3D(6378, 2612, 0), Map.Trammel);
|
||||
}
|
||||
|
||||
if (BlackthornStep3.InstanceTram == null)
|
||||
{
|
||||
BlackthornStep3.InstanceTram = new BlackthornStep3();
|
||||
BlackthornStep3.InstanceTram.MoveToWorld(new Point3D(6454, 2741, 0), Map.Trammel);
|
||||
}
|
||||
|
||||
if (BlackthornStep4.InstanceTram == null)
|
||||
{
|
||||
BlackthornStep4.InstanceTram = new BlackthornStep4();
|
||||
BlackthornStep4.InstanceTram.MoveToWorld(new Point3D(6363, 2739, 0), Map.Trammel);
|
||||
}
|
||||
|
||||
if (BlackthornStep5.InstanceTram == null)
|
||||
{
|
||||
BlackthornStep5.InstanceTram = new BlackthornStep5();
|
||||
BlackthornStep5.InstanceTram.MoveToWorld(new Point3D(6327, 2647, 0), Map.Trammel);
|
||||
}
|
||||
|
||||
if (BlackthornStep6.InstanceTram == null)
|
||||
{
|
||||
BlackthornStep6.InstanceTram = new BlackthornStep6();
|
||||
BlackthornStep6.InstanceTram.MoveToWorld(new Point3D(6297, 2677, -4), Map.Trammel);
|
||||
}
|
||||
|
||||
if (BlackthornStep7.InstanceTram == null)
|
||||
{
|
||||
BlackthornStep7.InstanceTram = new BlackthornStep7();
|
||||
BlackthornStep7.InstanceTram.MoveToWorld(new Point3D(6429, 2709, 0), Map.Trammel);
|
||||
}
|
||||
|
||||
if (BlackthornStep8.InstanceTram == null)
|
||||
{
|
||||
BlackthornStep8.InstanceTram = new BlackthornStep8();
|
||||
BlackthornStep8.InstanceTram.MoveToWorld(new Point3D(6408, 2792, 0), Map.Trammel);
|
||||
}
|
||||
|
||||
GenerateMapDecoration(Map.Trammel);
|
||||
}
|
||||
|
||||
if (BlackthornEntry.InstanceFel == null)
|
||||
{
|
||||
BlackthornEntry.InstanceFel = new BlackthornEntry();
|
||||
BlackthornEntry.InstanceFel.MoveToWorld(new Point3D(6409, 2677, 0), Map.Felucca);
|
||||
}
|
||||
|
||||
if (BlackthornStep2.InstanceFel == null)
|
||||
{
|
||||
BlackthornStep2.InstanceFel = new BlackthornStep2();
|
||||
BlackthornStep2.InstanceFel.MoveToWorld(new Point3D(6378, 2612, 0), Map.Felucca);
|
||||
}
|
||||
|
||||
if (BlackthornStep3.InstanceFel == null)
|
||||
{
|
||||
BlackthornStep3.InstanceFel = new BlackthornStep3();
|
||||
BlackthornStep3.InstanceFel.MoveToWorld(new Point3D(6454, 2741, 0), Map.Felucca);
|
||||
}
|
||||
|
||||
if (BlackthornStep4.InstanceFel == null)
|
||||
{
|
||||
BlackthornStep4.InstanceFel = new BlackthornStep4();
|
||||
BlackthornStep4.InstanceFel.MoveToWorld(new Point3D(6363, 2739, 0), Map.Felucca);
|
||||
}
|
||||
|
||||
if (BlackthornStep5.InstanceFel == null)
|
||||
{
|
||||
BlackthornStep5.InstanceFel = new BlackthornStep5();
|
||||
BlackthornStep5.InstanceFel.MoveToWorld(new Point3D(6327, 2647, 0), Map.Felucca);
|
||||
}
|
||||
|
||||
if (BlackthornStep6.InstanceFel == null)
|
||||
{
|
||||
BlackthornStep6.InstanceFel = new BlackthornStep6();
|
||||
BlackthornStep6.InstanceFel.MoveToWorld(new Point3D(6297, 2677, -4), Map.Felucca);
|
||||
}
|
||||
|
||||
if (BlackthornStep7.InstanceFel == null)
|
||||
{
|
||||
BlackthornStep7.InstanceFel = new BlackthornStep7();
|
||||
BlackthornStep7.InstanceFel.MoveToWorld(new Point3D(6429, 2709, 0), Map.Felucca);
|
||||
}
|
||||
|
||||
if (BlackthornStep8.InstanceFel == null)
|
||||
{
|
||||
BlackthornStep8.InstanceFel = new BlackthornStep8();
|
||||
BlackthornStep8.InstanceFel.MoveToWorld(new Point3D(6408, 2792, 0), Map.Felucca);
|
||||
}
|
||||
|
||||
GenerateMapDecoration(Map.Felucca);
|
||||
}
|
||||
|
||||
public static void GenerateMapDecoration(Map map)
|
||||
{
|
||||
blocker.ToList().ForEach(x =>
|
||||
{
|
||||
if (map.FindItem<Blocker>(new Point3D(x)) == null)
|
||||
{
|
||||
Blocker bl = new Blocker();
|
||||
|
||||
bl.MoveToWorld(new Point3D(x), map);
|
||||
}
|
||||
|
||||
if (map.FindItem<LOSBlocker>(new Point3D(x)) == null)
|
||||
{
|
||||
LOSBlocker lb = new LOSBlocker();
|
||||
|
||||
lb.MoveToWorld(new Point3D(x), map);
|
||||
}
|
||||
});
|
||||
|
||||
for (int i = 0; i < Workers.Length; i++)
|
||||
{
|
||||
Point3D p = Workers[i];
|
||||
|
||||
if (map.FindMobile<Worker>(p) == null)
|
||||
{
|
||||
Worker w = new Worker((FellowshipChain)(i + 1));
|
||||
|
||||
w.MoveToWorld(p, map);
|
||||
}
|
||||
}
|
||||
|
||||
FellowshipChain c = FellowshipChain.One;
|
||||
|
||||
for (int t = 0; t < Teleporters.Length / 2; t++)
|
||||
{
|
||||
Point3D p = Teleporters[t, 0];
|
||||
|
||||
if (map.FindItem<BlackthornDungeonTeleporter>(p) == null)
|
||||
{
|
||||
BlackthornDungeonTeleporter bl;
|
||||
|
||||
if (t % 2 == 0)
|
||||
{
|
||||
bl = new BlackthornDungeonTeleporter(c)
|
||||
{
|
||||
Dest = Teleporters[t, 1]
|
||||
};
|
||||
|
||||
c++;
|
||||
}
|
||||
else
|
||||
{
|
||||
bl = new BlackthornDungeonTeleporter()
|
||||
{
|
||||
Dest = Teleporters[t, 1]
|
||||
};
|
||||
}
|
||||
|
||||
bl.MoveToWorld(p, map);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
83
Scripts/Services/Seasonal Events/ForsakenFoes/Gumps.cs
Normal file
83
Scripts/Services/Seasonal Events/ForsakenFoes/Gumps.cs
Normal file
@@ -0,0 +1,83 @@
|
||||
using Server;
|
||||
using System;
|
||||
using Server.Mobiles;
|
||||
using Server.Gumps;
|
||||
using Server.Items;
|
||||
using Server.Engines.Points;
|
||||
using Server.Engines.Craft;
|
||||
|
||||
namespace Server.Engines.Fellowship
|
||||
{
|
||||
public class FellowshipRewardGump : BaseRewardGump
|
||||
{
|
||||
public override int PointsName { get { return 1159184; } } // Your Fellowship Silver:
|
||||
public override int RewardLabel { get { return 1159185; } } // Would you like to buy something?
|
||||
|
||||
public FellowshipRewardGump(Mobile owner, PlayerMobile user)
|
||||
: base(owner, user, FellowshipRewards.Rewards, 1159183)
|
||||
{
|
||||
}
|
||||
|
||||
public override int GetYOffset(int id)
|
||||
{
|
||||
if (Index > 3)
|
||||
return 20;
|
||||
|
||||
return base.GetYOffset(id);
|
||||
}
|
||||
|
||||
public override double GetPoints(Mobile m)
|
||||
{
|
||||
return PointsSystem.FellowshipData.GetPoints(m);
|
||||
}
|
||||
|
||||
public override void RemovePoints(double points)
|
||||
{
|
||||
PointsSystem.FellowshipData.DeductPoints(User, points);
|
||||
}
|
||||
|
||||
public override void OnItemCreated(Item item)
|
||||
{
|
||||
item.InvalidateProperties();
|
||||
}
|
||||
|
||||
public override void OnConfirmed(CollectionItem citem, int index)
|
||||
{
|
||||
Item item = null;
|
||||
|
||||
if (citem.Type == typeof(RecipeScroll))
|
||||
{
|
||||
switch (index)
|
||||
{
|
||||
default:
|
||||
case 9: item = new RecipeScroll((int)TailorRecipe.CowlOfTheMaceAndShield); break;
|
||||
case 10: item = new RecipeScroll((int)TailorRecipe.MagesHoodOfScholarlyInsight); break;
|
||||
case 11: item = new RecipeScroll((int)TailorRecipe.ElegantCollarOfFortune); break;
|
||||
case 12: item = new RecipeScroll((int)TailorRecipe.CrimsonDaggerBelt); break;
|
||||
case 13: item = new RecipeScroll((int)TailorRecipe.CrimsonSwordBelt); break;
|
||||
case 14: item = new RecipeScroll((int)TailorRecipe.CrimsonMaceBelt); break;
|
||||
}
|
||||
}
|
||||
|
||||
if (item != null)
|
||||
{
|
||||
if (User.Backpack == null || !User.Backpack.TryDropItem(User, item, false))
|
||||
{
|
||||
User.SendLocalizedMessage(1074361); // The reward could not be given. Make sure you have room in your pack.
|
||||
item.Delete();
|
||||
}
|
||||
else
|
||||
{
|
||||
User.SendLocalizedMessage(1073621); // Your reward has been placed in your backpack.
|
||||
User.PlaySound(0x5A7);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
base.OnConfirmed(citem, index);
|
||||
}
|
||||
|
||||
PointsSystem.FellowshipData.DeductPoints(User, citem.Points);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class AdmiralJacksPumpkinSpiceAle : BaseShield
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
public override int LabelNumber { get { return 1159230; } } // Admiral Jack's Pumpkin Spice Ale
|
||||
|
||||
[Constructable]
|
||||
public AdmiralJacksPumpkinSpiceAle()
|
||||
: base(0xA40B)
|
||||
{
|
||||
Hue = 1922;
|
||||
Weight = 3.0;
|
||||
Attributes.SpellChanneling = 1;
|
||||
}
|
||||
|
||||
public AdmiralJacksPumpkinSpiceAle(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write((int)0); // version
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class CaptainTitleDeed : BaseRewardTitleDeed
|
||||
{
|
||||
public override TextDefinition Title { get { return new TextDefinition(1159216); } } // Captain
|
||||
|
||||
[Constructable]
|
||||
public CaptainTitleDeed()
|
||||
{
|
||||
}
|
||||
|
||||
public CaptainTitleDeed(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 v = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class CommanderTitleDeed : BaseRewardTitleDeed
|
||||
{
|
||||
public override TextDefinition Title { get { return new TextDefinition(1159215); } } // Commander
|
||||
|
||||
[Constructable]
|
||||
public CommanderTitleDeed()
|
||||
{
|
||||
}
|
||||
|
||||
public CommanderTitleDeed(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 v = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class EnsignTitleDeed : BaseRewardTitleDeed
|
||||
{
|
||||
public override TextDefinition Title { get { return new TextDefinition(1159214); } } // Ensign
|
||||
|
||||
[Constructable]
|
||||
public EnsignTitleDeed()
|
||||
{
|
||||
}
|
||||
|
||||
public EnsignTitleDeed(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 v = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,134 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
|
||||
using Server;
|
||||
using Server.Mobiles;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class EtherealSoulbinder : Item
|
||||
{
|
||||
public override int LabelNumber { get { return 1159167; } } // ethereal soulbinder
|
||||
|
||||
public double MaxSoulPoint { get; set; } = 100;
|
||||
|
||||
private double m_SoulPoint;
|
||||
|
||||
[CommandProperty(AccessLevel.GameMaster)]
|
||||
public double SoulPoint
|
||||
{
|
||||
get
|
||||
{
|
||||
return m_SoulPoint;
|
||||
}
|
||||
set
|
||||
{
|
||||
if (value < 0)
|
||||
value = 0;
|
||||
else if (value > MaxSoulPoint)
|
||||
value = MaxSoulPoint;
|
||||
|
||||
m_SoulPoint += value;
|
||||
|
||||
SetHue();
|
||||
InvalidateProperties();
|
||||
}
|
||||
}
|
||||
|
||||
private void SetHue()
|
||||
{
|
||||
if (SoulPoint <= 0)
|
||||
Hue = 0;
|
||||
else if (SoulPoint <= 1)
|
||||
Hue = 1910; // Meager
|
||||
else if (SoulPoint <= 25)
|
||||
Hue = 1916; // Grand
|
||||
else if (SoulPoint <= 50)
|
||||
Hue = 1914; // Exalted
|
||||
else if (SoulPoint <= 90)
|
||||
Hue = 1922; // Legendary
|
||||
else
|
||||
Hue = 1919; // Mythical
|
||||
}
|
||||
|
||||
private int GetDescription()
|
||||
{
|
||||
if (SoulPoint <= 0)
|
||||
return 1159177; // An Empty Soulbinder
|
||||
else if (SoulPoint <= 1)
|
||||
return 1159176; // Meager
|
||||
else if (SoulPoint <= 25)
|
||||
return 1159175; // Grand
|
||||
else if (SoulPoint <= 50)
|
||||
return 1159174; // Exalted
|
||||
else if (SoulPoint <= 90)
|
||||
return 1159173; // Legendary
|
||||
else
|
||||
return 1159172; // Mythical
|
||||
}
|
||||
|
||||
[Constructable]
|
||||
public EtherealSoulbinder()
|
||||
: base(0xA1E7)
|
||||
{
|
||||
}
|
||||
|
||||
public EtherealSoulbinder(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void GetProperties(ObjectPropertyList list)
|
||||
{
|
||||
base.GetProperties(list);
|
||||
|
||||
int desc = GetDescription();
|
||||
|
||||
if (desc == 1159177)
|
||||
{
|
||||
list.Add(1159177); // An Empty Soulbinder
|
||||
}
|
||||
else
|
||||
{
|
||||
list.Add(1159178, string.Format("#{0}", desc)); // Contains a ~1_TYPE~ Soul
|
||||
}
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write((int)0); // version
|
||||
|
||||
writer.Write(m_SoulPoint);
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
|
||||
m_SoulPoint = reader.ReadDouble();
|
||||
}
|
||||
|
||||
public static void Initialize()
|
||||
{
|
||||
EventSink.CreatureDeath += CreatureDeath;
|
||||
}
|
||||
|
||||
public static void CreatureDeath(CreatureDeathEventArgs e)
|
||||
{
|
||||
var bc = e.Creature as BaseCreature;
|
||||
var killer = e.Killer;
|
||||
|
||||
if (bc != null && bc.IsSoulbound && killer is PlayerMobile && killer.Backpack != null)
|
||||
{
|
||||
EtherealSoulbinder es = killer.Backpack.FindItemsByType<EtherealSoulbinder>().Where(x => x.SoulPoint < x.MaxSoulPoint).FirstOrDefault();
|
||||
|
||||
if (es != null)
|
||||
{
|
||||
es.SoulPoint += bc.HitsMax / 1000;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,86 @@
|
||||
using System;
|
||||
using Server.Engines.Points;
|
||||
using Server.Network;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class EtherealSoulcleanser : BaseContainer
|
||||
{
|
||||
public override int LabelNumber { get { return 1159196; } } // Ethereal Soulcleanser
|
||||
|
||||
public override int DefaultGumpID { get { return 0x10C; } }
|
||||
public override bool DisplaysContent { get { return false; } }
|
||||
|
||||
public static EtherealSoulcleanser InstanceTram { get; set; }
|
||||
public static EtherealSoulcleanser InstanceFel { get; set; }
|
||||
|
||||
[Constructable]
|
||||
public EtherealSoulcleanser()
|
||||
: base(0x2DF4)
|
||||
{
|
||||
Hue = 2591;
|
||||
Movable = false;
|
||||
}
|
||||
|
||||
public EtherealSoulcleanser(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override bool OnDragDrop(Mobile from, Item dropped)
|
||||
{
|
||||
return Check(from, dropped);
|
||||
}
|
||||
|
||||
public override bool OnDragDropInto(Mobile from, Item item, Point3D p)
|
||||
{
|
||||
return Check(from, item);
|
||||
}
|
||||
|
||||
public bool Check(Mobile from, Item item)
|
||||
{
|
||||
if (from == null || from.Deleted || item == null)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!(item is EtherealSoulbinder) || item is EtherealSoulbinder && ((EtherealSoulbinder)item).SoulPoint <= 0)
|
||||
{
|
||||
from.SendLocalizedMessage(1159170); // The machine only accepts filled ethereal soulbinders.
|
||||
return false;
|
||||
}
|
||||
|
||||
double amount = 100 * ((EtherealSoulbinder)item).SoulPoint;
|
||||
PointsSystem.FellowshipData.AwardPoints(from, amount);
|
||||
|
||||
Effects.SendPacket(from.Location, from.Map, new GraphicalEffect(EffectType.FixedXYZ, from.Serial, Serial.Zero, 0x373A, from.Location, from.Location, 10, 15, true, true));
|
||||
from.PlaySound(0x1F2);
|
||||
|
||||
item.Delete();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write((int)0); // version
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
|
||||
if (Map == Map.Trammel)
|
||||
{
|
||||
InstanceTram = this;
|
||||
}
|
||||
|
||||
if (Map == Map.Felucca)
|
||||
{
|
||||
InstanceFel = this;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,80 @@
|
||||
using System;
|
||||
using Server.Mobiles;
|
||||
using Server.Network;
|
||||
using Server.Targeting;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class ExplodingJackOLantern : Item
|
||||
{
|
||||
public override int LabelNumber { get { return 1159220; } } // Exploding Jack o' Lantern
|
||||
|
||||
[Constructable]
|
||||
public ExplodingJackOLantern()
|
||||
: base(0xA407)
|
||||
{
|
||||
Weight = 1.0;
|
||||
LootType = LootType.Blessed;
|
||||
}
|
||||
|
||||
public override void OnDoubleClick(Mobile from)
|
||||
{
|
||||
if (from.Mounted)
|
||||
{
|
||||
from.SendLocalizedMessage(1061130); // You can't do that while riding a mount.
|
||||
}
|
||||
else
|
||||
{
|
||||
from.SendLocalizedMessage(1113280); // Which target do you wish to throw this at?
|
||||
from.Target = new ThrowTarget(from);
|
||||
}
|
||||
}
|
||||
|
||||
private class ThrowTarget : Target
|
||||
{
|
||||
private Mobile m_From;
|
||||
|
||||
public ThrowTarget(Mobile from)
|
||||
: base(12, true, TargetFlags.None)
|
||||
{
|
||||
m_From = from;
|
||||
}
|
||||
|
||||
protected override void OnTarget(Mobile from, object targeted)
|
||||
{
|
||||
if (targeted is PlayerMobile)
|
||||
{
|
||||
Mobile m = targeted as Mobile;
|
||||
|
||||
if (from == m)
|
||||
{
|
||||
from.SendLocalizedMessage(501588); // Verbal taunts might be more effective!
|
||||
return;
|
||||
}
|
||||
|
||||
Effects.SendPacket(from, from.Map, new HuedEffect(EffectType.Moving, from.Serial, m.Serial, 0xA407, from, m, 10, 0, false, false, 0, 0));
|
||||
from.SendLocalizedMessage(1159219); // You hit your target!
|
||||
m.SendLocalizedMessage(1159218); // You have just been hit by a Jack o' Lantern!!!
|
||||
m.PlaySound(519);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public ExplodingJackOLantern(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();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
using System;
|
||||
using Server.Gumps;
|
||||
using Server.Network;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class FellowshipCoin : Item
|
||||
{
|
||||
public override int LabelNumber { get { return 1159036; } } // The Fellowship Coin
|
||||
|
||||
[Constructable]
|
||||
public FellowshipCoin()
|
||||
: base(0x2F60)
|
||||
{
|
||||
Weight = 1.0;
|
||||
Hue = 1912;
|
||||
Light = LightType.Circle300;
|
||||
}
|
||||
|
||||
public FellowshipCoin(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void OnDoubleClick(Mobile from)
|
||||
{
|
||||
if (!from.HasGump(typeof(FellowshipCoinGump)))
|
||||
{
|
||||
from.SendGump(new FellowshipCoinGump());
|
||||
from.LocalOverheadMessage(MessageType.Regular, 0x3B2, 1157722, "its origin"); // *Your proficiency in ~1_SKILL~ reveals more about the item*
|
||||
from.PlaySound(1050);
|
||||
}
|
||||
}
|
||||
|
||||
private class FellowshipCoinGump : Gump
|
||||
{
|
||||
public FellowshipCoinGump()
|
||||
: base(100, 100)
|
||||
{
|
||||
AddPage(0);
|
||||
|
||||
AddBackground(0, 0, 454, 400, 0x24A4);
|
||||
AddItem(75, 120, 0x2F60);
|
||||
AddHtmlLocalized(177, 50, 250, 18, 1114513, "#1159036", 0x3442, false, false); // <DIV ALIGN=CENTER>~1_TOKEN~</DIV>
|
||||
AddHtmlLocalized(177, 77, 250, 36, 1114513, "#1159033", 0x3442, false, false); // <DIV ALIGN=CENTER>~1_TOKEN~</DIV>
|
||||
AddHtmlLocalized(177, 122, 250, 228, 1159037, 0xC63, true, true); // The coin's gilded brilliance is striking. Engraved on the coin are the letters T, W, U.
|
||||
}
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write((int)0); // version
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,149 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class FellowshipDonationBox : BaseContainer
|
||||
{
|
||||
public override int LabelNumber { get { return 1159042; } } // Fellowship Donation Box
|
||||
|
||||
public override int DefaultGumpID { get { return 0x10C; } }
|
||||
|
||||
public static string FilePath = Path.Combine("Saves/Misc", "FellowshipDonationBox.bin");
|
||||
private static readonly Dictionary<Mobile, int> Donations = new Dictionary<Mobile, int>();
|
||||
|
||||
public static void Configure()
|
||||
{
|
||||
EventSink.WorldSave += OnSave;
|
||||
EventSink.WorldLoad += OnLoad;
|
||||
}
|
||||
|
||||
public static FellowshipDonationBox InstanceTram { get; set; }
|
||||
public static FellowshipDonationBox InstanceFel { get; set; }
|
||||
|
||||
[Constructable]
|
||||
public FellowshipDonationBox()
|
||||
: base(0x2DE9)
|
||||
{
|
||||
Hue = 1191;
|
||||
Movable = false;
|
||||
}
|
||||
|
||||
public FellowshipDonationBox(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override bool OnDragDrop(Mobile from, Item dropped)
|
||||
{
|
||||
return Check(from, dropped);
|
||||
}
|
||||
|
||||
public override bool OnDragDropInto(Mobile from, Item item, Point3D p)
|
||||
{
|
||||
return Check(from, item);
|
||||
}
|
||||
|
||||
public bool Check(Mobile from, Item item)
|
||||
{
|
||||
if (from == null || from.Deleted)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
if (item != null && !(item is MaritimeCargo))
|
||||
{
|
||||
from.SendLocalizedMessage(1159030); // The Fellowship only requires trade cargo donations at this time.
|
||||
return false;
|
||||
}
|
||||
|
||||
int amount = ((MaritimeCargo)item).GetAwardAmount() * 1000;
|
||||
|
||||
if (Donations.ContainsKey(from))
|
||||
{
|
||||
Donations[from] += amount;
|
||||
}
|
||||
else
|
||||
{
|
||||
Donations.Add(from, amount);
|
||||
}
|
||||
|
||||
from.SendMessage(1159032, string.Format("{0}", Donations[from].ToString())); // The Fellowship thanks you for your donation. You have donated ~1_val~ worth of goods!
|
||||
|
||||
if (Donations[from] >= 450000000)
|
||||
{
|
||||
from.SendLocalizedMessage(1152339, string.Format("{0}", Donations[from].ToString())); // A reward of ~1_ITEM~ has been placed in your backpack.
|
||||
from.AddToBackpack(new FellowshipCoin());
|
||||
Donations[from] -= 450000000;
|
||||
}
|
||||
|
||||
item.Delete();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write((int)0); // version
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
|
||||
if (Map == Map.Trammel)
|
||||
{
|
||||
InstanceTram = this;
|
||||
}
|
||||
|
||||
if (Map == Map.Felucca)
|
||||
{
|
||||
InstanceFel = this;
|
||||
}
|
||||
}
|
||||
|
||||
public static void OnSave(WorldSaveEventArgs e)
|
||||
{
|
||||
Persistence.Serialize(
|
||||
FilePath,
|
||||
writer =>
|
||||
{
|
||||
writer.Write((int)0);
|
||||
|
||||
writer.Write(Donations.Count);
|
||||
|
||||
Donations.ToList().ForEach(s =>
|
||||
{
|
||||
writer.Write(s.Key);
|
||||
writer.Write(s.Value);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
public static void OnLoad()
|
||||
{
|
||||
Persistence.Deserialize(
|
||||
FilePath,
|
||||
reader =>
|
||||
{
|
||||
int version = reader.ReadInt();
|
||||
int count = reader.ReadInt();
|
||||
|
||||
for (int i = count; i > 0; i--)
|
||||
{
|
||||
Mobile m = reader.ReadMobile();
|
||||
int value = reader.ReadInt();
|
||||
|
||||
if (m != null)
|
||||
{
|
||||
Donations.Add(m, value);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,61 @@
|
||||
using System;
|
||||
using Server.Gumps;
|
||||
using Server.Network;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class FellowshipMedallion : Item
|
||||
{
|
||||
public override int LabelNumber { get { return 1159248; } } // Fellowship Medallion
|
||||
|
||||
[Constructable]
|
||||
public FellowshipMedallion()
|
||||
: base(0xA429)
|
||||
{
|
||||
Weight = 1.0;
|
||||
Layer = Layer.Neck;
|
||||
}
|
||||
|
||||
public FellowshipMedallion(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void OnDoubleClick(Mobile from)
|
||||
{
|
||||
if (!from.HasGump(typeof(FellowshipMedallionGump)))
|
||||
{
|
||||
from.SendGump(new FellowshipMedallionGump());
|
||||
from.LocalOverheadMessage(MessageType.Regular, 0x3B2, 1157722, "its origin"); // *Your proficiency in ~1_SKILL~ reveals more about the item*
|
||||
from.PlaySound(1050);
|
||||
}
|
||||
}
|
||||
|
||||
private class FellowshipMedallionGump : Gump
|
||||
{
|
||||
public FellowshipMedallionGump()
|
||||
: base(100, 100)
|
||||
{
|
||||
AddPage(0);
|
||||
|
||||
AddBackground(0, 0, 454, 400, 0x24A4);
|
||||
AddItem(75, 120, 0xA429);
|
||||
AddHtmlLocalized(177, 50, 250, 18, 1114513, "#1159248", 0x3442, false, false); // <DIV ALIGN=CENTER>~1_TOKEN~</DIV>
|
||||
AddHtmlLocalized(177, 77, 250, 36, 1114513, "#1159033", 0x3442, false, false); // <DIV ALIGN=CENTER>~1_TOKEN~</DIV>
|
||||
AddHtmlLocalized(177, 122, 250, 228, 1159247, 0xC63, true, true); // This is an otherwise unassuming metal medallion in the shape of a triangle. The letters T, W, and U are engraved on it. It is almost immediately recognizable as a sign of the Fellowship.
|
||||
}
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write((int)0); // version
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,54 @@
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class JackOLanternHelm : BaseArmor
|
||||
{
|
||||
public override int LabelNumber { get { return 1125986; } } // jack o' lantern helm
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
|
||||
[Constructable]
|
||||
public JackOLanternHelm()
|
||||
: base(0xA3EA)
|
||||
{
|
||||
Weight = 3.0;
|
||||
Layer = Layer.Helm;
|
||||
Light = LightType.Circle300;
|
||||
}
|
||||
|
||||
public override int BasePhysicalResistance { get { return 12; } }
|
||||
public override int BaseFireResistance { get { return 14; } }
|
||||
public override int BaseColdResistance { get { return 4; } }
|
||||
public override int BasePoisonResistance { get { return 8; } }
|
||||
public override int BaseEnergyResistance { get { return 10; } }
|
||||
|
||||
public override int InitMinHits { get { return 255; } }
|
||||
public override int InitMaxHits { get { return 255; } }
|
||||
public override int AosStrReq { get { return 10; } }
|
||||
|
||||
public override ArmorMaterialType MaterialType
|
||||
{
|
||||
get
|
||||
{
|
||||
return ArmorMaterialType.Plate;
|
||||
}
|
||||
}
|
||||
|
||||
public JackOLanternHelm(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();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,66 @@
|
||||
using Server;
|
||||
using System;
|
||||
using Server.Multis;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class PumpkinDeed : ShipCannonDeed
|
||||
{
|
||||
public override CannonPower CannonType { get { return CannonPower.Pumpkin; } }
|
||||
public override int LabelNumber { get { return 1159232; } } // Pumpkin Cannon
|
||||
|
||||
[Constructable]
|
||||
public PumpkinDeed()
|
||||
{
|
||||
Hue = 1192;
|
||||
}
|
||||
|
||||
public PumpkinDeed(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();
|
||||
}
|
||||
}
|
||||
|
||||
public class PumpkinCannon : BaseShipCannon
|
||||
{
|
||||
public override int LabelNumber { get { return 1023691; } } // cannon
|
||||
|
||||
public override int Range { get { return 10; } }
|
||||
public override ShipCannonDeed GetDeed { get { return new PumpkinDeed(); } }
|
||||
public override CannonPower Power { get { return CannonPower.Pumpkin; } }
|
||||
|
||||
public PumpkinCannon(BaseGalleon g)
|
||||
: base(g)
|
||||
{
|
||||
}
|
||||
|
||||
public PumpkinCannon(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();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,416 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Collections.Generic;
|
||||
|
||||
using Server;
|
||||
using Server.Items;
|
||||
using Server.Engines.PartySystem;
|
||||
|
||||
namespace Server.Multis
|
||||
{
|
||||
public class PumpkinRowBoat : BaseBoat
|
||||
{
|
||||
public override int NorthID { get { return 0x50; } }
|
||||
public override int EastID { get { return 0x51; } }
|
||||
public override int SouthID { get { return 0x52; } }
|
||||
public override int WestID { get { return 0x53; } }
|
||||
|
||||
public override int HoldDistance { get { return -1; } }
|
||||
public override int TillerManDistance { get { return -2; } }
|
||||
|
||||
public override Point3D MarkOffset { get { return new Point3D(0, 1, 3); } }
|
||||
|
||||
public override BaseDockedBoat DockedBoat { get { return new DockedPumpkinRowBoat(this); } }
|
||||
|
||||
public override bool IsClassicBoat { get { return false; } }
|
||||
public override bool IsRowBoat { get { return true; } }
|
||||
public override bool CanLinkToLighthouse { get { return false; } }
|
||||
|
||||
[CommandProperty(AccessLevel.GameMaster)]
|
||||
public MooringBlock Line { get; private set; }
|
||||
|
||||
[CommandProperty(AccessLevel.GameMaster)]
|
||||
public Rudder Rudder { get; private set; }
|
||||
|
||||
[Constructable]
|
||||
public PumpkinRowBoat(Direction d)
|
||||
: base(d, false)
|
||||
{
|
||||
Rudder = new PumpkinRudder(this, d);
|
||||
TillerMan = Rudder;
|
||||
Line = new MooringBlock(this, d);
|
||||
|
||||
switch (d)
|
||||
{
|
||||
default:
|
||||
case Direction.North:
|
||||
Rudder.Location = new Point3D(X + 1, Y + 3, Z);
|
||||
Line.Location = new Point3D(X, Y - 1, Z + 2);
|
||||
break;
|
||||
case Direction.South:
|
||||
Rudder.Location = new Point3D(X, Y - 2, Z);
|
||||
Line.Location = new Point3D(X, Y + 1, Z + 2);
|
||||
break;
|
||||
case Direction.East:
|
||||
Rudder.Location = new Point3D(X - 2, Y, Z);
|
||||
Line.Location = new Point3D(X + 1, Y, Z + 2);
|
||||
break;
|
||||
case Direction.West:
|
||||
Rudder.Location = new Point3D(X + 3, Y + 1, Z);
|
||||
Line.Location = new Point3D(X - 1, Y, Z + 2);
|
||||
break;
|
||||
}
|
||||
|
||||
Rudder.Handle = new PumpkinRudderHandle(Rudder, d);
|
||||
}
|
||||
|
||||
public override void Delete()
|
||||
{
|
||||
if (Line != null)
|
||||
Line.Delete();
|
||||
|
||||
if (Rudder != null && Rudder.Handle != null)
|
||||
Rudder.Handle.Delete();
|
||||
|
||||
base.Delete();
|
||||
}
|
||||
|
||||
public override void SetFacingComponents(Direction facing, Direction old, bool ignore)
|
||||
{
|
||||
if (Rudder == null || Rudder.Handle == null)
|
||||
return;
|
||||
|
||||
switch(facing)
|
||||
{
|
||||
case Direction.North:
|
||||
{
|
||||
Rudder.Y++;
|
||||
break;
|
||||
}
|
||||
case Direction.West:
|
||||
{
|
||||
Rudder.X++;
|
||||
Rudder.Y++;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
Line.SetFacing(facing);
|
||||
Rudder.Handle.SetFacing(facing);
|
||||
}
|
||||
|
||||
public override void OnLocationChange(Point3D old)
|
||||
{
|
||||
base.OnLocationChange(old);
|
||||
|
||||
if (Line != null)
|
||||
Line.Location = new Point3D(X + (Line.X - old.X), Y + (Line.Y - old.Y), Z + (Line.Z - old.Z));
|
||||
|
||||
if(Rudder != null && Rudder.Handle != null)
|
||||
Rudder.Handle.Location = new Point3D(X + (Rudder.Handle.X - old.X), Y + (Rudder.Handle.Y - old.Y), Z + (Rudder.Handle.Z - old.Z));
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// This must be overriden due to the tillerman not being in the MCL bounds
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public override IEnumerable<IEntity> GetEntitiesOnBoard()
|
||||
{
|
||||
Map map = Map;
|
||||
|
||||
if (map == null || map == Map.Internal)
|
||||
yield break;
|
||||
|
||||
MultiComponentList mcl = Components;
|
||||
IPooledEnumerable eable = map.GetObjectsInBounds(new Rectangle2D(X + mcl.Min.X, Y + mcl.Min.Y, mcl.Width, mcl.Height));
|
||||
|
||||
foreach (IEntity ent in eable)
|
||||
{
|
||||
if (Contains(ent) && CheckOnBoard(ent))
|
||||
{
|
||||
yield return ent;
|
||||
}
|
||||
}
|
||||
|
||||
eable.Free();
|
||||
yield return Rudder;
|
||||
}
|
||||
|
||||
public override void OnMapChange()
|
||||
{
|
||||
base.OnMapChange();
|
||||
|
||||
if (Line != null)
|
||||
Line.Map = Map;
|
||||
}
|
||||
|
||||
public override void OnPlacement(Mobile from)
|
||||
{
|
||||
base.OnPlacement(from);
|
||||
|
||||
if (Line == null)
|
||||
return;
|
||||
|
||||
switch (Facing)
|
||||
{
|
||||
default:
|
||||
case Direction.North:
|
||||
Line.Location = new Point3D(X, Y - 2, Z + 5);
|
||||
break;
|
||||
case Direction.South:
|
||||
Line.Location = new Point3D(X, Y + 2, Z + 5);
|
||||
break;
|
||||
case Direction.East:
|
||||
Line.Location = new Point3D(X + 2, Y, Z + 5);
|
||||
break;
|
||||
case Direction.West:
|
||||
Line.Location = new Point3D(X - 2, Y, Z + 5);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
public override bool IsComponentItem(IEntity item)
|
||||
{
|
||||
return item == this || item == Line || item == Rudder || (Rudder != null && item == Rudder.Handle);
|
||||
}
|
||||
|
||||
public override bool HasAccess(Mobile from)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
public PumpkinRowBoat(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write((int)0);
|
||||
|
||||
writer.Write(Rudder);
|
||||
writer.Write(Line);
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
|
||||
Rudder = reader.ReadItem() as PumpkinRudder;
|
||||
Line = reader.ReadItem() as MooringBlock;
|
||||
|
||||
TillerMan = Rudder;
|
||||
}
|
||||
}
|
||||
|
||||
public class PumpkinRowBoatDeed : BaseBoatDeed
|
||||
{
|
||||
public override int LabelNumber { get { return 1159233; } } // Pumpkin Rowboat
|
||||
public override BaseBoat Boat { get { return new PumpkinRowBoat(BoatDirection); } }
|
||||
|
||||
[Constructable]
|
||||
public PumpkinRowBoatDeed()
|
||||
: base(0x50, Point3D.Zero)
|
||||
{
|
||||
}
|
||||
|
||||
public PumpkinRowBoatDeed(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write((int)0);
|
||||
}
|
||||
}
|
||||
|
||||
public class MooringBlock : MooringLine
|
||||
{
|
||||
public MooringBlock(BaseBoat boat, Direction d)
|
||||
: base(boat)
|
||||
{
|
||||
SetFacing(d);
|
||||
}
|
||||
|
||||
public void SetFacing(Direction dir)
|
||||
{
|
||||
switch (dir)
|
||||
{
|
||||
case Direction.North:
|
||||
case Direction.South:
|
||||
ItemID = 42088;
|
||||
break;
|
||||
case Direction.East:
|
||||
case Direction.West:
|
||||
ItemID = 42087;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
public MooringBlock(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();
|
||||
}
|
||||
}
|
||||
|
||||
public class PumpkinRudder : Rudder
|
||||
{
|
||||
public PumpkinRudder(BaseBoat boat, Direction d)
|
||||
: base(boat, d)
|
||||
{
|
||||
}
|
||||
|
||||
public override void SetFacing(Direction dir)
|
||||
{
|
||||
switch (dir)
|
||||
{
|
||||
case Direction.South:
|
||||
ItemID = 42073;
|
||||
break;
|
||||
case Direction.North:
|
||||
ItemID = 42030;
|
||||
Y++;
|
||||
break;
|
||||
case Direction.West:
|
||||
ItemID = 42044;
|
||||
X++;
|
||||
Y++;
|
||||
break;
|
||||
case Direction.East:
|
||||
ItemID = 42058;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
public PumpkinRudder(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();
|
||||
|
||||
if (ItemID == 42030)
|
||||
{
|
||||
Y++;
|
||||
}
|
||||
|
||||
if (ItemID == 42044)
|
||||
{
|
||||
X++;
|
||||
Y++;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public class PumpkinRudderHandle : RudderHandle
|
||||
{
|
||||
public PumpkinRudderHandle(Rudder rudder, Direction d)
|
||||
: base(rudder, d)
|
||||
{
|
||||
}
|
||||
|
||||
public override void SetFacing(Direction dir)
|
||||
{
|
||||
if (Rudder == null)
|
||||
Delete();
|
||||
else
|
||||
{
|
||||
switch (dir)
|
||||
{
|
||||
default:
|
||||
case Direction.South:
|
||||
ItemID = 16067;
|
||||
MoveToWorld(new Point3D(Rudder.X + 1, Rudder.Y + 1, Rudder.Z + 9), Map);
|
||||
break;
|
||||
case Direction.North:
|
||||
ItemID = 16061;
|
||||
MoveToWorld(new Point3D(Rudder.X, Rudder.Y - 1, Rudder.Z + 2), Map);
|
||||
break;
|
||||
case Direction.West:
|
||||
ItemID = 15991;
|
||||
MoveToWorld(new Point3D(Rudder.X - 1, Rudder.Y, Rudder.Z + 2), Map);
|
||||
break;
|
||||
case Direction.East:
|
||||
ItemID = 15970;
|
||||
MoveToWorld(new Point3D(Rudder.X + 1, Rudder.Y + 1, Rudder.Z + 9), Map);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public PumpkinRudderHandle(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();
|
||||
}
|
||||
}
|
||||
|
||||
public class DockedPumpkinRowBoat : BaseDockedBoat
|
||||
{
|
||||
public override BaseBoat Boat { get { return new PumpkinRowBoat(BoatDirection); } }
|
||||
|
||||
public DockedPumpkinRowBoat(BaseBoat boat)
|
||||
: base(0x50, Point3D.Zero, boat)
|
||||
{
|
||||
}
|
||||
|
||||
public DockedPumpkinRowBoat(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write((int)0);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,63 @@
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
[Flipable(0xA343, 0xA344)]
|
||||
public class TheFellowshipStaff : BaseStaff
|
||||
{
|
||||
public override int LabelNumber { get { return 1159034; } } // The Fellowship Staff
|
||||
|
||||
public static TheFellowshipStaff InstanceTram { get; set; }
|
||||
public static TheFellowshipStaff InstanceFel { get; set; }
|
||||
|
||||
[Constructable]
|
||||
public TheFellowshipStaff()
|
||||
: base (0xA343)
|
||||
{
|
||||
Hue = 2721;
|
||||
}
|
||||
|
||||
public override WeaponAbility PrimaryAbility { get { return WeaponAbility.Block; } }
|
||||
public override WeaponAbility SecondaryAbility { get { return WeaponAbility.ForceOfNature; } }
|
||||
public override int AosStrengthReq { get { return 20; } }
|
||||
public override int AosMinDamage { get { return 15; } }
|
||||
public override int AosMaxDamage { get { return 18; } }
|
||||
public override float MlSpeed { get { return 3.25f; } }
|
||||
|
||||
public override int InitMinHits { get { return 30; } }
|
||||
public override int InitMaxHits { get { return 60; } }
|
||||
|
||||
public override void GetDamageTypes(Mobile wielder, out int phys, out int fire, out int cold, out int pois, out int nrgy, out int chaos, out int direct)
|
||||
{
|
||||
fire = cold = pois = nrgy = chaos = direct = 0;
|
||||
phys = 100;
|
||||
}
|
||||
|
||||
public TheFellowshipStaff(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();
|
||||
|
||||
if (Map == Map.Trammel)
|
||||
{
|
||||
InstanceTram = this;
|
||||
}
|
||||
|
||||
if (Map == Map.Felucca)
|
||||
{
|
||||
InstanceFel = this;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,130 @@
|
||||
using Server;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Server.Mobiles;
|
||||
using Server.Items;
|
||||
using Server.ContextMenus;
|
||||
|
||||
namespace Server.Engines.Fellowship
|
||||
{
|
||||
public class FellowshipAdept : BaseVendor
|
||||
{
|
||||
public override bool IsActiveVendor { get { return false; } }
|
||||
public override bool IsInvulnerable { get { return true; } }
|
||||
public override bool DisallowAllMoves { get { return true; } }
|
||||
public override bool ClickTitle { get { return true; } }
|
||||
public override bool CanTeach { get { return false; } }
|
||||
|
||||
protected List<SBInfo> m_SBInfos = new List<SBInfo>();
|
||||
protected override List<SBInfo> SBInfos { get { return m_SBInfos; } }
|
||||
public override void InitSBInfo() { }
|
||||
|
||||
public static FellowshipAdept InstanceTram { get; set; }
|
||||
public static FellowshipAdept InstanceFel { get; set; }
|
||||
|
||||
[Constructable]
|
||||
public FellowshipAdept()
|
||||
: base("the Fellowship Adept")
|
||||
{
|
||||
}
|
||||
|
||||
public override void InitBody()
|
||||
{
|
||||
base.InitBody();
|
||||
|
||||
Name = NameList.RandomName("male");
|
||||
|
||||
Hue = Utility.RandomSkinHue();
|
||||
Body = 0x190;
|
||||
HairItemID = 0x2044;
|
||||
HairHue = 1644;
|
||||
FacialHairItemID = 0x203F;
|
||||
FacialHairHue = 1644;
|
||||
}
|
||||
|
||||
public override void InitOutfit()
|
||||
{
|
||||
SetWearable(new Kamishimo());
|
||||
SetWearable(new Sandals());
|
||||
SetWearable(new GoldRing());
|
||||
|
||||
if (Backpack == null)
|
||||
{
|
||||
Item backpack = new Backpack
|
||||
{
|
||||
Movable = false
|
||||
};
|
||||
|
||||
AddItem(backpack);
|
||||
}
|
||||
}
|
||||
|
||||
public override void GetProperties(ObjectPropertyList list)
|
||||
{
|
||||
base.GetProperties(list);
|
||||
|
||||
list.Add(1159182); // Fellowship Shop
|
||||
}
|
||||
|
||||
public override void AddCustomContextEntries(Mobile from, List<ContextMenuEntry> list)
|
||||
{
|
||||
|
||||
if (from.Alive)
|
||||
{
|
||||
list.Add(new BrowseShopEntry(from, this));
|
||||
}
|
||||
|
||||
base.AddCustomContextEntries(from, list);
|
||||
}
|
||||
|
||||
private class BrowseShopEntry : ContextMenuEntry
|
||||
{
|
||||
private Mobile m_From;
|
||||
private BaseVendor m_Vendor;
|
||||
|
||||
public BrowseShopEntry(Mobile from, BaseVendor vendor)
|
||||
: base(1159181, 2) // Browse the Fellowship Shop
|
||||
{
|
||||
Enabled = vendor.CheckVendorAccess(from);
|
||||
|
||||
m_From = from;
|
||||
m_Vendor = vendor;
|
||||
}
|
||||
|
||||
public override void OnClick()
|
||||
{
|
||||
if (!m_From.InRange(m_Vendor.Location, 5) || !(m_From is PlayerMobile))
|
||||
return;
|
||||
|
||||
m_From.SendGump(new FellowshipRewardGump(m_Vendor, m_From as PlayerMobile));
|
||||
}
|
||||
}
|
||||
|
||||
public FellowshipAdept(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write(0);
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
|
||||
if (Map == Map.Trammel)
|
||||
{
|
||||
InstanceTram = this;
|
||||
}
|
||||
|
||||
if (Map == Map.Felucca)
|
||||
{
|
||||
InstanceFel = this;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,93 @@
|
||||
using System;
|
||||
using Server.Items;
|
||||
using Server.Gumps;
|
||||
using Server.Mobiles;
|
||||
using Server.Engines.Quests;
|
||||
|
||||
namespace Server.Engines.Fellowship
|
||||
{
|
||||
public class Follower : BaseQuester
|
||||
{
|
||||
public static Follower InstanceTram { get; set; }
|
||||
public static Follower InstanceFel { get; set; }
|
||||
|
||||
[Constructable]
|
||||
public Follower()
|
||||
: base("the Follower")
|
||||
{
|
||||
}
|
||||
|
||||
public override void InitBody()
|
||||
{
|
||||
base.InitBody();
|
||||
|
||||
Name = NameList.RandomName("male");
|
||||
|
||||
SpeechHue = 0x3B2;
|
||||
Hue = Utility.RandomSkinHue();
|
||||
Body = 0x190;
|
||||
}
|
||||
|
||||
public override void InitOutfit()
|
||||
{
|
||||
SetWearable(new Surcoat(), 1255);
|
||||
SetWearable(new LongPants(), 2722);
|
||||
SetWearable(new Kilt(), 2012);
|
||||
SetWearable(new Boots());
|
||||
SetWearable(new GoldEarrings());
|
||||
}
|
||||
|
||||
public override int GetAutoTalkRange(PlayerMobile pm)
|
||||
{
|
||||
return 3;
|
||||
}
|
||||
|
||||
public override void OnTalk(PlayerMobile player, bool contextMenu)
|
||||
{
|
||||
if (!player.HasGump(typeof(FollowerGump)))
|
||||
{
|
||||
player.SendGump(new FollowerGump());
|
||||
}
|
||||
}
|
||||
|
||||
public class FollowerGump : Gump
|
||||
{
|
||||
public FollowerGump()
|
||||
: base(100, 100)
|
||||
{
|
||||
AddPage(0);
|
||||
|
||||
AddBackground(0, 0, 720, 285, 0x2454);
|
||||
AddImage(0, 0, 0x6CF);
|
||||
AddHtmlLocalized(300, 24, 408, 251, 1159043, 0xC63, false, true); // Welcome to the Fellowship Hall. It isn't much, but we've been able to help the many refugees from across Britannia that Hook and his vile minions have displaced with their plundering ways! If you'd like to make a donation, simply drop your trade cargo in the donation box. With enough donations you too can become a member of the Fellowship!<BR><BR><br>If you have taken up the charge of cleansing Britannia's souls of the vile evils that plague our society, you may deposit the soulbinders in the chest here for cleansing by our Adepts.
|
||||
}
|
||||
}
|
||||
|
||||
public Follower(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write(0);
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
|
||||
if (Map == Map.Trammel)
|
||||
{
|
||||
InstanceTram = this;
|
||||
}
|
||||
|
||||
if (Map == Map.Felucca)
|
||||
{
|
||||
InstanceFel = this;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,233 @@
|
||||
using System;
|
||||
using Server.Items;
|
||||
using System.Collections.Generic;
|
||||
using Server.Mobiles;
|
||||
using Server.Gumps;
|
||||
using Server.Network;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
|
||||
namespace Server.Engines.Quests
|
||||
{
|
||||
public class CooperativeArray
|
||||
{
|
||||
public string Account { get; set; }
|
||||
public int Purchase { get; set; }
|
||||
}
|
||||
|
||||
public class MiningCooperative
|
||||
{
|
||||
public static string FilePath = Path.Combine("Saves/Misc", "MiningCooperative.bin");
|
||||
private static List<CooperativeArray> PurchaseList = new List<CooperativeArray>();
|
||||
|
||||
public static void Configure()
|
||||
{
|
||||
EventSink.WorldSave += OnSave;
|
||||
EventSink.WorldLoad += OnLoad;
|
||||
}
|
||||
|
||||
public static void AddPurchase(Mobile from, int amount)
|
||||
{
|
||||
string acc = from.Account.ToString();
|
||||
|
||||
if (CheckList(from))
|
||||
{
|
||||
PurchaseList.Find(x => x.Account == acc).Purchase += amount;
|
||||
}
|
||||
else
|
||||
{
|
||||
PurchaseList.Add(new CooperativeArray { Account = from.Account.ToString(), Purchase = amount });
|
||||
}
|
||||
}
|
||||
|
||||
public static bool CheckList(Mobile from)
|
||||
{
|
||||
string acc = from.Account.ToString();
|
||||
|
||||
return PurchaseList.Any(x => x.Account == acc);
|
||||
}
|
||||
|
||||
public static int PurchaseAmount(Mobile from)
|
||||
{
|
||||
int amount = 0;
|
||||
|
||||
if (CheckList(from))
|
||||
{
|
||||
amount = PurchaseList.FirstOrDefault(x => x.Account == from.Account.ToString()).Purchase;
|
||||
}
|
||||
|
||||
return amount;
|
||||
}
|
||||
|
||||
public static void DefragTables()
|
||||
{
|
||||
PurchaseList = new List<CooperativeArray>();
|
||||
}
|
||||
|
||||
public static void OnSave(WorldSaveEventArgs e)
|
||||
{
|
||||
Persistence.Serialize(
|
||||
FilePath,
|
||||
writer =>
|
||||
{
|
||||
writer.Write((int)0);
|
||||
|
||||
writer.Write(PurchaseList.Count);
|
||||
|
||||
PurchaseList.ForEach(s =>
|
||||
{
|
||||
writer.Write(s.Account);
|
||||
writer.Write((int)s.Purchase);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
public static void OnLoad()
|
||||
{
|
||||
Persistence.Deserialize(
|
||||
FilePath,
|
||||
reader =>
|
||||
{
|
||||
int version = reader.ReadInt();
|
||||
int count = reader.ReadInt();
|
||||
|
||||
for (int i = count; i > 0; i--)
|
||||
{
|
||||
string acc = reader.ReadString();
|
||||
int purchase = reader.ReadInt();
|
||||
|
||||
if (acc != null)
|
||||
{
|
||||
PurchaseList.Add(new CooperativeArray { Account = acc, Purchase = purchase });
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
public class MiningCooperativeMerchant : BaseVendor
|
||||
{
|
||||
protected readonly List<SBInfo> m_SBInfos = new List<SBInfo>();
|
||||
protected override List<SBInfo> SBInfos { get { return m_SBInfos; } }
|
||||
|
||||
public override bool IsActiveVendor { get { return false; } }
|
||||
public override bool IsInvulnerable { get { return true; } }
|
||||
|
||||
public int MaxAmount { get { return 5000; } }
|
||||
public int Price { get { return 112; } }
|
||||
public int Quantity { get { return 500; } }
|
||||
|
||||
public static MiningCooperativeMerchant InstanceTram { get; set; }
|
||||
public static MiningCooperativeMerchant InstanceFel { get; set; }
|
||||
|
||||
public override void InitSBInfo()
|
||||
{
|
||||
}
|
||||
|
||||
[Constructable]
|
||||
public MiningCooperativeMerchant()
|
||||
: base("the Mining Cooperative Merchant")
|
||||
{
|
||||
}
|
||||
|
||||
public MiningCooperativeMerchant(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void InitOutfit()
|
||||
{
|
||||
AddItem(new FancyShirt(0x3E4));
|
||||
AddItem(new LongPants(0x192));
|
||||
AddItem(new Pickaxe());
|
||||
AddItem(new ThighBoots(0x283));
|
||||
}
|
||||
|
||||
public override void OnDoubleClick(Mobile from)
|
||||
{
|
||||
from.CloseGump(typeof(MiningCooperativeGump));
|
||||
from.SendGump(new MiningCooperativeGump(this, from));
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write((int)0); // version
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
|
||||
if (Map == Map.Trammel)
|
||||
{
|
||||
InstanceTram = this;
|
||||
}
|
||||
|
||||
if (Map == Map.Felucca)
|
||||
{
|
||||
InstanceFel = this;
|
||||
}
|
||||
}
|
||||
|
||||
public class MiningCooperativeGump : Gump
|
||||
{
|
||||
private readonly MiningCooperativeMerchant Vendor;
|
||||
|
||||
public MiningCooperativeGump(MiningCooperativeMerchant vendor, Mobile from)
|
||||
: base(100, 100)
|
||||
{
|
||||
Vendor = vendor;
|
||||
|
||||
AddPage(0);
|
||||
|
||||
int available = vendor.MaxAmount - MiningCooperative.PurchaseAmount(from);
|
||||
|
||||
AddBackground(0, 0, 310, 350, 0x6DB);
|
||||
AddImage(54, 0, 0x6E4);
|
||||
AddHtmlLocalized(10, 10, 290, 18, 1114513, "#1154040", 0x0, false, false); // <DIV ALIGN=CENTER>~1_TOKEN~</DIV>
|
||||
AddItem(20, 80, 0xA3E8);
|
||||
AddHtmlLocalized(120, 73, 180, 18, 1159190, 0x43FF, false, false); // Ethereal Sand
|
||||
AddHtmlLocalized(120, 100, 180, 18, 1159191, vendor.Price.ToString(), 0x43FF, false, false); // GP: ~1_VALUE~
|
||||
AddItem(20, 140, 0x14F0);
|
||||
AddHtmlLocalized(120, 143, 180, 18, 1159193, string.Format("{0}@{1}", vendor.Quantity, vendor.Quantity*vendor.Price), 0x5FF0, false, false); // x~1_QUANT~ GP: ~2_COST~
|
||||
AddHtmlLocalized(25, 203, 275, 18, 1159192, string.Format("{0}@{1}", available, vendor.MaxAmount), 0x7FF0, false, false); // Available For Purchase: ~1_PART~ / ~2_WHOLE~
|
||||
AddHtmlLocalized(20, 243, 160, 72, 1159194, string.Format("{0}@#1159190@{1}", vendor.Quantity, vendor.Quantity * vendor.Price), 0x7FFF, false, false); // Purchase a Commodity Deed filled with ~1_QUANT~ ~2_NAME~ for ~3_COST~ GP?
|
||||
AddButton(220, 260, 0x81C, 0x81B, 1, GumpButtonType.Reply, 0);
|
||||
}
|
||||
|
||||
public override void OnResponse(NetState sender, RelayInfo info)
|
||||
{
|
||||
Mobile from = sender.Mobile;
|
||||
|
||||
int available = Vendor.MaxAmount - MiningCooperative.PurchaseAmount(from);
|
||||
int payment = Vendor.Quantity * Vendor.Price;
|
||||
|
||||
if (info.ButtonID == 1)
|
||||
{
|
||||
if (available > 0)
|
||||
{
|
||||
if (Banker.Withdraw(from, payment, true))
|
||||
{
|
||||
CommodityDeed deed = new CommodityDeed();
|
||||
deed.SetCommodity(new EtherealSand(Vendor.Quantity));
|
||||
from.AddToBackpack(deed);
|
||||
|
||||
MiningCooperative.AddPurchase(from, Vendor.Quantity);
|
||||
from.SendGump(new MiningCooperativeGump(Vendor, from));
|
||||
}
|
||||
else
|
||||
{
|
||||
Vendor.Say(500192); // Begging thy pardon, but thou canst not afford that.
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
Vendor.Say(1159195); // Begging thy pardon, but your family has purchased the maximum amount of that commodity. I cannot sell you more until a new shipment arrives!
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
238
Scripts/Services/Seasonal Events/ForsakenFoes/Mobile/Worker.cs
Normal file
238
Scripts/Services/Seasonal Events/ForsakenFoes/Mobile/Worker.cs
Normal file
@@ -0,0 +1,238 @@
|
||||
using System;
|
||||
using Server.Items;
|
||||
using Server.Gumps;
|
||||
using Server.Mobiles;
|
||||
using Server.Engines.Quests;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
|
||||
namespace Server.Engines.Fellowship
|
||||
{
|
||||
public enum FellowshipChain
|
||||
{
|
||||
None,
|
||||
One,
|
||||
Two,
|
||||
Three,
|
||||
Four,
|
||||
Five,
|
||||
Six,
|
||||
Seven,
|
||||
Eight
|
||||
}
|
||||
|
||||
public class Worker : BaseQuester
|
||||
{
|
||||
public static string FilePath = Path.Combine("Saves/Misc", "FellowshipChain.bin");
|
||||
public static Dictionary<Mobile, FellowshipChain> FellowshipChainList = new Dictionary<Mobile, FellowshipChain>();
|
||||
|
||||
public static void Configure()
|
||||
{
|
||||
EventSink.WorldSave += OnSave;
|
||||
EventSink.WorldLoad += OnLoad;
|
||||
}
|
||||
|
||||
public static void OnSave(WorldSaveEventArgs e)
|
||||
{
|
||||
Persistence.Serialize(
|
||||
FilePath,
|
||||
writer =>
|
||||
{
|
||||
writer.Write((int)0);
|
||||
|
||||
writer.Write(FellowshipChainList.Count);
|
||||
|
||||
foreach (var chain in FellowshipChainList)
|
||||
{
|
||||
writer.Write(chain.Key);
|
||||
writer.Write((int)chain.Value);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
public static void OnLoad()
|
||||
{
|
||||
Persistence.Deserialize(
|
||||
FilePath,
|
||||
reader =>
|
||||
{
|
||||
int version = reader.ReadInt();
|
||||
int count = reader.ReadInt();
|
||||
|
||||
for (int i = count; i > 0; i--)
|
||||
{
|
||||
Mobile m = reader.ReadMobile();
|
||||
FellowshipChain chain = (FellowshipChain)reader.ReadInt();
|
||||
|
||||
if (m != null)
|
||||
{
|
||||
FellowshipChainList[m] = chain;
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
public static Worker InstanceTram { get; set; }
|
||||
public static Worker InstanceFel { get; set; }
|
||||
|
||||
[CommandProperty(AccessLevel.GameMaster)]
|
||||
public FellowshipChain Chain { get; set; }
|
||||
|
||||
[Constructable]
|
||||
public Worker(FellowshipChain chain)
|
||||
: base("the Worker")
|
||||
{
|
||||
Chain = chain;
|
||||
}
|
||||
|
||||
public override void InitBody()
|
||||
{
|
||||
base.InitBody();
|
||||
|
||||
Name = NameList.RandomName("male");
|
||||
|
||||
SpeechHue = 0x3B2;
|
||||
Hue = Utility.RandomSkinHue();
|
||||
Body = 0x190;
|
||||
}
|
||||
|
||||
public override void InitOutfit()
|
||||
{
|
||||
SetWearable(new FullApron(), 902);
|
||||
SetWearable(new HalfApron(), 946);
|
||||
SetWearable(new Shirt(), 1513);
|
||||
SetWearable(new LeatherGloves());
|
||||
SetWearable(new Boots(), 2013);
|
||||
SetWearable(new ShortPants());
|
||||
SetWearable(new SmithHammer());
|
||||
}
|
||||
|
||||
public override bool OnDragDrop(Mobile from, Item item)
|
||||
{
|
||||
if (item is FellowshipCoin)
|
||||
{
|
||||
if (FellowshipChainList.ContainsKey(from))
|
||||
{
|
||||
if (Chain > FellowshipChainList[from])
|
||||
{
|
||||
FellowshipChainList[from] = Chain;
|
||||
}
|
||||
else
|
||||
{
|
||||
SayTo(from, 500607, 0x3B2); // I'm not interested in that.
|
||||
return false;
|
||||
}
|
||||
|
||||
if (FellowshipChainList[from] == FellowshipChain.Eight)
|
||||
{
|
||||
from.AddToBackpack(new FellowshipMedallion());
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
FellowshipChainList.Add(from, Chain);
|
||||
}
|
||||
|
||||
item.Delete();
|
||||
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
SayTo(from, 500607, 0x3B2); // I'm not interested in that.
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public override void OnDoubleClick(Mobile m)
|
||||
{
|
||||
if (m != null && InRange(m.Location, 5))
|
||||
{
|
||||
if (!m.HasGump(typeof(WorkerGump)))
|
||||
{
|
||||
m.SendGump(new WorkerGump(m, Chain));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public override void OnTalk(PlayerMobile player, bool contextMenu)
|
||||
{
|
||||
if (!player.HasGump(typeof(WorkerGump)))
|
||||
{
|
||||
player.SendGump(new WorkerGump(player, Chain));
|
||||
}
|
||||
}
|
||||
|
||||
public class WorkerGump : Gump
|
||||
{
|
||||
private static readonly int[,] clilocs = new int[,]
|
||||
{
|
||||
{1159238, 1159239},
|
||||
{1159236, 1159240},
|
||||
{1159236, 1159241},
|
||||
{1159236, 1159242},
|
||||
{1159236, 1159243},
|
||||
{1159236, 1159244},
|
||||
{1159236, 1159245},
|
||||
{1159236, 1159246},
|
||||
};
|
||||
|
||||
public WorkerGump(Mobile from, FellowshipChain chain)
|
||||
: base(100, 100)
|
||||
{
|
||||
int cliloc;
|
||||
|
||||
if (FellowshipChainList.ContainsKey(from))
|
||||
{
|
||||
if (chain > FellowshipChainList[from])
|
||||
cliloc = clilocs[(int)(chain - 1), 0];
|
||||
else
|
||||
cliloc = clilocs[(int)(chain - 1), 1];
|
||||
}
|
||||
else
|
||||
{
|
||||
cliloc = clilocs[(int)(chain - 1), 0];
|
||||
}
|
||||
|
||||
AddPage(0);
|
||||
|
||||
AddBackground(0, 0, 620, 328, 0x2454);
|
||||
AddImage(0, 0, 0x61A);
|
||||
AddHtmlLocalized(335, 14, 273, 18, 1114513, "#1159237", 0xC63, false, false); // <DIV ALIGN=CENTER>~1_TOKEN~</DIV>
|
||||
AddHtmlLocalized(335, 51, 273, 267, cliloc, 0xC63, false, true);
|
||||
}
|
||||
}
|
||||
|
||||
public Worker(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write(0);
|
||||
|
||||
writer.Write((int)Chain);
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
|
||||
Chain = (FellowshipChain)reader.ReadInt();
|
||||
|
||||
if (Map == Map.Trammel)
|
||||
{
|
||||
InstanceTram = this;
|
||||
}
|
||||
|
||||
if (Map == Map.Felucca)
|
||||
{
|
||||
InstanceFel = this;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
35
Scripts/Services/Seasonal Events/ForsakenFoes/Rewards.cs
Normal file
35
Scripts/Services/Seasonal Events/ForsakenFoes/Rewards.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Items;
|
||||
using System.Collections.Generic;
|
||||
using Server.Multis;
|
||||
|
||||
namespace Server.Engines.Fellowship
|
||||
{
|
||||
public static class FellowshipRewards
|
||||
{
|
||||
public static List<CollectionItem> Rewards { get; set; }
|
||||
|
||||
public static void Initialize()
|
||||
{
|
||||
Rewards = new List<CollectionItem>
|
||||
{
|
||||
new CollectionItem(typeof(TinctureOfSilver), 0x183B, 1155619, 1900, 10000),
|
||||
new CollectionItem(typeof(PumpkinDeed), 0x14F2, 1159232, 1922, 50000),
|
||||
new CollectionItem(typeof(PumpkinRowBoatDeed), 0x14F2, 1159233, 0, 250000),
|
||||
new CollectionItem(typeof(JackOLanternHelm), 0xA3EA, 1125986, 0, 150000),
|
||||
new CollectionItem(typeof(AdmiralJacksPumpkinSpiceAle), 0xA40B, 1159230, 1922, 50000),
|
||||
new CollectionItem(typeof(ExplodingJackOLantern), 0xA407, 1159220, 1175, 40000),
|
||||
new CollectionItem(typeof(CaptainTitleDeed), 0x14EF, 1156995, 0, 80000),
|
||||
new CollectionItem(typeof(CommanderTitleDeed), 0x14EF, 1156995, 0, 40000),
|
||||
new CollectionItem(typeof(EnsignTitleDeed), 0x14EF, 1156995, 0, 20000),
|
||||
new CollectionItem(typeof(RecipeScroll), 0x2831, 1074560, 0, 150000),
|
||||
new CollectionItem(typeof(RecipeScroll), 0x2831, 1074560, 0, 150000),
|
||||
new CollectionItem(typeof(RecipeScroll), 0x2831, 1074560, 0, 200000),
|
||||
new CollectionItem(typeof(RecipeScroll), 0x2831, 1074560, 0, 75000),
|
||||
new CollectionItem(typeof(RecipeScroll), 0x2831, 1074560, 0, 75000),
|
||||
new CollectionItem(typeof(RecipeScroll), 0x2831, 1074560, 0, 75000)
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user