-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPowerCore.cs
417 lines (373 loc) · 9.57 KB
/
PowerCore.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Starfinder_Starship_Hanger
{
class PowerCore
{
#region PFVs
private string type;
private string size01;
private string size02;
private string size03;
private int pcu;
private int bpCost;
#endregion
#region Properties
public string Type
{
get
{
return type;
}
set
{
type = value;
}
}
public string Size01
{
get
{
return size01;
}
set
{
size01 = value;
}
}
public string Size02
{
get
{
return size02;
}
set
{
size02 = value;
}
}
public string Size03
{
get
{
return size03;
}
set
{
size03 = value;
}
}
public int PCU
{
get
{
return pcu;
}
set
{
pcu = value;
}
}
public int BPCost
{
get
{
return bpCost;
}
set
{
bpCost = value;
}
}
#endregion
#region Constructors
public PowerCore None()
{
PowerCore none = new PowerCore()
{
Type = "-Select Power Core-"
};
return none;
}
public PowerCore MicronLight()
{
PowerCore MicronLightCore = new PowerCore()
{
Type = "Micron Light",
Size01 = "Tiny",
PCU = 50,
BPCost = 4
};
return MicronLightCore;
}
public PowerCore MicronHeavy()
{
PowerCore MicronHeavyCore = new PowerCore()
{
Type = "Micron Heavy",
Size01 = "Tiny",
PCU = 70,
BPCost = 6
};
return MicronHeavyCore;
}
public PowerCore MicronUltra()
{
PowerCore MicronUltraCore = new PowerCore()
{
Type = "Micron Ultra",
Size01 = "Tiny",
PCU = 80,
BPCost = 8
};
return MicronUltraCore;
}
public PowerCore ArcusLight()
{
PowerCore ArcusLightCore = new PowerCore()
{
Type = "Arcus Light",
Size01 = "Tiny",
Size02 = "Small",
PCU = 75,
BPCost = 7
};
return ArcusLightCore;
}
public PowerCore PulseBrown()
{
PowerCore PulseBrownCore = new PowerCore()
{
Type = "Pulse Brown",
Size01 = "Tiny",
Size02 = "Small",
PCU = 90,
BPCost = 9
};
return PulseBrownCore;
}
public PowerCore PulseBlack()
{
PowerCore PulseBlackCore = new PowerCore()
{
Type = "Pulse Black",
Size01 = "Tiny",
Size02 = "Small",
PCU = 120,
BPCost = 12
};
return PulseBlackCore;
}
public PowerCore PulseWhite()
{
PowerCore PulseWhiteCore = new PowerCore()
{
Type = "Pulse White",
Size01 = "Tiny",
Size02 = "Small",
PCU = 140,
BPCost = 14
};
return PulseWhiteCore;
}
public PowerCore PulseGrey()
{
PowerCore PulseGreyCore = new PowerCore()
{
Type = "Pulse Grey",
Size01 = "Tiny",
Size02 = "Small",
Size03 = "Medium",
PCU = 100,
BPCost = 10
};
return PulseGreyCore;
}
public PowerCore ArcusHeavy()
{
PowerCore ArcusHeavyCore = new PowerCore()
{
Type = "Arcus Heavy",
Size01 = "Tiny",
Size02 = "Small",
Size03 = "Medium",
PCU = 130,
BPCost = 13
};
return ArcusHeavyCore;
}
public PowerCore PulseGreen()
{
PowerCore PulseGreenCore = new PowerCore()
{
Type = "Pulse Green",
Size01 = "Tiny",
Size02 = "Small",
Size03 = "Medium",
PCU = 150,
BPCost = 15
};
return PulseGreenCore;
}
public PowerCore PulseRed()
{
PowerCore PulseRedCore = new PowerCore()
{
Type = "Pulse Red",
Size01 = "Tiny",
Size02 = "Small",
Size03 = "Medium",
PCU = 175,
BPCost = 17
};
return PulseRedCore;
}
public PowerCore PulseBlue()
{
PowerCore PulseBlueCore = new PowerCore()
{
Type = "Pulse Blue",
Size01 = "Tiny",
Size02 = "Small",
Size03 = "Medium",
PCU = 200,
BPCost = 20
};
return PulseBlueCore;
}
public PowerCore ArcusUltra()
{
PowerCore ArcusUltraCore = new PowerCore()
{
Type = "Arcus Ultra",
Size01 = "Small",
Size02 = "Medium",
Size03 = "Large",
PCU = 150,
BPCost = 15
};
return ArcusUltraCore;
}
public PowerCore ArcusMaximum()
{
PowerCore ArcusMaximumCore = new PowerCore()
{
Type = "Arcus Maximum",
Size01 = "Small",
Size02 = "Medium",
Size03 = "Large",
PCU = 200,
BPCost = 20
};
return ArcusMaximumCore;
}
public PowerCore PulseOrange()
{
PowerCore PulseOrangeCore = new PowerCore()
{
Type = "Pulse Orange",
Size01 = "Small",
Size02 = "Medium",
Size03 = "Large",
PCU = 250,
BPCost = 25
};
return PulseOrangeCore;
}
public PowerCore PulsePrismatic()
{
PowerCore PulsePrismaticCore = new PowerCore()
{
Type = "Pulse Prismatic",
Size01 = "Small",
Size02 = "Medium",
Size03 = "Large",
PCU = 300,
BPCost = 30
};
return PulsePrismaticCore;
}
public PowerCore NovaLight()
{
PowerCore NovaLightCore = new PowerCore()
{
Type = "Nova Light",
Size01 = "Medium",
Size02 = "Large",
Size03 = "Huge",
PCU = 150,
BPCost = 15
};
return NovaLightCore;
}
public PowerCore NovaHeavy()
{
PowerCore NovaHeavyCore = new PowerCore()
{
Type = "Nova Heavy",
Size01 = "Medium",
Size02 = "Large",
Size03 = "Huge",
PCU = 200,
BPCost = 20
};
return NovaHeavyCore;
}
public PowerCore NovaUltra()
{
PowerCore NovaUltraCore = new PowerCore()
{
Type = "Nova Ultra",
Size01 = "Medium",
Size02 = "Large",
Size03 = "Huge",
PCU = 300,
BPCost = 30
};
return NovaUltraCore;
}
public PowerCore GatewayLight()
{
PowerCore GatewayLightCore = new PowerCore()
{
Type = "Gateway Light",
Size01 = "Large",
Size02 = "Huge",
Size03 = "Gargantuan",
PCU = 300,
BPCost = 30
};
return GatewayLightCore;
}
public PowerCore GatewayHeavy()
{
PowerCore GatewayHeavyCore = new PowerCore()
{
Type = "Gateway Heavy",
Size01 = "Large",
Size02 = "Huge",
Size03 = "Gargantuan",
PCU = 400,
BPCost = 40
};
return GatewayHeavyCore;
}
public PowerCore GatewayUltra()
{
PowerCore GatewayUltraCore = new PowerCore()
{
Type = "Gateway Ultra",
Size01 = "Huge",
Size02 = "Gargantuan",
Size03 = "Colossal",
PCU = 500,
BPCost = 50
};
return GatewayUltraCore;
}
#endregion
}
}