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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user