-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcommon-ground-vehicles.html
694 lines (686 loc) · 22.8 KB
/
common-ground-vehicles.html
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
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Cepheus Engine SRD - Common Ground Vehicles</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.rawgit.com/afeld/bootstrap-toc/v1.0.1/dist/bootstrap-toc.min.css"/>
<link href="cepheus-engine-srd.css" rel="stylesheet">
</head>
<body data-bs-spy="scroll" data-bs-target="#toc">
<header>
<nav class="navbar navbar-expand-xxl navbar-dark bg-dark fixed-top">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">Cepheus Engine SRD</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" href="introduction.html">Introduction</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" data-toggle="dropdown" href="" role="button" data-bs-toggle="dropdown" aria-expanded="false">Book 1: Characters</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="character-creation.html">Chapter 1: Character Creation</a>
<a class="dropdown-item" href="skills.html">Chapter 2: Skills</a>
<a class="dropdown-item" href="psionics.html">Chapter 3: Psionics</a>
<a class="dropdown-item" href="equipment.html">Chapter 4: Equipment</a>
<a class="dropdown-item" href="personal-combat.html">Chapter 5: Personal Combat</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" data-toggle="dropdown" href="" role="button" data-bs-toggle="dropdown" aria-expanded="false">Book 2: Starships and Interstellar Travel</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="off-world-travel.html">Chapter 6: Off-World Travel</a>
<a class="dropdown-item" href="trade-and-commerce.html">Chapter 7: Trade and Commerce</a>
<a class="dropdown-item" href="ship-design-and-construction.html">Chapter 8: Ship Design and Construction</a>
<a class="dropdown-item" href="common-vessels.html">Chapter 9: Common Vessels</a>
<a class="dropdown-item" href="space-combat.html">Chapter 10: Space Combat</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" data-toggle="dropdown" href="" role="button" data-bs-toggle="dropdown" aria-expanded="false">Book 3: Referees</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="environments-and-hazards.html">Chapter 11: Environments and Hazards</a>
<a class="dropdown-item" href="worlds.html">Chapter 12: Worlds</a>
<a class="dropdown-item" href="planetary-wilderness-encounters.html">Chapter 13: Planetary Wilderness Encounters</a>
<a class="dropdown-item" href="social-encounters.html">Chapter 14: Social Encounters</a>
<a class="dropdown-item" href="starship-encounters.html">Chapter 15: Starship Encounters</a>
<a class="dropdown-item" href="refereeing-the-game.html">Chapter 16: Refereeing the Game</a>
<a class="dropdown-item" href="adventures.html">Chapter 17: Adventures</a>
</div>
</li>
<li class="nav-item dropdown active">
<a class="nav-link dropdown-toggle active" data-toggle="dropdown" href="" role="button" data-bs-toggle="dropdown" aria-expanded="false">Vehicle Design System</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="vds-introduction.html">Introduction</a>
<a class="dropdown-item" href="vehicle-design.html">Chapter 1: Vehicle Design</a>
<a class="dropdown-item" href="common-aircraft.html">Chapter 2: Common Aircraft</a>
<a class="dropdown-item" href="common-grav-vehicles.html">Chapter 3: Common Grav Vehicles</a>
<a class="dropdown-item active" href="common-ground-vehicles.html">Chapter 4: Common Ground Vehicles</a>
<a class="dropdown-item" href="common-watercraft.html">Chapter 5: Common Watercraft</a>
<a class="dropdown-item" href="uncommon-vehicles.html">Chapter 6: Uncommon Vehicles</a>
<a class="dropdown-item" href="updated-common-vehicles-table.html">Appendix A: Updated Common Vehicles Table</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" data-toggle="dropdown" href="" role="button" data-bs-toggle="dropdown" aria-expanded="false">Tools</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="tools/subsector-generator.html">Subsector Generator</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="legal.html">Legal</a>
</li>
</ul>
<form class="d-flex" action="search.html">
<div class="input-group ml-sm-2">
<input class="form-control" type="search" placeholder="Search" aria-label="Search" name="q">
<button class="btn btn-outline-light" type="submit">Search</button>
</div>
</form>
</div>
</div>
</nav>
</header>
<main class="container w-75">
<div class="row">
<div class="col-sm-3">
<nav id="toc" data-toggle="toc" class="sticky-top"></nav>
</div>
<div class="col-sm-9">
<h1>Chapter 4: Common Ground Vehicles</h1>
<p class="lead">
This section details various ground-based vehicles that can be commonly encountered in Cepheus Engine campaigns. Creative Referees are encouraged to introduce other common vehicles as they see fit.
</p>
<h2>TL12 AFV, Tracked</h2>
<p>
Using a closed ten-ton chassis (2 Hull, 2 Structure, Armor 25), the Tracked Armored Fighting Vehicle (AFV) is a heavily armored tracked vehicle used in military engagements on planetary surfaces. This vehicle is equipped with Insidious Environmental Protection. It carries a Fusion power plant, Code Q, and a Tracked propulsion system, Code Q, giving a top speed of 67.5 kph, a cruising speed of 50 kph and an Agility DM of -1. This vehicle is equipped for Off-Road Capability. 1.51 kiloliters of hydrogen support the power plant for 72 hours. This vehicle is equipped with Advanced controls, a Class IV communication system (Continental), a Laser Class IV communication system (Continental), Basic Military sensors (Comms DM +0), and a Model 3 computer. This vehicle also comes equipped with Autopilot (Tracked Vehicles-1). There is an extended cockpit and cramped seating for six. The vehicle has one weapon point, bearing a small turret armed with a Beam Laser-TL 11. This vehicle is also equipped with basic life support (covers 20 people for 10 days), a fresher, and a galley suitable for 8 people. Cargo capacity is 11.31 kiloliters. The chassis is additionally armored with Superdense armor (x4).The vehicle requires a crew of two: one driver and one gunner. The vehicle can carry up to six passengers in cramped seating. The vehicle costs KCr287.790 (including discounts and fees) and takes 240 hours (10 days) to build.
</p>
<table class="table table-bordered table-striped table-hover table-responsive-md">
<caption>Table: TL12 AFV, Tracked Design Specifications</caption>
<thead class="thead-light">
<tr>
<th>Category</th>
<th>Component</th>
<th>Spaces</th>
<th>Price(Cr)</th>
<th>Notes</th>
</tr>
</thead>
<tr>
<th>Chassis</th>
<td>Base</td>
<td>120</td>
<td>17750</td>
<td>Code E</td>
</tr>
<tr>
<th></th>
<td>Configuration</td>
<td></td>
<td></td>
<td>Closed</td>
</tr>
<tr>
<th></th>
<td>Armor</td>
<td>-24</td>
<td>14200</td>
<td>Superdense (x4)</td>
</tr>
<tr>
<th></th>
<td>Insidious EPS</td>
<td>-6</td>
<td>50000</td>
<td></td>
</tr>
<tr>
<th>Power Plant</th>
<td>Fusion</td>
<td>-6.38</td>
<td>9575</td>
<td>Code Q</td>
</tr>
<tr>
<th>Propulsion</th>
<td>Tracked</td>
<td>-11</td>
<td>21450</td>
<td>Code Q</td>
</tr>
<tr>
<th></th>
<td>Off-Road Capability</td>
<td></td>
<td>10725</td>
<td></td>
</tr>
<tr>
<th>Fuel</th>
<td>Hydrogen</td>
<td>-1.51</td>
<td>60.48</td>
<td>Fuel capacity = 72 hours</td>
</tr>
<tr>
<th>Controls</th>
<td>Advanced</td>
<td>-2</td>
<td>10000</td>
<td>+1 Agility</td>
</tr>
<tr>
<th></th>
<td>Autopilot</td>
<td></td>
<td>2000</td>
<td><a href="skills.html#tracked-vehicle">Tracked Vehicle-1</a></td>
</tr>
<tr>
<th>Communications</th>
<td>Class IV</td>
<td>-0.1</td>
<td>4000</td>
<td>Continental (5000 km)</td>
</tr>
<tr>
<th></th>
<td>Laser Class IV</td>
<td>-0.2</td>
<td>12000</td>
<td></td>
</tr>
<tr>
<th>Sensors</th>
<td>Basic Military</td>
<td>-12</td>
<td>20000</td>
<td><a href="skills.html#comms">Comms DM+0</a></td>
</tr>
<tr>
<th>Computer</th>
<td>Model/3</td>
<td>0</td>
<td>2000</td>
<td></td>
</tr>
<tr>
<th>Accommodations</th>
<td>Cockpit, Extended</td>
<td>-4</td>
<td>2000</td>
<td>Supports two crew</td>
</tr>
<tr>
<th></th>
<td>Seating, Cramped (x2)</td>
<td>-8</td>
<td>4000</td>
<td>Seats 6 people cramped</td>
</tr>
<tr>
<th></th>
<td>Basic Life Support</td>
<td>-3</td>
<td>3500</td>
<td>Last 10 days for 20 people</td>
</tr>
<tr>
<th>Additional Components</th>
<td>Fresher</td>
<td>-6</td>
<td>1500</td>
<td></td>
</tr>
<tr>
<th></th>
<td>Galley (8 people)</td>
<td>-21</td>
<td>6000</td>
<td></td>
</tr>
<tr>
<th>Armaments</th>
<td>Turret (Small)</td>
<td>-0.5</td>
<td>4000</td>
<td></td>
</tr>
<tr>
<th></th>
<td>Beam Laser-TL 11</td>
<td>-3</td>
<td>120000</td>
<td></td>
</tr>
<tr>
<th>Cargo</th>
<td></td>
<td>-11.31</td>
<td></td>
<td></td>
</tr>
<tr>
<th>TOTALS</th>
<td></td>
<td>0</td>
<td>319760.48</td>
<td>Cr287,790 with Std Design Discount</td>
</tr>
</table>
<h2>TL12 ATV, Tracked</h2>
<p>
Using a closed ten-ton chassis (2 Hull, 2 Structure, Armor 5), the Tracked All-Terrain Vehicle (ATV) is a tracked vehicle frequently used for exploring planetary surfaces. This vehicle is equipped with Insidious Environmental Protection. It carries a Fusion power plant, Code Q, and a Tracked propulsion system, Code Q, giving a top speed of 67.5 kph, a cruising speed of 50 kph and an Agility DM of -1. This vehicle is equipped for Off-Road Capability. 1.51 kiloliters of hydrogen support the power plant for 72 hours. This vehicle is equipped with Advanced controls, a Class IV communication system (Continental), a Laser Class IV communication system (Continental), Basic Civilian sensors (Comms DM -2), and a Model 3 computer. This vehicle also comes equipped with Autopilot (Tracked Vehicles-1). There is an extended cockpit and cramped seating for six. This vehicle is also equipped with basic life support (covers 20 people for 10 days), a fresher, and a galley suitable for 8 people. Cargo capacity is 3.73 tons. The vehicle requires a crew of one: the driver. The vehicle can carry up to one additional passenger in the extended cockpit and six passengers in cramped seating. The vehicle costs KCr154.410 (including discounts and fees) and takes 60 hours to build.
</p>
<table class="table table-bordered table-striped table-hover table-responsive-md">
<caption>Table: TL12 ATV, Tracked Design Specifications</caption>
<thead class="thead-light">
<tr>
<th>Category</th>
<th>Component</th>
<th>Spaces</th>
<th>Price(Cr)</th>
<th>Notes</th>
</tr>
</thead>
<tr>
<th>Chassis</th>
<td>Base</td>
<td>120</td>
<td>17750</td>
<td>Code E</td>
</tr>
<tr>
<th></th>
<td>Configuration</td>
<td></td>
<td></td>
<td>Closed</td>
</tr>
<tr>
<th></th>
<td>Insidious EPS</td>
<td>-6</td>
<td>50000</td>
<td></td>
</tr>
<tr>
<th>Power Plant</th>
<td>Fusion</td>
<td>-6.38</td>
<td>9575</td>
<td>Code Q</td>
</tr>
<tr>
<th>Propulsion</th>
<td>Tracked</td>
<td>-11</td>
<td>21450</td>
<td>Code Q</td>
</tr>
<tr>
<th></th>
<td>Off-Road Capability</td>
<td></td>
<td>10725</td>
<td></td>
</tr>
<tr>
<th>Fuel</th>
<td>Hydrogen</td>
<td>-1.51</td>
<td>60.48</td>
<td>Fuel capacity = 72 hours</td>
</tr>
<tr>
<th>Controls</th>
<td>Advanced</td>
<td>-2</td>
<td>10000</td>
<td>+1 Agility</td>
</tr>
<tr>
<th></th>
<td>Autopilot</td>
<td></td>
<td>2000</td>
<td><a href="skills.html#tracked-vehicle">Tracked Vehicle-1</a></td>
</tr>
<tr>
<th>Communications</th>
<td>Class IV</td>
<td>-0.1</td>
<td>4000</td>
<td>Continental (5000 km)</td>
</tr>
<tr>
<th></th>
<td>Laser Class IV</td>
<td>-0.2</td>
<td>12000</td>
<td></td>
</tr>
<tr>
<th>Sensors</th>
<td>Basic Civilian</td>
<td>-6</td>
<td>10000</td>
<td><a href="skills.html#comms">Comms DM-2</a></td>
</tr>
<tr>
<th>Computer</th>
<td>Model/3</td>
<td>0</td>
<td>2000</td>
<td></td>
</tr>
<tr>
<th>Accommodations</th>
<td>Cockpit, Extended</td>
<td>-4</td>
<td>2000</td>
<td>Supports two crew</td>
</tr>
<tr>
<th></th>
<td>Seating, Cramped (x2)</td>
<td>-8</td>
<td>4000</td>
<td>Seats 6 people cramped</td>
</tr>
<tr>
<th></th>
<td>Basic Life Support</td>
<td>-3</td>
<td>3500</td>
<td>Last 10 days for 20 people</td>
</tr>
<tr>
<th>Additional Components</th>
<td>Fresher</td>
<td>-6</td>
<td>1500</td>
<td></td>
</tr>
<tr>
<th></th>
<td>Galley (8 people)</td>
<td>-21</td>
<td>6000</td>
<td></td>
</tr>
<tr>
<th>Cargo</th>
<td></td>
<td>-44.81</td>
<td></td>
<td></td>
</tr>
<tr>
<th>TOTALS</th>
<td></td>
<td>0</td>
<td>171560.48</td>
<td>Cr154,410 with Std Design Discount</td>
</tr>
</table>
<h2>TL5 Ground Car</h2>
<p>
Using a closed one-ton chassis (0 Hull, 1 Structure, Armor 2), the Ground Car is a wheeled, self-powered motor vehicle used for transportation. It carries an Internal Combustion engine, Code C, and a Wheeled propulsion system, Code C, giving a top speed of 100 kph, a cruising speed of 75 kph and an Agility DM of +3. 12 liters of hydrocarbons support the power plant for 5 hours. This vehicle is equipped with Basic controls. There is an extended cockpit and three cramped seats. Cargo capacity is 38 liters. The vehicle requires a crew of one: the driver. The vehicle can carry up to four passengers, one in the extended cockpit and three in cramped seating. The vehicle costs KCr6.290 (including discounts and fees) and takes 9 hours to build.
</p>
<table class="table table-bordered table-striped table-hover table-responsive-md">
<caption>Table: TL5 Ground Car Design Specifications</caption>
<thead class="thead-light">
<tr>
<th>Category</th>
<th>Component</th>
<th>Spaces</th>
<th>Price(Cr)</th>
<th>Notes</th>
</tr>
</thead>
<tr>
<th>Chassis</th>
<td>Base</td>
<td>12</td>
<td>2400</td>
<td>Code 5</td>
</tr>
<tr>
<th></th>
<td>Configuration</td>
<td></td>
<td></td>
<td>Closed</td>
</tr>
<tr>
<th>Power Plant</th>
<td>Internal Combustion</td>
<td>-2.4</td>
<td>22.5</td>
<td>Code C</td>
</tr>
<tr>
<th>Propulsion</th>
<td>Wheels</td>
<td>-0.55</td>
<td>550</td>
<td>Code C</td>
</tr>
<tr>
<th>Fuel</th>
<td>Hydrocarbons</td>
<td>-0.012</td>
<td>9.5865</td>
<td>Fuel capacity = 5 hours</td>
</tr>
<tr>
<th>Controls</th>
<td>Basic</td>
<td>-1</td>
<td>0</td>
<td>Included in Chassis Price</td>
</tr>
<tr>
<th>Accommodations</th>
<td>Extended Cockpit</td>
<td>-4</td>
<td>2000</td>
<td>Two crew (pilot, gunner)</td>
</tr>
<tr>
<th></th>
<td>Seating, Cramped</td>
<td>-4</td>
<td>2000</td>
<td>Seats 3 people cramped</td>
</tr>
<tr>
<th>Cargo</th>
<td></td>
<td>-0.038</td>
<td></td>
<td></td>
</tr>
<tr>
<th>TOTALS</th>
<td></td>
<td>0</td>
<td>6982.0865</td>
<td>Cr6,290 with Std Design Discount</td>
</tr>
</table>
<h2>TL3 Stagecoach</h2>
<p>
Using an open two-ton chassis (0 Hull, 1 Structure, Armor 1), the Stagecoach is a type of covered wagon used to carry passengers and goods inside, generally drawn by four horses, or similar beasts of burden. It carries a nonpowered wheel propulsion system, Code D, giving a top speed and cruising speed based on the beasts pulling it, and an Agility DM of +1. This vehicle is equipped with primitive controls. There is one extended cockpit and six cramped seats. Cargo capacity is 10.5 kiloliters. The vehicle requires a crew of one, the driver, although there is room for a second driver if needed. The vehicle can carry up to six additional passengers in cramped seats. The vehicle costs KCr8.080 (including discounts and fees) and takes 18 hours to build.
</p>
<table class="table table-bordered table-striped table-hover table-responsive-md">
<caption>Table: TL3 Stagecoach Design Specifications</caption>
<thead class="thead-light">
<tr>
<th>Category</th>
<th>Component</th>
<th>Spaces</th>
<th>Price(Cr)</th>
<th>Notes</th>
</tr>
</thead>
<tr>
<th>Chassis</th>
<td>Base</td>
<td>24</td>
<td>3550</td>
<td>Code 6</td>
</tr>
<tr>
<th></th>
<td>Configuration</td>
<td></td>
<td>-355</td>
<td>Open</td>
</tr>
<tr>
<th>Power Plant</th>
<td>Animal-Powered</td>
<td>0</td>
<td>0</td>
<td></td>
</tr>
<tr>
<th>Propulsion</th>
<td>Wheeled, Non-Powered</td>
<td>-1</td>
<td>487.5</td>
<td>Code D</td>
</tr>
<tr>
<th>Controls</th>
<td>Primitive</td>
<td>-0.5</td>
<td>-710</td>
<td>Agility-1</td>
</tr>
<tr>
<th>Accommodations</th>
<td>Extended Cockpit</td>
<td>-4</td>
<td>2000</td>
<td>Two crew (pilot, gunner)</td>
</tr>
<tr>
<th></th>
<td>Seating, Cramped</td>
<td>-8</td>
<td>4000</td>
<td>6 passengers, cramped</td>
</tr>
<tr>
<th>Cargo</th>
<td></td>
<td>-10.5</td>
<td></td>
<td></td>
</tr>
<tr>
<th>TOTALS</th>
<td></td>
<td>0</td>
<td>8972.5</td>
<td>Cr8,080 with Std Design Discount</td>
</tr>
</table>
<h2>TL5 Van</h2>
<p>
Using a closed two-ton chassis (0 Hull, 1 Structure, Armor 2), the Van is a type of road vehicle used for transporting goods or people. It carries an Internal Combustion engine, Code E, and a Wheeled propulsion system, Code E, giving a top speed of 100 kph, a cruising speed of 75 kph and an Agility DM of +3. 72 liters of hydrocarbons support the power plant for 10 hours. This vehicle is equipped with Basic controls. There is an extended cockpit. Cargo capacity is 9.83 kiloliters. The vehicle requires a crew of one: the driver. The vehicle can carry another passenger in the cockpit. The vehicle costs KCr6.540 (including discounts and fees) and takes 18 hours to build.
</p>
<table class="table table-bordered table-striped table-hover table-responsive-md">
<caption>Table: TL5 Van Design Specifications</caption>
<thead class="thead-light">
<tr>
<th>Category</th>
<th>Component</th>
<th>Spaces</th>
<th>Price(Cr)</th>
<th>Notes</th>
</tr>
</thead>
<tr>
<th>Chassis</th>
<td>Base</td>
<td>24</td>
<td>3550</td>
<td>Code 6</td>
</tr>
<tr>
<th></th>
<td>Configuration</td>
<td></td>
<td></td>
<td>Closed</td>
</tr>
<tr>
<th>Power Plant</th>
<td>Internal Combustion</td>
<td>-7.5</td>
<td>71.25</td>
<td>Code E</td>
</tr>
<tr>
<th>Propulsion</th>
<td>Wheels</td>
<td>-1.6</td>
<td>1575</td>
<td>Code E</td>
</tr>
<tr>
<th>Fuel</th>
<td>Hydrocarbons</td>
<td>-0.072</td>
<td>59.76</td>
<td>Fuel Capacity = 10 hours</td>
</tr>
<tr>
<th>Controls</th>
<td>Basic</td>
<td>-1</td>
<td>0</td>
<td>Included in Chassis Price</td>
</tr>
<tr>
<th>Accommodations</th>
<td>Extended Cockpit</td>
<td>-4</td>
<td>2000</td>
<td>Two crew (pilot, passenger)</td>
</tr>
<tr>
<th>Cargo</th>
<td></td>
<td>-9.828</td>
<td></td>
<td></td>
</tr>
<tr>
<th>TOTALS</th>
<td></td>
<td>0</td>
<td>7256.01</td>
<td>Cr6,540 with Std Design Discount</td>
</tr>
</table>
</div>
</div>
</main>
<footer class="footer fixed-bottom">
<div class="container text-muted text-center">Cepheus Engine System Reference Document, Copyright © 2016 Samardan Press; Author Jason "Flynn" Kemp</div>
</footer>
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa" crossorigin="anonymous"></script>
<script src="https://cdn.rawgit.com/afeld/bootstrap-toc/v1.0.1/dist/bootstrap-toc.min.js"></script>
</body>
</html>