-
Notifications
You must be signed in to change notification settings - Fork 12
/
character-creation.html
3256 lines (3193 loc) · 118 KB
/
character-creation.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
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Cepheus Engine SRD - Character Creation</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/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 active">
<a class="nav-link dropdown-toggle active" 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 active" 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">
<a class="nav-link dropdown-toggle" 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" 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 1: Character Creation</h1>
<p class="lead">
Cepheus Engine characters are rarely beginners fresh from the farm. There is no reason not to play a young and inexperienced character if you like, but since a broad range of skills is important to success in the game most players will want their character to be a little more experienced in the world.
</p>
<p>
All characters begin at the age of majority, typically 18. Having generated characteristic scores and background skills, the character should begin serving terms in his or her chosen career. Each 4-year term spent in a career gives the character more experience in the universe, generally in the form of skills. Generate the results of each term before proceeding to the next. At the end of a period of service, characters roll for benefits gained upon "mustering out" (i.e. leaving the service). They may then begin adventuring.
</p>
<p>
This chapter provides complete instructions for the generation of twenty-four distinct career paths.
</p>
<h2>Character Creation Checklist</h2>
<ol>
<li>
<a href="#characteristics">Characteristics</a>
<ol type="a">
<li>Roll your six characteristics using 2D6, and place them in order on your character sheet.</li>
<li>Determine <a href="#characteristic-modifiers">characteristic modifiers</a>.</li>
</ol>
</li>
<li>
Homeworld (Optional)
<ol type="a">
<li>Determine homeworld.</li>
<li>Gain <a href="#background-skills">background skills</a>. Character gains a number of background skills at Level 0 equal to 3 + their Education modifier. The first two have to be taken from your homeworld (based on the world's trade codes or law level); the rest are taken from the education list.</li>
</ol>
</li>
<li>
<a href="#careers">Career</a>
<ol type="a">
<li>Choose a career. You cannot choose a career you've already left except Drifter.</li>
<li>Roll to qualify for that career, as indicated in the description of the career. If this is not your first career, you suffer a –2 DM for every previous career in which you have served.</li>
<li>If you qualify for this career, go to step 4.</li>
<li>If you do not qualify for that career, you can enter the Drifter career or <a href="#draft">submit to the draft</a>. You may only enter the draft once.</li>
</ol>
</li>
<li>
<a href="#basic-training">Basic training</a>
<ul>
<li>For your first term in your first career, you get every skill in the service skills table at level 0.</li>
<li>For your first term in subsequent careers, you may pick any one skill from the service skills table at level 0.</li>
</ul>
</li>
<li>
<a href="#survival">Survival</a>
<ul>
<li>Roll for survival, as indicated in the description of the career.</li>
<li>If you succeed, go to step 8.</li>
<li>If you did not succeed, you have died. Alternately, events have forced you from this career. Roll on the <a href="#mishap-table">mishap table</a> and go to step 10 (you do not receive a benefit roll for this term.)</li>
</ul>
</li>
<li>
<a href="#commission-and-advancement">Commission and Advancement</a>
<ol type="a">
<li>You begin as a Rank 0 character.</li>
<li>If your career offers a Commission check and you are Rank 0, you can choose to roll for Commission. If you are successful, you are now Rank 1 in your chosen career. Choose one of the skills and training tables and roll on it for an extra skill. Take any bonus skills from the ranks table for this career.</li>
<li>If your career offers an Advancement check and you are Rank 1 or higher, you can choose to roll for Advancement. If you are successful, your Rank improves by one in your chosen career. Choose one of the skills and training tables and roll on it for an extra skill. Take any bonus skills from the ranks table for this career. You can roll for Advancement in the same term that you succeed in a Commission roll.</li>
</ol>
</li>
<li>
<a href="#skills-and-training">Skills and Training</a>
<ol type="a">
<li>Choose one of the Skills and Training tables for this career and roll on it. If you gain a characteristic improvement as a result, apply the change to your characteristic score immediately. If you gain a skill as a result and you do not already have levels in that skill, take it at level 1. If you already have the skill, increase your skill by one level.</li>
<li>If your career does not have a Commission or Advancement check, you may roll a second time, choose one of the Skills and Training tables for this career (which may be the same or different from the first table chosen for this term.)</li>
</ol>
</li>
<li>
<a href="#aging">Aging</a>
<ol type="a">
<li>Increase your age by 4 years.</li>
<li>If your character is 34 or older, roll for aging.</li>
</ol>
</li>
<li>
<a href="#reenlistment-and-retirement">Re-enlistment</a>
<ol type="a">
<li>Roll for re-enlistment. If you fail, you must leave this career. If you roll a natural 12, you cannot leave this career and must continue for another term, go to step 5.</li>
<li>If you have served a total of seven terms or more in character creation, then you must retire, go to step 10.</li>
<li>If you wish to continue in this career, go to step 5.</li>
<li>If you wish to leave this career, go to step 10.</li>
</ol>
</li>
<li>
<a href="#mustering-out-benefits">Benefits</a>
<ul>
<li>If you are leaving the career, roll for benefits. A character gets one Benefit Roll for every full term served in that career. You also get extra benefit rolls if you reached a higher rank.</li>
</ul>
</li>
<li>
<a href="#careers">Next Career</a>
<ul>
<li>If you're leaving your current career and your total number of terms in character creation is less than seven, you may go to step 3 to choose a new career or to step 12 if you wish to finish your character.</li>
</ul>
</li>
<li>
<a href="equipment.html">Buy starting equipment</a>
<ul>
<li>Purchase your starting equipment and, if you can afford it, possibly a starship.</li>
</ul>
</li>
</ol>
<h2 id="characteristics">Characteristics</h2>
<p>
Characteristics measure a character's most basic abilities: how strong, dexterous, educated or intelligent he is. Characteristic scores influence almost everything your character does. Stronger characters can lift greater weights, more dexterous characters have better balance, and so forth.
</p>
<p>
Characters have six abilities: Strength (Str), Dexterity (Dex), Endurance (End), Intelligence (Int), Education (Edu), and Social Standing (Soc). Strength, Dexterity, and Endurance are called physical abilities, whereas Intelligence, Education, and Social Standing are loosely termed mental abilities. Each above-average ability score provides a bonus on certain die rolls; while below average abilities apply a penalty to some die rolls.
</p>
<p>
The six characteristics for your character are briefly described as follows:
</p>
<dl>
<dt>Strength (Str)</dt>
<dd>A character's physical strength, fitness and forcefulness.</dd>
<dt>Dexterity (Dex)</dt>
<dd>Physical co-ordination and agility, reflexes.</dd>
<dt>Endurance (End)</dt>
<dd>A character's ability to sustain damage, stamina and determination.</dd>
<dt>Intelligence (Int)</dt>
<dd>A character's intellect and quickness of mind.</dd>
<dt>Education (Edu)</dt>
<dd>A measure of a character's learning and experience.</dd>
<dt>Social Standing (Soc)</dt>
<dd>A character's place in society</dd>
</dl>
<h3>Social Standing and Noble Titles</h3>
<p>
In a Cepheus Engine universe where characters of sufficiently high Social Standing characteristic scores are considered nobility, specific values of Social Standing are often associated with specific titles of nobility. The Titles of Nobility by Social Standing table captures some examples, but actual values may vary from universe to universe. Versions of these titles traditionally given to the female gender are provided in parentheses.
</p>
<table class="table table-bordered table-striped table-hover table-responsive-md">
<caption>Table: Titles of Nobility by Social Standing</caption>
<thead class="thead-light">
<tr>
<th>Social Standing</th>
<th>Title of Nobility</th>
</tr>
</thead>
<tr>
<th>10 (A)</th>
<td>Lord (Lady)</td>
</tr>
<tr>
<th>11 (B)</th>
<td>Knight (Knightess, Dame)</td>
</tr>
<tr>
<th>12 (C)</th>
<td>Baron (Baroness), Baronet</td>
</tr>
<tr>
<th>13 (D)</th>
<td>Marquis (Marquesa, Marchioness)</td>
</tr>
<tr>
<th>14 (E)</th>
<td>Count (Countess)</td>
</tr>
<tr>
<th>15 (F)</th>
<td>Duke (Duchess)</td>
</tr>
<tr>
<th>16 (G)</th>
<td>Archduke (Archduchess)</td>
</tr>
<tr>
<th>17 (H)</th>
<td>Crown Prince (Crown Princess)</td>
</tr>
<tr>
<th>18 (J)</th>
<td>Emperor (Empress)</td>
</tr>
</table>
<h3>Psionic Strength, the Seventh Characteristic</h3>
<p>
Within the Cepheus Engine, characters can sometimes have a seventh characteristic score. When a character learns psionics, they generate a Psionic Strength characteristic (abbreviation Psi), which powers their psionic talents. This characteristic cannot be rolled or bought during character creation without the Referee's permission. For more information on this topic, see <a href="psionics.html">Chapter 3: Psionics</a>.
</p>
<h3>Generating Characteristic Scores</h3>
<p>
Generating characteristics scores is fairly straightforward. Roll your six characteristics using 2D6, and record them in the standard order: Strength (Str), Dexterity (Dex), Endurance (End), Intelligence (Int), Education (Edu), and Social Standing (Soc).
</p>
<p>
<b>Optional Rule:</b> With the Referee's approval, roll 2D6 six times, and assign the results to the six different characteristic scores based on a particular character concept. For example, if you picture your character as a highly-educated researcher, then you might assign your highest result to Education, and assign your second highest to Intelligence.
</p>
<p>
<b>Characteristic Score Limits:</b> For player characters, a characteristic score may not typically exceed a maximum of 15, nor may a score drop permanently below 1 except under certain circumstances.
</p>
<h3 id="characteristic-modifiers">Characteristic Modifiers</h3>
<p>
Once you have assigned your characteristic scores, you can determine your characteristic modifiers. These modifiers are applied to any check when you do something related to that characteristic. An ability score modifier is calculated by dividing the ability score by three, dropping all fractions, and then subtracting two, so that the average characteristic score of 7 has a DM+0. Thus, a characteristic value of 2 or less has a modifier of DM-2, characteristic values of 3 to 5 have a modifier of DM-1, and so on. The Characteristic Modifier by Score Range table provides a synopsis of these modifiers, already calculated for you.
</p>
<table class="table table-bordered table-striped table-hover table-responsive-md">
<caption>Table: Characteristic Modifier by Score Range</caption>
<thead class="thead-light">
<tr>
<th>Score Range</th>
<th>PseudoHex</th>
<th>Characteristic Modifier</th>
</tr>
</thead>
<tr>
<th>0 through 2</th>
<td>0-2</td>
<td>-2</td>
</tr>
<tr>
<th>3 through 5</th>
<td>3-5</td>
<td>-1</td>
</tr>
<tr>
<th>6 through 8</th>
<td>6-8</td>
<td>+0</td>
</tr>
<tr>
<th>9 through 11</th>
<td>9-B</td>
<td>+1</td>
</tr>
<tr>
<th>12 through 14</th>
<td>C-E</td>
<td>+2</td>
</tr>
<tr>
<th>15 through 17</th>
<td>F-H</td>
<td>+3</td>
</tr>
<tr>
<th>18 through 20</th>
<td>J-L</td>
<td>+4</td>
</tr>
<tr>
<th>21 through 23</th>
<td>M-P</td>
<td>+5</td>
</tr>
<tr>
<th>24 through 26</th>
<td>Q-S</td>
<td>+6</td>
</tr>
<tr>
<th>27 through 29</th>
<td>T-V</td>
<td>+7</td>
</tr>
<tr>
<th>30 through 32</th>
<td>W-Y</td>
<td>+8</td>
</tr>
<tr>
<th>33 or higher</th>
<td>Z</td>
<td>+9</td>
</tr>
</table>
<h3>Altering Characteristic Scores</h3>
<p>
Over the course of play, your character's characteristic scores may change for the following reasons:
</p>
<ul>
<li>Aging can permanently lower physical characteristic scores.</li>
<li>Physical damage, such as from combat, falling, disease or poison, temporarily lowers physical characteristic scores.</li>
<li>Mental trauma, such as head injuries and psionic attack, temporarily lowers mental characteristic scores.</li>
<li>Certain medications, psionic enhancements, and other scenarios can temporarily or permanently enhance specific characteristic scores.</li>
</ul>
<p>
Whenever a characteristic score changes, you will need to determine the new characteristic modifier.
</p>
<h3>On Gender and Race</h3>
<p>
The core Cepheus Engine rules make no distinctions between different members of the same species, regardless of gender or race. In the realm of classic science fiction literature, heroes came in many different flavors and capacities, and were generally unhindered by their gender or the color of their skin.
</p>
<p>
Alien species may have additional gender choices that can impact a character's characteristic scores and grant specific abilities or traits based on gender selection. For example, if an insectoid species has four genders (queen, soldier, worker and drone), each might grant different characteristic bonuses or penalties that impact character creation. The definition of alien species lies in the realm of the Referee's powers of creativity, as befits the nature of their campaign and universe.
</p>
<h3>On Alien Species and Social Standing</h3>
<p>
Alien species may have different criteria for Social Standing: Caste or Charisma. When dealing with a race that has a different concept of Social Standing, all DMs from Social Standing or its alien equivalent – whether positive or negative – are halved.
</p>
<h2>The Universal Persona Profile (UPP)</h2>
<p>
The Cepheus Engine utilizes a concise format to encapsulate data on an individual character's characteristic scores in a manner that, with a little practice, can be quickly and easily read. The specifics of the Universal Persona Profile can be found below:
</p>
<blockquote class="blockquote">
<code class="d-block bg-dark text-white text-center">
123456, or 123456-7 for psionic characters
</code>
</blockquote>
<h3>The Explanation</h3>
<p>
The numbers represent the position of a pseudo-hexadecimal notation of an individual's characteristic scores. These scores are, in order:
</p>
<ol>
<li><b>Strength</b> (Str)</li>
<li><b>Dexterity</b> (Dex)</li>
<li><b>Endurance</b> (End)</li>
<li><b>Intelligence</b> (Int)</li>
<li><b>Education</b> (Edu)</li>
<li><b>Social Standing</b> (Soc)</li>
<li><b>Psionic Strength</b> (Psi)</li>
</ol>
<p>
For example, if a character has the following characteristic scores:
</p>
<p>
Strength 6, Dexterity 8, Endurance 7, Intelligence 11, Education 9, Social Standing 12
</p>
<p>
Then the character's UPP would be <code class="d-inline-block bg-dark text-white">687B9C</code>. If the character later tested for Psionics, and ended up with a Psionic Strength of 4, the UPP would then become <code class="d-inline-block bg-dark text-white">687B9C-4</code>.
</p>
<h2>Universal Character Format</h2>
<p>
The following format is used to represent a character's basic game statistics in the Cepheus Engine rules.
</p>
<blockquote class="blockquote">
<pre>
[Character Name, with rank and/or noble title, if appropriate] [Character UPP] Age [Character Age]
[Character Careers, with terms listed in parentheses] Cr[Character Funds]
[Character Skill List, in alphabetical order, with skill levels listed after skill names]
[Species Traits, if not human; optional]
[Character Equipment, if available; list only significant property]
</pre>
</blockquote>
<p>
Here is an example of a system-wide human celebrity that has been entertaining his holovid fans for almost two decades with his heroic action movies:
</p>
<blockquote class="blockquote">
<pre>
Bruce Ayala 786A9A Age 38
Entertainer (5 terms) Cr70,000
Athletics-1, Admin-1, Advocate-1, Bribery-1, Carousing-3, Computer-2, Gambling-0, Grav Vehicle-0, Liaison-2, Linguistics-0, Streetwise-0
High passage (x2)
</pre>
</blockquote>
<h2 id="background-skills">Background Skills</h2>
<p>
Before embarking on your careers, you get a number of background skills equal to 3 + your Education DM (1 to 5, depending on your Education score).
</p>
<h3>Homeworld Skills</h3>
<p>
Growing up on your homeworld gave you skills that depend on the planet's nature. You can select any skill that matches your homeworld's planetary description and trade codes. If you came from a planet already established in the Referee's universe, then consult those sources for the planet's description.
</p>
<table class="table table-bordered table-striped table-hover table-responsive-md">
<caption>Table: Homeworld Skills by Planetary Description</caption>
<thead class="thead-light">
<tr>
<th>Descriptor</th>
<th>Skill</th>
</tr>
</thead>
<tr>
<th>No Law</th>
<td><a href="skills.html#gun-combat">Gun Combat-0</a></td>
</tr>
<tr>
<th>Low Law</th>
<td><a href="skills.html#gun-combat">Gun Combat-0</a></td>
</tr>
<tr>
<th>Medium Law</th>
<td><a href="skills.html#gun-combat">Gun Combat-0</a></td>
</tr>
<tr>
<th>High Law</th>
<td><a href="skills.html#melee-combat">Melee Combat-0</a></td>
</tr>
</table>
<table class="table table-bordered table-striped table-hover table-responsive-md">
<caption>Table: Homeworld Skills by Trade Code</caption>
<thead class="thead-light">
<tr>
<th>Trade Code</th>
<th>Skill</th>
</tr>
</thead>
<tr>
<th>Agricultural</th>
<td><a href="skills.html#animals">Animals-0</a></td>
</tr>
<tr>
<th>Asteroid</th>
<td><a href="skills.html#zero-g">Zero-G-0</a></td>
</tr>
<tr>
<th>Desert</th>
<td><a href="skills.html#survival">Survival-0</a></td>
</tr>
<tr>
<th>Fluid Oceans</th>
<td><a href="skills.html#watercraft">Watercraft-0</a></td>
</tr>
<tr>
<th>Garden</th>
<td><a href="skills.html#animals">Animals-0</a></td>
</tr>
<tr>
<th>High Technology</th>
<td><a href="skills.html#computer">Computer-0</a></td>
</tr>
<tr>
<th>High Population</th>
<td><a href="skills.html#streetwise">Streetwise-0</a></td>
</tr>
<tr>
<th>Ice-Capped</th>
<td><a href="skills.html#zero-g">Zero-G-0</a></td>
</tr>
<tr>
<th>Industrial</th>
<td><a href="skills.html#broker">Broker-0</a></td>
</tr>
<tr>
<th>Low Technology</th>
<td><a href="skills.html#survival">Survival-0</a></td>
</tr>
<tr>
<th>Poor</th>
<td><a href="skills.html#animals">Animals-0</a></td>
</tr>
<tr>
<th>Rich</th>
<td><a href="skills.html#carousing">Carousing-0</a></td>
</tr>
<tr>
<th>Water World</th>
<td><a href="skills.html#watercraft">Watercraft-0</a></td>
</tr>
<tr>
<th>Vacuum</th>
<td><a href="skills.html#zero-g">Zero-G-0</a></td>
</tr>
</table>
<h3>Primary Education Skills</h3>
<p>
A formal education gives you a basic level of competence in various sciences and academic disciplines. Any character may choose from the following list:
</p>
<ul class="list-inline pl-4">
<li class="list-inline-item"><a href="skills.html#admin">Admin-0</a></li>
<li class="list-inline-item"><a href="skills.html#advocate">Advocate-0</a></li>
<li class="list-inline-item"><a href="skills.html#animals">Animals-0</a></li>
<li class="list-inline-item"><a href="skills.html#carousing">Carousing-0</a></li>
<li class="list-inline-item"><a href="skills.html#comms">Comms-0</a></li>
<li class="list-inline-item"><a href="skills.html#computer">Computer-0</a></li>
<li class="list-inline-item"><a href="skills.html#electronics">Electronics-0</a></li>
<li class="list-inline-item"><a href="skills.html#engineering">Engineering-0</a></li>
<li class="list-inline-item"><a href="skills.html#life-sciences">Life Sciences-0</a></li>
<li class="list-inline-item"><a href="skills.html#linguistics">Linguistics-0</a></li>
<li class="list-inline-item"><a href="skills.html#mechanics">Mechanics-0</a></li>
<li class="list-inline-item"><a href="skills.html#medicine">Medicine-0</a></li>
<li class="list-inline-item"><a href="skills.html#physical-sciences">Physical Sciences-0</a></li>
<li class="list-inline-item"><a href="skills.html#social-sciences">Social Sciences-0</a></li>
<li class="list-inline-item"><a href="skills.html#space-sciences">Space Sciences-0</a></li>
</ul>
<h2 id="careers">Careers</h2>
<p>
Characters in the Cepheus Engine do not start at the age of majority and jump immediately into play with only their background skills. Instead, characters gain experience by pursuing one of twenty-four different careers. The random nature of career paths (also known as prior history or prior careers) leads to characters of all levels of experience, and from all walks of life. A character gains more skills the longer they stay in character creation, but not without risk of aging. Player choices will have great impact on the final disposition of a character.
</p>
<p>
At many points during a career, a character will have to make a throw of some sort. Most of these throws are characteristic throws – roll 2D6, add the DM from the listed characteristic, and try to get a total higher than the listed value. A throw of Int 8+ means ‘roll 2D6, add your Intelligence DM, and you succeed if you roll an 8 or more'. A few throws are skill checks, where you add any levels in that skill and the DM from an appropriate characteristic, if specified. For example, a throw of Gambling 8+ would mean ‘roll 2D6, add your Gambling skill and the DM from an appropriate characteristic such as Dexterity, if specified, and get over 8'.
</p>
<h3>Career Descriptions</h3>
<p>
The following twenty-four career paths are detailed at the end of this chapter:
</p>
<dl>
<dt>Aerospace System Defense</dt>
<dd>Member of a planetary armed military force operating within a world's atmosphere and close orbit. Also known as the "planetary air force".</dd>
<dt>Agent</dt>
<dd>Individual that secretly collects and reports information on the activities, movements and plans of a political or corporate enemy or competitor. Also known as a spy or intelligence operative.</dd>
<dt>Athlete</dt>
<dd>Individual that has achieved celebrity status for their proficiency in sports and other forms of physical exercise.</dd>
<dt>Barbarian</dt>
<dd>Individual from a primitive world (TL4 or less) capable of surviving on their world without support from a technologically advanced civilization.</dd>
<dt>Belter</dt>
<dd>Individual that explores asteroid belts in search of mineral deposits and salvageable material for profit.</dd>
<dt>Bureaucrat</dt>
<dd>Official in a government department, charged with following the details of administrative process.</dd>
<dt>Colonist</dt>
<dd>Individual that moves to a new world or settles in a new planetary colony.</dd>
<dt>Diplomat</dt>
<dd>Individual that is appointed by a planetary or interstellar government to conduct official negotiations and maintain political, economic and social relations with another polity or polities.</dd>
<dt>Drifter</dt>
<dd>Individual that continually moves from place to place, without any fixed home or job. </dd>
<dt>Entertainer</dt>
<dd>Individual that has achieved celebrity status for their proficiency in publicly entertaining others.</dd>
<dt>Hunter</dt>
<dd>Individual that kills or traps large game, almost always large terrestrial mammals, for meat, other animal by-products (such as horn or bone), trophy or sport. </dd>
<dt>Marine</dt>
<dd>Member of an interstellar armed military force trained to serve in a variety of environments, often carried on board starships as an adjunct to an interstellar navy. Also known as the "space marines".</dd>
<dt>Maritime System Defense</dt>
<dd>Member of a planetary armed military force operating within and on the surface of a world's oceans. Also known as the "planetary wet navy".</dd>
<dt>Mercenary</dt>
<dd>Professional soldier hired to serve in a foreign military force or perform a specific military action.</dd>
<dt>Merchant</dt>
<dd>Individual involved in wholesale interstellar trade, particularly between individual worlds or polities.</dd>
<dt>Navy</dt>
<dd>Member of an interstellar armed military force that conducts military operations in interplanetary or interstellar space. Also known as the "space navy".</dd>
<dt>Noble</dt>
<dd>Member of an elite upper class, having high social or political status.</dd>
<dt>Physician</dt>
<dd>Individual that is skilled in the science of medicine and is trained and licensed to treat sick and injured people.</dd>
<dt>Pirate</dt>
<dd>Individual that attacks and steals from interplanetary and interstellar ships in space.</dd>
<dt>Rogue</dt>
<dd>Individual that makes their living through illicit means.</dd>
<dt>Scientist</dt>
<dd>Individual that is engaged in and has expert knowledge of a science, especially a biological or physical science.</dd>
<dt>Scout</dt>
<dd>Member of an interplanetary exploratory service, surveying unfamiliar territory in space.</dd>
<dt>Surface System Defense</dt>
<dd>Member of a planetary armed military force operating on the non-hydrographic surface of a world. Also known as the "planetary army".</dd>
<dt>Technician</dt>
<dd>Individual that is skilled in mechanical or industrial techniques or in a particular technical field.</dd>
</dl>
<h3 id="draft">Qualifying and the Draft</h3>
<p>
The Qualification check determines if you can successfully enter into your chosen career. Military careers use Enlistment as the description for this roll instead of qualification. If you fail this check then you cannot enter your chosen career this term. You must either submit to the Draft or take the Drifter career for this term. You suffer a DM–2 to qualification rolls for each previous career you have entered. Once you leave a career you cannot return to it. The Draft and the Drifter career are exceptions to this rule – you can be Drafted into a career you were previously in but got ejected from, and the Drifter career is always open.
</p>
<table class="table table-bordered table-striped table-hover table-responsive-md">
<caption>Table: The Draft</caption>
<thead class="thead-light">
<tr>
<th>Roll</th>
<th>Draft Career</th>
</tr>
</thead>
<tr>
<th>1</th>
<td>Aerospace System Defense (Planetary Air Force)</td>
</tr>
<tr>
<th>2</th>
<td>Marine</td>
</tr>
<tr>
<th>3</th>
<td>Maritime System Defense (Planetary Navy)</td>
</tr>
<tr>
<th>4</th>
<td>Navy</td>
</tr>
<tr>
<th>5</th>
<td>Scout</td>
</tr>
<tr>
<th>6</th>
<td>Surface System Defense (Planetary Army)</td>
</tr>
</table>
<h2>Terms of Service</h2>
<p>
Each step through the cycle of resolving your career path, you will go through a term of service that lasts approximately four years long. This adds four years to the character's age. Each time the character reenlists, or enters into a new career, it is for another term, or four additional years of service.
</p>
<h2 id="basic-training">Basic Training</h2>
<p>
On the first term of a new career, you gain Basic Training as you learn the basics for your chosen career. For your first career only, you get all the skills listed in the Service Skills table at Level 0 as your basic training. For any subsequent careers, you may pick any one skill listed in the Service Skills table at Level 0 as your basic training.
</p>
<h2 id="survival">Survival</h2>
<p>
Each career has a survival roll. If you fail this roll, your character is dead, and you must create a new one. A natural 2 is always a failure.
</p>
<p>
<b>Optional Rule:</b> With the Referee's approval, you can keep the character that fails a survival roll and roll on the Survival Mishaps table instead. This mishap is always enough to force you to leave the service after half a term, or two years of service. You lose the benefit roll for the current term only.
</p>
<table class="table table-bordered table-striped table-hover table-responsive-md">
<caption>Table: Survival Mishaps</caption>
<thead class="thead-light">
<tr>
<th>1D6</th>
<th>Mishaps</th>
</tr>
</thead>
<tr>
<th>1</th>
<td>Injured in action. (This is the same as a result of 2 on the Injury table.) Alternatively, roll twice on the Injury table and take the lower result.</td>
</tr>
<tr>
<th>2</th>
<td>Honorably discharged from the service.</td>
</tr>
<tr>
<th>3</th>
<td>Honorably discharged from the service after a long legal battle. Legal issues create a debt of Cr10,000.</td>
</tr>
<tr>
<th>4</th>
<td>Dishonorably discharged from the service. Lose all benefits.</td>
</tr>
<tr>
<th>5</th>
<td>Dishonorably discharged from the service after serving an extra 4 years in prison for a crime. Lose all benefits.</td>
</tr>
<tr>
<th>6</th>
<td>Medically discharged from the service. Roll on the Injury table.</td>
</tr>
</table>
<h2 id="commission-and-advancement">Commission and Advancement</h2>
<p>
Within military careers, a Commission check represents an opportunity to join the ranks of the commissioned officers. In non-military careers, the Commission check represents an opportunity to gain a position within the hierarchy common to your chosen career. Some careers do not have an established hierarchy, as such, and so do not offer Commission checks. A character that succeeds at a Commission roll becomes a Rank 1 officer in that career, and uses the officer Rank table from then on. In addition, you gain an extra roll on any of the Skills and Training Tables for this career. A character may attempt a Commission roll once per term, and trying for commission is optional. A draftee may not attempt a Commission check in the first term of service.
</p>
<p>
Each career that has a commission check also has an Advancement roll, representing your character's ability to advance with the ranks of your chosen career's hierarchy. If you are Rank 1 or higher, you may attempt an Advancement roll each term. If you are successful, then you move to the next rank and gain an extra roll on any of the Skills and Training Tables for this career. You also get any benefits listed for your new rank. You may only attempt to advance once per term, and you may attempt to advance in the same term in which you are commissioned.
</p>
<p>
Commissions and advancement are not available in the Athlete, Barbarian, Belter, Drifter, Entertainer, Hunter and Scout careers.
</p>
<h2 id="skills-and-training">Skills and Training</h2>
<p>
Each career has skill tables associated with it – Personal Development, Service Skills, Specialist Skills and Advanced Education. In each term you spend in a career, pick one of these tables and roll 1D6 to see which skill you increase. You may only roll on the Advanced Education table if your character has Education 8+.
</p>
<p>
Because the Athlete, Barbarian, Belter, Drifter, Entertainer, Hunter and Scout careers do not have commission or advancement checks, characters get to make two rolls for skills instead of one every term.
</p>
<h3>Cascade Skills</h3>
<p>
Some skills are "cascade skills" meaning that they have specializations – specialized forms of that skill. When a cascade skill is selected, the character must immediately decide on a specialization. Each cascade skill will list one or more specializations that may be chosen from. Upon taking a level in a cascade skill specialization, all other specializations of that skill without skill levels are treated as Zero-level skills. A character may have multiple specializations in a skill, such as Natural Weapons-2 and Slashing Weapons-1, under Melee Combat.
</p>
<h2 id="injuries">Injuries</h2>
<p>
Characters that are wounded in combat or accidents during character creation must roll on the Injury table.
</p>
<table class="table table-bordered table-striped table-hover table-responsive-md">
<caption>Table: Injury Table</caption>
<thead class="thead-light">
<tr>
<th>1D6</th>
<th>Injury</th>
</tr>
</thead>
<tr>
<th>1</th>
<td>Nearly killed. Reduce one physical characteristic by 1D6, reduce both other physical characteristics by 2 (or one of them by 4).</td>
</tr>
<tr>
<th>2</th>
<td>Severely injured. Reduce one physical characteristic by 1D6.</td>
</tr>
<tr>
<th>3</th>
<td>Missing eye or limb. Reduce Strength or Dexterity by 2.</td>
</tr>
<tr>
<th>4</th>
<td>Scarred. You are scarred and injured. Reduce any one physical characteristic by 2.</td>
</tr>
<tr>
<th>5</th>
<td>Injured. Reduce any physical characteristic by 1.</td>
</tr>
<tr>
<th>6</th>
<td>Lightly injured. No permanent effect.</td>
</tr>
</table>
<h3>Injury Crisis</h3>
<p>
If any characteristic is reduced to 0, then the character suffers an injury crisis. The character dies unless he can pay 1D6x10,000 Credits for medical care, which will bring any characteristics back up to 1. The character automatically fails any Qualification checks from now on – he must either continue in the career he is in or become a Drifter if he wishes to take any more terms.
</p>
<h3>Medical Care</h3>
<p>
If your character has been injured, then medical care may be able to undo the effects of damage. The restoration of a lost characteristic costs Cr5,000 per point.
</p>
<p>
If your character was injured in the service of a patron or organization, then a portion of his medical care may be paid for by that patron. Roll 2D6 on the table below, adding your Rank as a DM. The result is how much of his medical care is paid for by his employer.
</p>
<table class="table table-bordered table-striped table-hover table-responsive-md">
<caption>Table: Medical Bills</caption>
<thead class="thead-light">
<tr>
<th>Career</th>
<th>Roll of 4+</th>
<th>Roll of 8+</th>
<th>Roll of 12+</th>
</tr>
</thead>
<tr>
<th>Aerospace System Defense, Marine, Maritime System Defense, Navy, Scout, Surface System Defense</th>
<td>75%</td>
<td>100%</td>
<td>100%</td>
</tr>
<tr>
<th>Agent, Athlete, Bureaucrat, Diplomat, Entertainer, Hunter, Mercenary, Merchant, Noble, Physician, Pirate, Scientist, Technician</th>
<td>50%</td>
<td>75%</td>
<td>100%</td>
</tr>
<tr>
<th>Barbarian, Belter, Colonist, Drifter, Rogue</th>
<td>0%</td>
<td>50%</td>
<td>75%</td>
</tr>
</table>
<h3>Medical Debt</h3>
<p>
During finishing touches, you must pay any outstanding costs from medical care or anagathic drugs out of your Benefits before anything else.
</p>
<h2 id="aging">Aging</h2>
<p>
The effects of aging begin when a character reaches 34 years of age. At the end of the fourth term, and at the end of every term thereafter, the character must roll 2D6 on the Aging Table. Apply the character's total number of terms as a negative Dice Modifier on this table.
</p>
<table class="table table-bordered table-striped table-hover table-responsive-md">
<caption>Table: Aging Table</caption>
<thead class="thead-light">
<tr>
<th>2D6</th>
<th>Effects of Aging</th>
</tr>
</thead>
<tr>
<th>-6</th>
<td>Reduce three physical characteristics by 2, reduce one mental characteristic by 1</td>
</tr>
<tr>
<th>-5</th>
<td>Reduce three physical characteristics by 2.</td>
</tr>
<tr>
<th>-4</th>
<td>Reduce two physical characteristics by 2, reduce one physical characteristic by 1</td>
</tr>
<tr>
<th>-3</th>
<td>Reduce one physical characteristic by 2, reduce two physical characteristic by 1</td>
</tr>
<tr>
<th>-2</th>
<td>Reduce three physical characteristics by 1</td>
</tr>
<tr>
<th>-1</th>
<td>Reduce two physical characteristics by 1 </td>
</tr>
<tr>
<th>0</th>
<td>Reduce one physical characteristic by 1</td>
</tr>
<tr>
<th>1+</th>
<td>No effect</td>
</tr>
</table>
<h3>Aging Crisis</h3>
<p>
If any characteristic is reduced to 0 by aging, then the character suffers an aging crisis. The character dies unless he can pay 1D6x10,000 Credits for medical care, which will bring any characteristics back up to 1. The character automatically fails any Qualification checks from now on – he must either continue in the career he is in or become a Drifter if he wishes to take any more terms.
</p>
<h3>Anagathics</h3>
<p>
While using anagathic drugs, the character effectively does not age – add the number of terms since the character started taking anagathics as a positive Dice Modifier to rolls on the aging table. If a character stops taking anagathics, then he must roll immediately on the aging table to simulate the shock that comes from his system beginning to age again.
</p>
<p>
The risk of trying to obtain a reliable supply and the disruption to the character's biochemistry means the character must make a second Survival check if he passes his first Survival check in a term. If either check is failed, the character suffers a mishap and is ejected from the career.
</p>
<p>
The drugs cost 1D6x2,500 Credits for each term that the character uses the drugs. These costs are paid out of the character's eventual mustering-out cash benefits. If the character cannot pay these bills, he goes into debt.
</p>
<h2 id="reenlistment-and-retirement">Reenlistment and Retirement</h2>
<p>
At the end of each term, the character must decide that they wish to continue on their career path or if they wish to muster out. If continuation is desired, the character must make a successful Reenlistment check as listed for their current profession or service. If the character rolls a natural 12, they cannot leave their current career and must continue for another term. If the check is not successful, then they cannot reenlist and the character must leave their current career.
</p>
<p>
A character that has served 7 or more terms in character creation must retire and cannot undertake any more prior experience, unless they roll a natural 12 during Reenlistment and must serve another term of service.
</p>
<p>
<b>Optional Rule:</b> The Referee may want to change the maximum number of terms spent in character creation from 7 to something else. For example, the Referee may feel that characters built up to a maximum of 3 or even 4 terms are in the prime of their life, but not so experienced that they won't take up adventuring opportunities as they are presented.
</p>
<p>
<b>Optional Rule:</b> In some universes, the Referee may elect to totally remove the maximum number of terms spent in character creation.
</p>
<p>
A character who has served 5 or more terms in a single service receives a yearly retirement pension, even if he or she later becomes an adventurer.
</p>
<table class="table table-bordered table-striped table-hover table-responsive-md">
<caption>Table: Retirement Pay by Terms Served</caption>
<thead class="thead-light">
<tr>
<th>Terms</th>
<th>Annual Retirement Pay</th>
</tr>
</thead>
<tr>
<th>5</th>
<td>Cr10,000</td>
</tr>
<tr>
<th>6</th>
<td>Cr12,000</td>
</tr>
<tr>
<th>7</th>
<td>Cr14,000</td>
</tr>
<tr>
<th>8</th>
<td>Cr16,000</td>
</tr>
<tr>
<th>9+</th>
<td>+Cr2,000 per term beyond 8</td>
</tr>
</table>
<h2 id="mustering-out-benefits">Mustering Out Benefits</h2>
<p>
Characters who end their careers receive one benefit per term served in which they did not lose benefits. An additional benefit is gained if the character held rank O4, and two for rank O5. A character with rank O6 gains three extra benefits.
</p>
<h3>Cash Benefits</h3>
<p>
Up to 3 benefit rolls can be taken on the Cash table. All others must be taken in material benefits. Characters with Gambling skill or who have retired gain +1 on Cash Benefit rolls.
</p>
<h3>Material Benefits</h3>
<p>
Material benefits may be characteristics alterations, passages or ship shares. Membership in the Explorers' Society is possible, and subsequent receipts of weapon benefits may be taken as skill levels instead. Note that characters of rank O5 or O6 gain +1 on Material Benefit rolls.
</p>
<ul>
<li><b>Courier Vessel:</b> The character considered to be on detached duty with the scout exploration service, and has been granted the use of a surplus 100-ton TL9 Courier starship on a reserve basis. The scout exploration service also provides free maintenance and fuel at any scout base. All other ship expenses are the responsibility of the character. While the character is at liberty to use the vessel as they see fit, the vessel still belongs to the scout exploration service, and thus cannot be abandoned or sold without consequences. In exchange for the use of the ship, the character and the ship are both considered to be available to return to active duty at a moment's notice, should the scout exploration service have need.</li>
<li><b>Explorers' Society:</b> The character is a member of the prestigious Explorers' Society. The Explorers' Society will provide members with a free high passage ticket every two months, plus access to the Society's information network and Society-run resorts. This benefit can only be received once; any further receipt of this has no additional benefit. After character creation, characters may purchase membership into the Explorers' Society. A successful application for lifetime membership requires a Routine (-2) Admin check modified by the character's Social Standing, and if accepted, a payment of Cr1,000,000. Failure on the application process indicates the character has been black listed. If a character has been black listed, the Explorers' Society will no longer accept membership applications from them. Membership is non-refundable and non-transferrable.</li>
<li><b>Passage:</b> The character has a single ticket of the type named (low, mid, high) for travel on a starship. It is good for one Jump to any destination.</li>
<li><b>Research Vessel:</b> A scientific foundation, an interstellar corporation or some other equally affluent patron has granted the character the use of a 200-ton TL9 Research Vessel. All ship expenses, other than annual maintenance, are the responsibility of the character. This ship still belongs to the patron, and therefore cannot be sold or abandoned without consequences.</li>
<li><b>Ship Shares:</b> Ship shares may be received as benefits. Each ship share is worth approximately Cr2,000,000 toward the purchase of a vessel. A starship can be purchased for one-fifth of its base value with a 40-year loan attached to it. For every one-fifth of its base value that is paid to the bank in either ship shares or cash, the period of the loan is reduced by ten years. Ship shares may not be redeemed for cash.</li>
<li><b>Weapon:</b> The character leaves the service with an appropriate weapon (gun or blade). Once a weapon is taken as a benefit, additional receipts of the weapon may be taken as skill in that weapon instead. An individual is always free to take additional physical examples of the weapons instead of skill levels, if so desired.</li>
</ul>
<h2 id="career-tables">Career Tables</h2>
<ul class="nav nav-tabs" id="career-tables-tabs" role="tablist">
<li class="nav-item" role="presentation">
<button class="nav-link active" id="career-tables-tabs-athlete-bureaucrat" data-bs-toggle="tab" data-bs-target="#career-tables-tabs-athlete-bureaucrat-table" type="button" role="tab" aria-controls="career-tables-tabs-athlete-bureaucrat" aria-selected="true">Athlete-Bureaucrat</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link" id="career-tables-tabs-colonist-marine" data-bs-toggle="tab" data-bs-target="#career-tables-tabs-colonist-marine-table" type="button" role="tab" aria-controls="career-tables-tabs-colonist-marine" aria-selected="false">Colonist-Marine</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link" id="career-tables-tabs-maritime-defense-physician" data-bs-toggle="tab" data-bs-target="#career-tables-tabs-maritime-defense-physician-table" type="button" role="tab" aria-controls="career-tables-tabs-maritime-defense-physician" aria-selected="false">Maritime Defense-Physician</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link" id="career-tables-tabs-pirate-technician" data-bs-toggle="tab" data-bs-target="#career-tables-tabs-pirate-technician-table" type="button" role="tab" aria-controls="career-tables-tabs-pirate-technician" aria-selected="false">Pirate-Technician</button>
</li>
</ul>
<div class="tab-content" id="career-tables-tab-content">
<div class="tab-pane fade show active" id="career-tables-tabs-athlete-bureaucrat-table" role="tabpanel" aria-labelledby="career-tables-tabs-athlete-bureaucrat">
<table class="table table-bordered table-striped table-hover table-responsive-md">
<thead class="thead-light">
<tr>
<th>Career</th>
<th>Athlete</th>
<th>Aerospace Defense</th>
<th>Agent</th>
<th>Barbarian</th>
<th>Belter</th>
<th>Bureaucrat</th>
</tr>
</thead>
<tr>
<th>Qualifications</th>
<td>End 8+</td>
<td>End 5+</td>
<td>Soc 6+</td>
<td>End 5+</td>
<td>Int 4+</td>