<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://rimworldwiki.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mehni</id>
	<title>RimWorld Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://rimworldwiki.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mehni"/>
	<link rel="alternate" type="text/html" href="https://rimworldwiki.com/wiki/Special:Contributions/Mehni"/>
	<updated>2026-04-06T01:06:01Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.8</generator>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=Modding_Tutorials/Decompiling_source_code&amp;diff=139867</id>
		<title>Modding Tutorials/Decompiling source code</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=Modding_Tutorials/Decompiling_source_code&amp;diff=139867"/>
		<updated>2023-12-24T10:42:39Z</updated>

		<summary type="html">&lt;p&gt;Mehni: included direct link to ILSpy releases to reduce ppl getting baited by green download button&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{BackToTutorials}}&lt;br /&gt;
&lt;br /&gt;
The base game provides a bunch of code snippets in ''../Source/'', relative to your Rimworld installation. Since this isn't a lot, one might want to take a look at the game's full source code. RimWorld's [https://rimworldgame.com/eula/ EULA] allows you to decompile the game for personal use. It's recommended to read it.&lt;br /&gt;
&lt;br /&gt;
The following programs are used and recommended by modders:&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Decompiling source code=&lt;br /&gt;
&lt;br /&gt;
===ILSpy===&lt;br /&gt;
&lt;br /&gt;
ILSpy is generally recommended as it is the best-maintained and most reliable decompiler. The core project only has binaries for Windows, but there is an [https://github.com/icsharpcode/AvaloniaILSpy Avalonia-based port] as well as a [https://github.com/icsharpcode/ILSpy#unix--mac CLI application for Mono framework] for OS X and Linux.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
# Download [http://ilspy.net/ ILSpy] ([https://github.com/icsharpcode/ILSpy/releases Download latest release]) and extract it to a directory of your choosing. Optionally create a desktop shortcut;&lt;br /&gt;
# '''Either''': associate the .dll extension with ILSpy:&lt;br /&gt;
## Navigate to ''Assembly-CSharp.dll'' in ''../Rimworld***_Data/Managed/'', relative to your Rimworld installation and with *** being a version number (See Note on MacOS below);&lt;br /&gt;
## Right-click &amp;quot;Open with&amp;quot; and select a standard program. Navigate to your ILSpy installation and double-click ''ILSpy.exe'', tick the checkbox and accept;&lt;br /&gt;
## Double-click ''Assembly-CSharp.dll'',&lt;br /&gt;
# '''Or''': open ILSpy and open a .dll:&lt;br /&gt;
## Open ILSpy;&lt;br /&gt;
## Go to File -&amp;gt; Open or press Ctrl+O, navigate to ''../Rimworld***_Data/Managed/'', relative to your Rimworld installation and with *** being a version number (See Note on MacOS below);&lt;br /&gt;
## Select ''Assembly-CSharp.dll'' and confirm,&lt;br /&gt;
# Click the &amp;quot;+&amp;quot; next to ''Assembly-CSharp (***)'', you will now see a list including the items ''Rimworld'' and ''Verse'';&lt;br /&gt;
# Take your time to look through the source code, to make yourself familiar. If you ever need the source code, open ILSpy again:&lt;br /&gt;
## Ctrl+Shift+F or Ctrl+E opens the search bar which can be used to search through all loaded assemblies;&lt;br /&gt;
## Ctrl+F opens a search bar for the currently opened decompiled class.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If using CLI application:&lt;br /&gt;
# Despite the instructions saying .NET 5.0 SDK is needed, you may also need [https://dotnet.microsoft.com/download/dotnet/3.1 .NET Core 3.1];&lt;br /&gt;
# It seems that it's possible to simply build from a [https://github.com/icsharpcode/ILSpy/releases release tarball], even if the instructions suggest to use a git checkout;&lt;br /&gt;
# After you've built ILSpy, find the ''ilspycmd'' tool (should be located at ''ICSharpCode.Decompiler.Console/bin/Release/netcoreapp3.1'');&lt;br /&gt;
# Run a command like ''ilspycmd RimWorld/RimWorld*_Data/Managed/Assembly-CSharp.dll -p -o &amp;lt;output directory&amp;gt;'' (use proper paths to RimWorld and for the output directory);&lt;br /&gt;
# The given output directory now contains decompiled sources.&lt;br /&gt;
&lt;br /&gt;
===dnSpy===&lt;br /&gt;
&lt;br /&gt;
dnSpy is an alternative with a Visual Studio editor feel. At the time of this writing, however, the original project has been archived for more than two years and none of its forks have reached a similar level of adoption. Decompilation glitches can occur.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
# Download [https://github.com/0xd4d/dnSpy/releases dnSpy] and extract it somewhere.&lt;br /&gt;
# Open dnSpy.exe. Once it's open, click &amp;quot;open&amp;quot; on the top ribbon (or press Ctrl+O).&lt;br /&gt;
# Navigate to ''../Rimworld***_Data/Managed/'', relative to your Rimworld installation and with *** being a version number.&lt;br /&gt;
# Ctrl+Shift+K to open the search bar.&lt;br /&gt;
# Explore the assembly and look through the source code to your heart's desire.&lt;br /&gt;
&lt;br /&gt;
===Rider / dotPeek===&lt;br /&gt;
&lt;br /&gt;
Rider is a cross-platform IDE with a built-in decompiler. If you're using Rider as your IDE ([[Modding_Tutorials/Setting_up_a_solution#Rider_.28good_for_Mac.29|Setup Instructions]]), you can view the source of any RimWorld class or method by right-clicking its name and clicking Go To &amp;gt; Definition.&lt;br /&gt;
&lt;br /&gt;
The developer of Rider also offers a free standalone decompiler in the form of [https://www.jetbrains.com/decompiler/ dotPeek]. dotPeek is preferred by some for reading IL Code for the purpose of Harmony transpilers, but suffers similar glitches and inconsistency as dnSpy when decompiling back to C# code.&lt;br /&gt;
&lt;br /&gt;
===MonoDevelop===&lt;br /&gt;
&lt;br /&gt;
MonoDevelop is capable of decompiling DLLs, albeit using clumsy initial settings. It is Linux only, otherwise you have to download Xamarin Studio which doesn't have a decompiler.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
# Download [http://www.monodevelop.com/download/ MonoDevelop] and install it;&lt;br /&gt;
# '''Either''': associate the .dll extension with MonoDevelop:&lt;br /&gt;
## Navigate to ''Assembly-CSharp.dll'' in ''../Rimworld***_Data/Managed/'', relative to your Rimworld installation and with *** being a version number (See Note on MacOS below);&lt;br /&gt;
## Right-click &amp;quot;Open with&amp;quot; and select MonoDevelop as standard program;&lt;br /&gt;
## Double-click ''Assembly-CSharp.dll'',&lt;br /&gt;
# '''Or''': open MonoDevelop and open a .dll:&lt;br /&gt;
## Open MonoDevelop;&lt;br /&gt;
## Go to File -&amp;gt; Open, navigate to ''../Rimworld***_Data/Managed/'', relative to your Rimworld installation and with *** being a version number (See Note on MacOS below);&lt;br /&gt;
## Select ''Assembly-CSharp.dll'' and confirm,&lt;br /&gt;
# '''Very important''': search for a dropdown called &amp;quot;Visibility&amp;quot; and change it from &amp;quot;Only public members&amp;quot; to &amp;quot;All members&amp;quot;;&lt;br /&gt;
# '''Very important''': search for a dropdown called &amp;quot;Language&amp;quot; and change it from &amp;quot;Summary&amp;quot; to &amp;quot;C#&amp;quot;;&lt;br /&gt;
# Click the &amp;quot;+&amp;quot; next to ''Assembly-CSharp (***)'', you will now see a list including the items ''Rimworld'' and ''Verse'';&lt;br /&gt;
# Take your time to look through the source code, to make yourself familiar. If you ever need the source code, open ''Assembly-CSharp.dll'' again.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===MacOS Directories===&lt;br /&gt;
&lt;br /&gt;
For Macs, directories are similar but in: ../RimWorldMac.app/Contents/Resources/Data/Managed. &lt;br /&gt;
&lt;br /&gt;
For Steam installed RimWorld, find your app here: ~/Library/Application Support/Steam/steamapps/common/RimWorld/RimWorldMac.app.&lt;br /&gt;
&lt;br /&gt;
=How to make use of a decompiler=&lt;br /&gt;
{{Main|Modding_Tutorials/ThingDef}}&lt;br /&gt;
&lt;br /&gt;
=Tips when decompiling=&lt;br /&gt;
# Right-click any Type or Method and hit &amp;quot;analyse&amp;quot; to obtain more context on that item. 'Used by' and 'Uses' provide a lot of contextual clues which is required to know how things work.&lt;br /&gt;
# RimWorld often uses reflection to instantiate Workers and MakeThings. This means no decompiler will cleanly find what/where an instance of a class is created. Hint: if you find yourself using 'new Pawn()', you're doing it wrong.&lt;br /&gt;
# If you're going in circles trying to find things like &amp;quot;where is X assigned&amp;quot;, odds are you'll need to look at the XML for it. The XML contains the data, C# does things with it.&lt;br /&gt;
&lt;br /&gt;
=See also=&lt;br /&gt;
&lt;br /&gt;
* [[Modding Tutorials/Writing custom code|Writing custom code]] shows a broad overview of C# coding.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Modding tutorials]]&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=Modding_Tutorials/Basic_Melee_Weapon&amp;diff=135151</id>
		<title>Modding Tutorials/Basic Melee Weapon</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=Modding_Tutorials/Basic_Melee_Weapon&amp;diff=135151"/>
		<updated>2023-06-04T20:38:28Z</updated>

		<summary type="html">&lt;p&gt;Mehni: fixed links and formatting&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Basic Melee Weapon}}&lt;br /&gt;
{{BackToTutorials}}&lt;br /&gt;
&lt;br /&gt;
{{:Modding_Tutorials/Under_Review}}&lt;br /&gt;
&lt;br /&gt;
This is a basic RimWorld mod tutorial for the purpose of creating a simple melee weapon.&lt;br /&gt;
&lt;br /&gt;
== Goals ==&lt;br /&gt;
* Create a new '''machete''' item, a simple melee weapon&lt;br /&gt;
* Give it a '''custom texture''' with a '''color mask'''&lt;br /&gt;
* Give it a simple '''stat bonus'''&lt;br /&gt;
&lt;br /&gt;
== Recommended Reading ==&lt;br /&gt;
* [[Modding_Tutorials/Mod_folder_structure|Mod Folder Structure]]&lt;br /&gt;
* [[Modding_Tutorials/XML_Defs|Defs]]&lt;br /&gt;
* [[Modding_Tutorials/ThingDef|ThingDef]]&lt;br /&gt;
&lt;br /&gt;
== Sample Repository ==&lt;br /&gt;
[[File:ExampleMeleeWeapon.png|none|border|link=https://github.com/Aelanna/ExampleMeleeWeapon]]&lt;br /&gt;
A working implementation of this mod can be found [https://github.com/Aelanna/ExampleMeleeWeapon in this GitHub repository]. You can use it to compare against your work or as a basis for modification!&lt;br /&gt;
&lt;br /&gt;
== Folder Setup ==&lt;br /&gt;
&lt;br /&gt;
First, you will want to create the files and folders necessary for this mod:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
Mods&lt;br /&gt;
└ MyModFolder&lt;br /&gt;
  ├ About&lt;br /&gt;
  │ └ About.xml&lt;br /&gt;
  ├ Defs&lt;br /&gt;
  │ └ ThingDefs&lt;br /&gt;
  │   └ ExampleWeapons_Melee.xml&lt;br /&gt;
  └ Textures&lt;br /&gt;
    └ ExampleMod&lt;br /&gt;
      ├ ExampleWeapon_Machete.png&lt;br /&gt;
      └ ExampleWeapon_Machete_m.png&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Please check out the [[Modding_Tutorials/Mod_folder_structure|mod folder structure guide]] for more information about individual folders.&lt;br /&gt;
&lt;br /&gt;
=== About.xml ===&lt;br /&gt;
&lt;br /&gt;
Your &amp;lt;code&amp;gt;About.xml&amp;lt;/code&amp;gt; is used to identify your mod to RimWorld; please see [[Modding_Tutorials/About.xml|the About.xml reference page]] for more information. Be sure to replace &amp;quot;AuthorName&amp;quot; with your own name:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;ModMetaData&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;!-- This is the internal identifier for your mod. --&amp;gt;&lt;br /&gt;
  &amp;lt;!-- It is recommended that you make it unique to as to avoid potential collisions with other authors; --&amp;gt;&lt;br /&gt;
  &amp;lt;!--     if Rimworld detects multiple mods with the same packageId then it will refuse to load all of them. --&amp;gt;&lt;br /&gt;
  &amp;lt;packageId&amp;gt;AuthorName.ExampleMeleeWeapon&amp;lt;/packageId&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;!-- This is both the displayed name of your mod as well as the name used for patch targeting. --&amp;gt;&lt;br /&gt;
  &amp;lt;name&amp;gt;Example Melee Weapon&amp;lt;/name&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;!-- Your name goes here. --&amp;gt;&lt;br /&gt;
  &amp;lt;author&amp;gt;AuthorName&amp;lt;/author&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;!-- These are the RimWorld game versions that your mod supports. --&amp;gt;&lt;br /&gt;
  &amp;lt;!-- It is recommended that you only list versions that you have explicitly tested to ensure they work, --&amp;gt;&lt;br /&gt;
  &amp;lt;!-- as even basic XML options can change between major versions of the game. --&amp;gt;&lt;br /&gt;
  &amp;lt;supportedVersions&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;1.4&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;/supportedVersions&amp;gt;&lt;br /&gt;
	&lt;br /&gt;
  &amp;lt;!-- This is the description of your mod shown in both the vanilla mod manager as well as modded managers. --&amp;gt;&lt;br /&gt;
  &amp;lt;description&amp;gt;This is an example melee weapon mod made for the RimWorld Wiki.&amp;lt;/description&amp;gt;&lt;br /&gt;
	&lt;br /&gt;
&amp;lt;/ModMetaData&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Sample Assets ===&lt;br /&gt;
&lt;br /&gt;
You can use these as the example textures:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;TwoColumnCollapsibleLayout&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;TwoColumnCollapsibleLayout-section&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;TwoColumnCollapsibleLayout-subtitle&amp;quot;&amp;gt;Weapon Texture&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;TwoColumnCollapsibleLayout-text&amp;quot;&amp;gt;&lt;br /&gt;
[[File:ExampleWeapon Machete.png|none]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;TwoColumnCollapsibleLayout-section&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;TwoColumnCollapsibleLayout-subtitle&amp;quot;&amp;gt;Texture Mask&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;TwoColumnCollapsibleLayout-text&amp;quot;&amp;gt;&lt;br /&gt;
[[File:ExampleWeapon Machete_m.png|none]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Instructions ==&lt;br /&gt;
&lt;br /&gt;
=== 1. Create a ThingDef ===&lt;br /&gt;
&lt;br /&gt;
Our first step is to create the XML that represents our new weapon. Whenever possible, this is best accomplished by first copying a vanilla [[Modding_Tutorials/ThingDef|ThingDef]] and modifying it; in this case we will use the vanilla [[gladius]] as our starting point, as it is the most similar existing weapon to what we want to create. The XML for the gladius can be found in &amp;lt;code&amp;gt;Data/Core/Defs/ThingDefs_Misc/Weapons/MeleeMedieval.xml&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
In our own &amp;lt;code&amp;gt;ExampleWeapons_Melee.xml&amp;lt;/code&amp;gt;, we'll have the following content:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; ?&amp;gt;&lt;br /&gt;
&amp;lt;Defs&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;!-- Example weapon: machete --&amp;gt;&lt;br /&gt;
  &amp;lt;ThingDef ParentName=&amp;quot;BaseMeleeWeapon_Sharp_Quality&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;!-- pasted content omitted --&amp;gt;&lt;br /&gt;
  &amp;lt;/ThingDef&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/Defs&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 2. Modify the copied ThingDef ===&lt;br /&gt;
&lt;br /&gt;
In order to differentiate our weapon from the vanilla gladius, we'll make the following changes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;TutorialTableWrapper&amp;quot;&amp;gt;&lt;br /&gt;
{| class=&amp;quot;TutorialCodeTable&amp;quot;&lt;br /&gt;
! XML !! Description&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;defName&amp;gt;ExampleMeleeWeapon_Machete&amp;lt;/defName&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
| class=&amp;quot;TutorialCodeTable-description&amp;quot; |&lt;br /&gt;
The &amp;lt;code&amp;gt;defName&amp;lt;/code&amp;gt; of a ThingDef is its identity and must be globally unique across all mods and official content. It is strongly recommended that it is prefixed with a project or mod name, so in this case we will use &amp;quot;ExampleMeleeWeapon_&amp;quot; as our prefix.&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;label&amp;gt;machete&amp;lt;/label&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
| class=&amp;quot;TutorialCodeTable-description&amp;quot; |&lt;br /&gt;
A ThingDef's label is its in-game name. Unless it is a proper name, it should be in lowercase so that it can be injected naturally into sentences that use it. RimWorld will automatically capitalize it as necessary if used in titles or as the start of a sentence.&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;description&amp;gt;A broad blade meant for cutting vegetation in overgrown environments, machetes can be used as a broad-bladed combat knife in a pinch.&amp;lt;/description&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
| class=&amp;quot;TutorialCodeTable-description&amp;quot; |&lt;br /&gt;
A ThingDef's description is used when inspecting the item's details.&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;graphicData&amp;gt;&lt;br /&gt;
  &amp;lt;texPath&amp;gt;ExampleMod/ExampleWeapon_Machete&amp;lt;/texPath&amp;gt;&lt;br /&gt;
  &amp;lt;graphicClass&amp;gt;Graphic_Single&amp;lt;/graphicClass&amp;gt;&lt;br /&gt;
  &amp;lt;shaderType&amp;gt;CutoutComplex&amp;lt;/shaderType&amp;gt;&lt;br /&gt;
&amp;lt;/graphicData&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
| class=&amp;quot;TutorialCodeTable-description&amp;quot; |&lt;br /&gt;
This is where define the texture of our weapon, as well as some basic rendering settings. Similar to how defNames must be unique across all mods, the &amp;lt;code&amp;gt;texPath&amp;lt;/code&amp;gt; of our texture must be unique across all mods if we want to avoid an asset collision. We will use the folder &amp;lt;code&amp;gt;ExampleMod&amp;lt;/code&amp;gt; as our &amp;quot;namespace&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
For melee weapons such as our machete, the texture defined in our &amp;lt;code&amp;gt;&amp;lt;graphicData&amp;gt;&amp;lt;/code&amp;gt; will be used for both items on the ground as well as the equipped weapon texture. Since we want our weapon to only be colored by its materials on the blade and not have its grip color changed, we will be using a second image as a Texture Mask. This will require us to use &amp;lt;code&amp;gt;CutoutComplex&amp;lt;/code&amp;gt; as our &amp;lt;code&amp;gt;&amp;lt;shaderType&amp;gt;&amp;lt;/code&amp;gt;, so we will specify that here as well.&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;costStuffCount&amp;gt;40&amp;lt;/costStuffCount&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
| class=&amp;quot;TutorialCodeTable-description&amp;quot; |&lt;br /&gt;
Since our machete is a more primitive tool than the gladius with a simple single-edged blade, we will have it cost 40 &amp;quot;stuff&amp;quot; instead of 50 like the gladius.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Stuff&amp;quot; in RimWorld refers to the material it is made out of; just like the gladius, ours will be able to be made out of both Woody and Metallic stuff.&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;statBases&amp;gt;&lt;br /&gt;
  &amp;lt;WorkToMake&amp;gt;10000&amp;lt;/WorkToMake&amp;gt;&lt;br /&gt;
  &amp;lt;Mass&amp;gt;0.75&amp;lt;/Mass&amp;gt;&lt;br /&gt;
&amp;lt;/statBases&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
| class=&amp;quot;TutorialCodeTable-description&amp;quot; |&lt;br /&gt;
Similarly, our machete is easier to make at only 10,000 work units instead of 12,000 and is lighter at 0.75kg instead of 0.85kg.&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;equippedStatOffsets&amp;gt;&lt;br /&gt;
  &amp;lt;PlantWorkSpeed&amp;gt;0.10&amp;lt;/PlantWorkSpeed&amp;gt;&lt;br /&gt;
&amp;lt;/equippedStatOffsets&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
| class=&amp;quot;TutorialCodeTable-description&amp;quot; |&lt;br /&gt;
Historically, while machetes have been used as weapons, they are first and foremost a tool used for cutting plants and clearing overgrown vegetation. As such, we want our machete to increase the plant cutting speed of the pawn that wields it by 10%.&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;relicChance&amp;gt;1&amp;lt;/relicChance&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
| class=&amp;quot;TutorialCodeTable-description&amp;quot; |&lt;br /&gt;
Unlike the gladius or longsword, machetes are generally not intended to be used as weapons and thus should not be used as often for an ideoligion's relics.&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tools&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;&lt;br /&gt;
    &amp;lt;label&amp;gt;handle&amp;lt;/label&amp;gt;&lt;br /&gt;
    &amp;lt;capacities&amp;gt;&lt;br /&gt;
      &amp;lt;li&amp;gt;Blunt&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;/capacities&amp;gt;&lt;br /&gt;
    &amp;lt;power&amp;gt;9&amp;lt;/power&amp;gt;&lt;br /&gt;
    &amp;lt;cooldownTime&amp;gt;2&amp;lt;/cooldownTime&amp;gt;&lt;br /&gt;
  &amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;&lt;br /&gt;
    &amp;lt;label&amp;gt;point&amp;lt;/label&amp;gt;&lt;br /&gt;
    &amp;lt;capacities&amp;gt;&lt;br /&gt;
      &amp;lt;li&amp;gt;Stab&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;/capacities&amp;gt;&lt;br /&gt;
    &amp;lt;power&amp;gt;14&amp;lt;/power&amp;gt;&lt;br /&gt;
    &amp;lt;cooldownTime&amp;gt;2&amp;lt;/cooldownTime&amp;gt;&lt;br /&gt;
  &amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;&lt;br /&gt;
    &amp;lt;label&amp;gt;edge&amp;lt;/label&amp;gt;&lt;br /&gt;
    &amp;lt;capacities&amp;gt;&lt;br /&gt;
      &amp;lt;li&amp;gt;Cut&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;/capacities&amp;gt;&lt;br /&gt;
    &amp;lt;power&amp;gt;14&amp;lt;/power&amp;gt;&lt;br /&gt;
    &amp;lt;cooldownTime&amp;gt;2&amp;lt;/cooldownTime&amp;gt;&lt;br /&gt;
  &amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/tools&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
| class=&amp;quot;TutorialCodeTable-description&amp;quot; |&lt;br /&gt;
A weapon's &amp;lt;code&amp;gt;&amp;lt;tools&amp;gt;&amp;lt;/code&amp;gt; determines the types of [[Combat|melee attacks]] that can be made with it. Our machete should not be as effective as a gladius in combat, so we will reduce the power of its &amp;lt;code&amp;gt;point&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;edge&amp;lt;/code&amp;gt; attacks from 16 to 14. The &amp;lt;code&amp;gt;handle&amp;lt;/code&amp;gt; tool's power remains the same, as it is a secondary attack.&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;recipeMaker&amp;gt;&lt;br /&gt;
  &amp;lt;researchPrerequisite&amp;gt;Smithing&amp;lt;/researchPrerequisite&amp;gt;&lt;br /&gt;
  &amp;lt;skillRequirements&amp;gt;&lt;br /&gt;
    &amp;lt;Crafting&amp;gt;2&amp;lt;/Crafting&amp;gt;&lt;br /&gt;
  &amp;lt;/skillRequirements&amp;gt;&lt;br /&gt;
  &amp;lt;displayPriority&amp;gt;409&amp;lt;/displayPriority&amp;gt;&lt;br /&gt;
&amp;lt;/recipeMaker&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
| class=&amp;quot;TutorialCodeTable-description&amp;quot; |&lt;br /&gt;
Our machete is easier to craft than a gladius, and will only require a Crafting skill of 2 to make. We also want our machete to appear above the gladius in recipe lists, so we will change its &amp;lt;code&amp;gt;&amp;lt;displayPriority&amp;gt;&amp;lt;/code&amp;gt; from 410 to 409.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 3. Done! ===&lt;br /&gt;
&lt;br /&gt;
Your first melee weapon is complete! Boot up RimWorld and you should be able to see and enable the &amp;quot;Example Melee Weapon&amp;quot; mod in your mod manager. You can then use [[Development mode|dev mode tools]] to spawn the weapon directly, or craft it at an [[Electric_smithy|electric]] or [[Fueled_smithy|fueled smithy]].&lt;br /&gt;
&lt;br /&gt;
If you get any errors, be sure to check out the [[Modding_Tutorials/Troubleshooting|troubleshooting guide]] or join us on the '''#mod-development''' channel on the [https://discord.gg/rimworld RimWorld Discord server].&lt;br /&gt;
&lt;br /&gt;
[[Category:Modding]]&lt;br /&gt;
[[Category:Modding tutorials]]&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=Modding_Tutorials/Quests&amp;diff=108620</id>
		<title>Modding Tutorials/Quests</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=Modding_Tutorials/Quests&amp;diff=108620"/>
		<updated>2022-09-03T11:58:10Z</updated>

		<summary type="html">&lt;p&gt;Mehni: Created page with &amp;quot;//todo&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;//todo&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=Modding_Tutorials/DebugActions&amp;diff=108619</id>
		<title>Modding Tutorials/DebugActions</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=Modding_Tutorials/DebugActions&amp;diff=108619"/>
		<updated>2022-09-03T11:57:54Z</updated>

		<summary type="html">&lt;p&gt;Mehni: Created page with &amp;quot;//todo&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;//todo&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=Modding_Tutorials/ConfigErrors&amp;diff=108618</id>
		<title>Modding Tutorials/ConfigErrors</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=Modding_Tutorials/ConfigErrors&amp;diff=108618"/>
		<updated>2022-09-03T11:57:36Z</updated>

		<summary type="html">&lt;p&gt;Mehni: Created page with &amp;quot;//Todo&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;//Todo&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=Modding_Tutorials/Troubleshooting/Finding_Exceptions&amp;diff=108612</id>
		<title>Modding Tutorials/Troubleshooting/Finding Exceptions</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=Modding_Tutorials/Troubleshooting/Finding_Exceptions&amp;diff=108612"/>
		<updated>2022-09-03T09:14:17Z</updated>

		<summary type="html">&lt;p&gt;Mehni: Created page with &amp;quot;idk lol&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;idk lol&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=Modding_Tutorials/GrammarResolver&amp;diff=66402</id>
		<title>Modding Tutorials/GrammarResolver</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=Modding_Tutorials/GrammarResolver&amp;diff=66402"/>
		<updated>2019-08-21T17:26:47Z</updated>

		<summary type="html">&lt;p&gt;Mehni: Created page with &amp;quot;{{BackToTutorials}}  The GrammarResolver changes strings like  &amp;lt;source&amp;gt; [PAWN_nameIndef] has experienced an inspiration!\n\n[PAWN_pronoun] will get a significant trade price b...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{BackToTutorials}}&lt;br /&gt;
&lt;br /&gt;
The GrammarResolver changes strings like &lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
[PAWN_nameIndef] has experienced an inspiration!\n\n[PAWN_pronoun] will get a significant trade price bonus when closing [PAWN_possessive] next trade deal.&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
into &lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
Geralt has experienced an inspiration!\n\nHe will get a significant trade price bonus when closing his next trade deal.&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Modding]]&lt;br /&gt;
[[Category:Modding tutorials]]&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=Modding_Tutorials&amp;diff=66401</id>
		<title>Modding Tutorials</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=Modding_Tutorials&amp;diff=66401"/>
		<updated>2019-08-21T17:21:14Z</updated>

		<summary type="html">&lt;p&gt;Mehni: /* C# tutorials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--Top Nav Box--&amp;gt;&lt;br /&gt;
{| align=center&lt;br /&gt;
| {{Mods_Nav}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is the table of contents for the modding tutorial. Here, you'll learn step by step how to create mods of gradually increasing complexity.&lt;br /&gt;
&lt;br /&gt;
In light of little official documentation, most of the knowledge here was gained by experience, trial-and-error, decompiling and learning from the source. Keep in mind that RimWorld is a big game that underwent substantial code changes during its alphas. While most of this wiki was updated for 1.0, some information you find may be outdated. &lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
==What's a mod?==&lt;br /&gt;
A mod is a folder containing data the game reads/loads. Mods can add, remove or alter the content of other mods (including the Core mod) in the broadest sense of the word. For more info, see also [[Modding]].&lt;br /&gt;
&lt;br /&gt;
==Introduction to modding==&lt;br /&gt;
# [[Modding Tutorials/First Steps|First Steps and Some Links]]&lt;br /&gt;
# [[Modding Tutorials/Essence| Essence of Modding]]&lt;br /&gt;
# [[Modding Tutorials/Folder structure|Exploring the Folder Structure]]&lt;br /&gt;
# [[Modding Tutorials/Mod folder structure|Mod Folder Structure]]&lt;br /&gt;
#* [[Modding Tutorials/Mod folder structure#The About folder|About folder]]&lt;br /&gt;
#* [[Modding Tutorials/Mod folder structure#The Defs folder|Defs folder]]&lt;br /&gt;
#* [[Modding Tutorials/Mod folder structure#The Source and Assemblies folders|Assemblies folder]]&lt;br /&gt;
#* [[Modding Tutorials/Mod folder structure#The Languages folder|Languages folder]]&lt;br /&gt;
#* [[Modding Tutorials/Mod folder structure#The Textures and Sounds folders|Textures folder]]&lt;br /&gt;
#* [[Modding Tutorials/Mod folder structure#The Textures and Sounds folders|Sounds folder]]&lt;br /&gt;
#* [[Modding Tutorials/Mod folder structure#The Patches folder|Patches folder]]&lt;br /&gt;
# [[Modding Tutorials/Recommended software|Recommended Software]]&lt;br /&gt;
&lt;br /&gt;
==General modding==&lt;br /&gt;
&lt;br /&gt;
* [[Modding Tutorials/Testing mods|Testing Mods]]&lt;br /&gt;
** [[Modding Tutorials/Testing mods#Development mode|Development Mode]]&lt;br /&gt;
* [[Modding Tutorials/Sounds|Adding and Testing Sounds]]&lt;br /&gt;
* [[Modding Tutorials/Assets|Decompiling Texture/Sound Assets]]&lt;br /&gt;
* [[Modding Tutorials/Compatibility|Compatibility]]&lt;br /&gt;
* [[Modding_Tutorials/Distribution|Distribution]]&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Must-knows==&lt;br /&gt;
* [[Modding_Tutorials/Modifying defs|Modifying Defs]]&lt;br /&gt;
* [[Modding_Tutorials/Troubleshooting|Troubleshooting mods]]&lt;br /&gt;
&lt;br /&gt;
==XML tutorials==&lt;br /&gt;
&lt;br /&gt;
# [[Modding Tutorials/XML file structure|XML File Structure]]&lt;br /&gt;
# [[Modding Tutorials/XML Defs|Introduction to XML Defs]]&lt;br /&gt;
#* [[Modding Tutorials/Compatibility with defs|XML Def Compatibility]]&lt;br /&gt;
# In-depth XML Def tutorials&lt;br /&gt;
#* [[Modding Tutorials/ThingDef|ThingDef explained]]&lt;br /&gt;
#* [[Modding Tutorials/Weapons Guns|Weapons_Guns.xml explained]]. Slightly dated.&lt;br /&gt;
# [[Modding Tutorials/PatchOperations|PatchOperations]], replace specific xml elements of core files while keeping the rest untampered. Uses xpath.&lt;br /&gt;
&lt;br /&gt;
==C# tutorials==&lt;br /&gt;
# [[Modding_Tutorials/Setting up a solution|Setting up]]&lt;br /&gt;
# [[Modding_Tutorials/Hello World|Hello World]]&lt;br /&gt;
# [[Modding_Tutorials/Decompiling source code|Decompiling Source Code]]&lt;br /&gt;
# [[Modding_Tutorials/Writing custom code|Writing Custom Code]]&lt;br /&gt;
# [[Modding Tutorials/Linking XML and C#|Linking XML and C#]]&lt;br /&gt;
# [[Modding_Tutorials/Harmony | Alter Code at Runtime with Harmony]] - this is a best practice for modifying game code, replacing C# code injection to reduce Mod Conflicts&lt;br /&gt;
# The wonderful things you will want to do with C#&lt;br /&gt;
#* [[Modding_Tutorials/Injection|C# Injection]]&lt;br /&gt;
#* [[Modding_Tutorials/Modifying classes|Adding fields and methods to classes]]&lt;br /&gt;
# Useful things:&lt;br /&gt;
#* [[Modding Tutorials/ModSettings|Mod settings]] - Add settings to your mod&lt;br /&gt;
#* [[Modding Tutorials/DefModExtension|Def mod extensions]] - Add (custom) fields to Defs&lt;br /&gt;
#* [[Modding Tutorials/Custom Comp Classes|Custom Comp Classes]] - A quick overview of what types of Comps there are, and what they're suited for.&lt;br /&gt;
#** [[Modding_Tutorials/ThingComp|ThingComp]] - Learn all there is to know about ThingComps.&lt;br /&gt;
#** [[Modding Tutorials/GameComponent|Components]] - GameComponents, WorldComponents, and MapComponents&lt;br /&gt;
#* [[Modding_Tutorials/Def classes|Introduction to Def Classes]]&lt;br /&gt;
#* [[Modding_Tutorials/Compatibility_with_DLLs|Using Harmony to optionally patch other mods for the sake of compatibility]]&lt;br /&gt;
#* [[Modding Tutorials/TweakValue|TweakValues]] - Change values on the fly (handy for quick iteration!)&lt;br /&gt;
#* [[Modding Tutorials/ExposeData|ExposeData]] - Save stuff&lt;br /&gt;
#* [[Modding Tutorials/BigAssListOfUsefulClasses|The big ass list of useful classes]] - A non-exhaustive list of classes you'll use most&lt;br /&gt;
#* [[Modding Tutorials/GrammarResolver|Grammar Resolver]] - PAWN_objective, PAWN_possessive? Find out what it all means here.&lt;br /&gt;
#* [https://github.com/Mehni/ExampleJob/wiki ExampleJob] - Mehni's top to bottom breakdown of Jobs.&lt;br /&gt;
&lt;br /&gt;
==Art Tutorials==&lt;br /&gt;
* [https://spdskatr.github.io/RWModdingResources/artstyle Artstyle] - Officially unofficial guide to RimWorld's Artstyle&lt;br /&gt;
* [https://www.reddit.com/r/RimWorld/comments/5tn1pi/rimworldstyle_sprite_tutorials/ Ekksu's guide to creating RimWorld animals]&lt;br /&gt;
* [https://steamcommunity.com/sharedfiles/filedetails/?id=1114369188 ChickenPlucker's guide to creating apparel]&lt;br /&gt;
* [https://github.com/seraphile/rimshare/wiki/Colouring-in-Images Seraphile's guide to masks]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
==Examples==&lt;br /&gt;
* [[Modding Tutorials/Assembly Modding Example|Assembly Modding]]&lt;br /&gt;
* [[Plague Gun/Introduction|The Plague Gun]] based on the Plague Gun tutorial by Jecrell, updated for 1.0. {{LudeonThread|33219}}.&lt;br /&gt;
# [[Plague Gun/Required Items|Required Items]]&lt;br /&gt;
# [[Plague Gun/XML Stage|XML Stage]]&lt;br /&gt;
# [[Plague Gun/Connecting XML and Csharp|Connecting XML and C#]]&lt;br /&gt;
# [[Plague Gun/Csharp Assembly Setup|C# Assembly Setup]]&lt;br /&gt;
# [[Plague Gun/Csharp Coding|C# Coding]]&lt;br /&gt;
# [[Plague Gun/Localisation|Localisation]]&lt;br /&gt;
&lt;br /&gt;
===Dangerously Outdated===&lt;br /&gt;
* https://rimworldwiki.com/wiki/Modding_Tutorials/Smelter&lt;br /&gt;
* https://rimworldwiki.com/wiki/Modding_Tutorials/Items&lt;br /&gt;
* https://rimworldwiki.com/wiki/Modding_Tutorials/Weapons&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [https://github.com/roxxploxx/RimWorldModGuide/wiki Roxxploxx's set of modding tutorials]&lt;br /&gt;
* [https://spdskatr.github.io/RWModdingResources/ RimWorld Modding Resources - A hub for guides, modders, practical tips]&lt;br /&gt;
&lt;br /&gt;
[[Category:Modding]]&lt;br /&gt;
[[Category:Modding tutorials]]&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=Modding_Tutorials&amp;diff=66400</id>
		<title>Modding Tutorials</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=Modding_Tutorials&amp;diff=66400"/>
		<updated>2019-08-21T17:21:01Z</updated>

		<summary type="html">&lt;p&gt;Mehni: /* C# tutorials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--Top Nav Box--&amp;gt;&lt;br /&gt;
{| align=center&lt;br /&gt;
| {{Mods_Nav}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is the table of contents for the modding tutorial. Here, you'll learn step by step how to create mods of gradually increasing complexity.&lt;br /&gt;
&lt;br /&gt;
In light of little official documentation, most of the knowledge here was gained by experience, trial-and-error, decompiling and learning from the source. Keep in mind that RimWorld is a big game that underwent substantial code changes during its alphas. While most of this wiki was updated for 1.0, some information you find may be outdated. &lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
==What's a mod?==&lt;br /&gt;
A mod is a folder containing data the game reads/loads. Mods can add, remove or alter the content of other mods (including the Core mod) in the broadest sense of the word. For more info, see also [[Modding]].&lt;br /&gt;
&lt;br /&gt;
==Introduction to modding==&lt;br /&gt;
# [[Modding Tutorials/First Steps|First Steps and Some Links]]&lt;br /&gt;
# [[Modding Tutorials/Essence| Essence of Modding]]&lt;br /&gt;
# [[Modding Tutorials/Folder structure|Exploring the Folder Structure]]&lt;br /&gt;
# [[Modding Tutorials/Mod folder structure|Mod Folder Structure]]&lt;br /&gt;
#* [[Modding Tutorials/Mod folder structure#The About folder|About folder]]&lt;br /&gt;
#* [[Modding Tutorials/Mod folder structure#The Defs folder|Defs folder]]&lt;br /&gt;
#* [[Modding Tutorials/Mod folder structure#The Source and Assemblies folders|Assemblies folder]]&lt;br /&gt;
#* [[Modding Tutorials/Mod folder structure#The Languages folder|Languages folder]]&lt;br /&gt;
#* [[Modding Tutorials/Mod folder structure#The Textures and Sounds folders|Textures folder]]&lt;br /&gt;
#* [[Modding Tutorials/Mod folder structure#The Textures and Sounds folders|Sounds folder]]&lt;br /&gt;
#* [[Modding Tutorials/Mod folder structure#The Patches folder|Patches folder]]&lt;br /&gt;
# [[Modding Tutorials/Recommended software|Recommended Software]]&lt;br /&gt;
&lt;br /&gt;
==General modding==&lt;br /&gt;
&lt;br /&gt;
* [[Modding Tutorials/Testing mods|Testing Mods]]&lt;br /&gt;
** [[Modding Tutorials/Testing mods#Development mode|Development Mode]]&lt;br /&gt;
* [[Modding Tutorials/Sounds|Adding and Testing Sounds]]&lt;br /&gt;
* [[Modding Tutorials/Assets|Decompiling Texture/Sound Assets]]&lt;br /&gt;
* [[Modding Tutorials/Compatibility|Compatibility]]&lt;br /&gt;
* [[Modding_Tutorials/Distribution|Distribution]]&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Must-knows==&lt;br /&gt;
* [[Modding_Tutorials/Modifying defs|Modifying Defs]]&lt;br /&gt;
* [[Modding_Tutorials/Troubleshooting|Troubleshooting mods]]&lt;br /&gt;
&lt;br /&gt;
==XML tutorials==&lt;br /&gt;
&lt;br /&gt;
# [[Modding Tutorials/XML file structure|XML File Structure]]&lt;br /&gt;
# [[Modding Tutorials/XML Defs|Introduction to XML Defs]]&lt;br /&gt;
#* [[Modding Tutorials/Compatibility with defs|XML Def Compatibility]]&lt;br /&gt;
# In-depth XML Def tutorials&lt;br /&gt;
#* [[Modding Tutorials/ThingDef|ThingDef explained]]&lt;br /&gt;
#* [[Modding Tutorials/Weapons Guns|Weapons_Guns.xml explained]]. Slightly dated.&lt;br /&gt;
# [[Modding Tutorials/PatchOperations|PatchOperations]], replace specific xml elements of core files while keeping the rest untampered. Uses xpath.&lt;br /&gt;
&lt;br /&gt;
==C# tutorials==&lt;br /&gt;
# [[Modding_Tutorials/Setting up a solution|Setting up]]&lt;br /&gt;
# [[Modding_Tutorials/Hello World|Hello World]]&lt;br /&gt;
# [[Modding_Tutorials/Decompiling source code|Decompiling Source Code]]&lt;br /&gt;
# [[Modding_Tutorials/Writing custom code|Writing Custom Code]]&lt;br /&gt;
# [[Modding Tutorials/Linking XML and C#|Linking XML and C#]]&lt;br /&gt;
# [[Modding_Tutorials/Harmony | Alter Code at Runtime with Harmony]] - this is a best practice for modifying game code, replacing C# code injection to reduce Mod Conflicts&lt;br /&gt;
# The wonderful things you will want to do with C#&lt;br /&gt;
#* [[Modding_Tutorials/Injection|C# Injection]]&lt;br /&gt;
#* [[Modding_Tutorials/Modifying classes|Adding fields and methods to classes]]&lt;br /&gt;
# Useful things:&lt;br /&gt;
#* [[Modding Tutorials/ModSettings|Mod settings]] - Add settings to your mod&lt;br /&gt;
#* [[Modding Tutorials/DefModExtension|Def mod extensions]] - Add (custom) fields to Defs&lt;br /&gt;
#* [[Modding Tutorials/Custom Comp Classes|Custom Comp Classes]] - A quick overview of what types of Comps there are, and what they're suited for.&lt;br /&gt;
#** [[Modding_Tutorials/ThingComp|ThingComp]] - Learn all there is to know about ThingComps.&lt;br /&gt;
#** [[Modding Tutorials/GameComponent|Components]] - GameComponents, WorldComponents, and MapComponents&lt;br /&gt;
#* [[Modding_Tutorials/Def classes|Introduction to Def Classes]]&lt;br /&gt;
#* [[Modding_Tutorials/Compatibility_with_DLLs|Using Harmony to optionally patch other mods for the sake of compatibility]]&lt;br /&gt;
#* [[Modding Tutorials/TweakValue|TweakValues]] - Change values on the fly (handy for quick iteration!)&lt;br /&gt;
#* [[Modding Tutorials/ExposeData|ExposeData]] - Save stuff&lt;br /&gt;
#* [[Modding Tutorials/BigAssListOfUsefulClasses|The big ass list of useful classes]] - A non-exhaustive list of classes you'll use most&lt;br /&gt;
#* [[Modding Tutorials/GrammarResolver||Grammar Resolver]] - PAWN_objective, PAWN_possessive? Find out what it all means here.&lt;br /&gt;
#* [https://github.com/Mehni/ExampleJob/wiki ExampleJob] - Mehni's top to bottom breakdown of Jobs.&lt;br /&gt;
&lt;br /&gt;
==Art Tutorials==&lt;br /&gt;
* [https://spdskatr.github.io/RWModdingResources/artstyle Artstyle] - Officially unofficial guide to RimWorld's Artstyle&lt;br /&gt;
* [https://www.reddit.com/r/RimWorld/comments/5tn1pi/rimworldstyle_sprite_tutorials/ Ekksu's guide to creating RimWorld animals]&lt;br /&gt;
* [https://steamcommunity.com/sharedfiles/filedetails/?id=1114369188 ChickenPlucker's guide to creating apparel]&lt;br /&gt;
* [https://github.com/seraphile/rimshare/wiki/Colouring-in-Images Seraphile's guide to masks]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
==Examples==&lt;br /&gt;
* [[Modding Tutorials/Assembly Modding Example|Assembly Modding]]&lt;br /&gt;
* [[Plague Gun/Introduction|The Plague Gun]] based on the Plague Gun tutorial by Jecrell, updated for 1.0. {{LudeonThread|33219}}.&lt;br /&gt;
# [[Plague Gun/Required Items|Required Items]]&lt;br /&gt;
# [[Plague Gun/XML Stage|XML Stage]]&lt;br /&gt;
# [[Plague Gun/Connecting XML and Csharp|Connecting XML and C#]]&lt;br /&gt;
# [[Plague Gun/Csharp Assembly Setup|C# Assembly Setup]]&lt;br /&gt;
# [[Plague Gun/Csharp Coding|C# Coding]]&lt;br /&gt;
# [[Plague Gun/Localisation|Localisation]]&lt;br /&gt;
&lt;br /&gt;
===Dangerously Outdated===&lt;br /&gt;
* https://rimworldwiki.com/wiki/Modding_Tutorials/Smelter&lt;br /&gt;
* https://rimworldwiki.com/wiki/Modding_Tutorials/Items&lt;br /&gt;
* https://rimworldwiki.com/wiki/Modding_Tutorials/Weapons&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [https://github.com/roxxploxx/RimWorldModGuide/wiki Roxxploxx's set of modding tutorials]&lt;br /&gt;
* [https://spdskatr.github.io/RWModdingResources/ RimWorld Modding Resources - A hub for guides, modders, practical tips]&lt;br /&gt;
&lt;br /&gt;
[[Category:Modding]]&lt;br /&gt;
[[Category:Modding tutorials]]&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=RimWorld_Wiki_talk:Community_portal&amp;diff=65575</id>
		<title>RimWorld Wiki talk:Community portal</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=RimWorld_Wiki_talk:Community_portal&amp;diff=65575"/>
		<updated>2019-07-12T18:06:31Z</updated>

		<summary type="html">&lt;p&gt;Mehni: /* Frontpage */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Page Creation Permissions ==&lt;br /&gt;
What does it take to get page creation permissions?&lt;br /&gt;
[[User:Lilwhitemouse|Lilwhitemouse]] ([[User talk:Lilwhitemouse|talk]]) 14:42, 29 November 2018 (UTC)&lt;br /&gt;
:Also interested in finding out this info, especially ''TALK'' pages. The &amp;quot;[[Community portal]]&amp;quot; says under '''Want to discuss stuff?''' &amp;quot;If you want to discuss anything specific to an article, you can use the Discussion page for that article.&amp;quot;, but if an article's talk page is still empty that's not really possible: unregistered users are shown &amp;lt;span style=&amp;quot;background-color: #ffb50d; border: 1px solid #7f7f7f; font-family: monospace,monospace; font-size: 0.87em; padding: 0.2em&amp;quot;&amp;gt;🔒 You currently are not able to participate. You can try logging in.&amp;lt;/span&amp;gt; and newly-registered users are shown &amp;lt;span style=&amp;quot;background-color: #ffb50d; border: 1px solid #7f7f7f; font-family: monospace,monospace; font-size: 0.87em; padding: 0.2em&amp;quot;&amp;gt;🔒 You currently are not able to participate, because you do not have the required rights.&amp;lt;/span&amp;gt; -- so it's easier to just vandalize right away (editing articles) than to talk about what we want to improve. :-( -- [[User:Noob hoarder|Noob hoarder]] ([[User talk:Noob hoarder|talk]]) 22:09, 11 May 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
::The answer is everywhere (it's the most FAQ):&lt;br /&gt;
::Under '''&amp;quot;How to help out&amp;quot;''' within this same page:&lt;br /&gt;
::*You can also create &amp;quot;New pages&amp;quot; for missing pages but your account must have at least 10 edits a priori, this is configuration to prevent vandal bots. If you don't meet the count yet, just perform any of the above mentioned tasks to rise your count.&lt;br /&gt;
::In [[:Help:Basics]]: &lt;br /&gt;
::*Under '''&amp;quot;Creating New Articles&amp;quot;''': With a brand new account, you will need at least 10 edits to be able to make a new article. This is an anti-spam bot measure.&lt;br /&gt;
::Check out the Special Pages area to see articles that could use links, pictures, categories, etc. Fixing up grammar and spelling on pages is always appreciated as well, and is also an easy way to get your 10 edits.&lt;br /&gt;
::...and also...&lt;br /&gt;
::*...in '''my talk page''': [[User talk:Yoshida Keiji]].&amp;lt;div style=&amp;quot;background:gold&amp;quot;&amp;gt;[[File:LongRangeMineralScanner.png|25px]]&amp;lt;span style=&amp;quot;color:navy&amp;quot;&amp;gt;[[User:Yoshida Keiji|'''Yoshida Keiji''']]&amp;lt;/span&amp;gt;([[User_talk:Yoshida_Keiji|Let's talk]][[File:beer b.png|25px]])[[File:LongRangeMineralScanner.png|25px]]&amp;lt;/div&amp;gt; 15:55, 12 May 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Wooden foot ==&lt;br /&gt;
I'd like to create the page [[Wooden foot]] but I don't have the permissions to do so. Could someone create the page (and then ping me) or give me the permission? Thanks. --[[User:Nijin|Nijin]] ([[User talk:Nijin|talk]]) 19:17, 17 September 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Formatting guideline for &amp;quot;Weapon&amp;quot; pages ==&lt;br /&gt;
&lt;br /&gt;
Version 1.0 is out and I'm not sure if more will be added as to evaluate the usefulness of this at the time, but since we are editing such pages, this is my draft and I would like everybody else's opinions to polish this layout and make it standard to all related articles.&amp;lt;div style=&amp;quot;background:gold&amp;quot;&amp;gt;[[File:LongRangeMineralScanner.png|25px]]&amp;lt;span style=&amp;quot;color:navy&amp;quot;&amp;gt;[[User:Yoshida Keiji|'''Yoshida Keiji''']]&amp;lt;/span&amp;gt;([[User_talk:Yoshida_Keiji|Let's talk]][[File:beer b.png|25px]])[[File:LongRangeMineralScanner.png|25px]]&amp;lt;/div&amp;gt; 02:28, 3 November 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
[[:User:Yoshida Keiji/Sandbox3]]&lt;br /&gt;
&lt;br /&gt;
== Formatting guideline for Biome guides ==&lt;br /&gt;
&lt;br /&gt;
Discuss what would you expect from Biome specific guides, the content, the parameters in which it shall be focused on, what it must have and what nots. How would you give points based on a score system to determine whether an article shall be part of the Community with members consentient by including it in mainspace or if it shall remain a user exclusive article that solely exposes the views of a single person rather everybody. &amp;lt;div style=&amp;quot;background:gold&amp;quot;&amp;gt;[[File:LongRangeMineralScanner.png|25px]]&amp;lt;span style=&amp;quot;color:navy&amp;quot;&amp;gt;[[User:Yoshida Keiji|'''Yoshida Keiji''']]&amp;lt;/span&amp;gt;([[User_talk:Yoshida_Keiji|Let's talk]][[File:beer b.png|25px]])[[File:LongRangeMineralScanner.png|25px]]&amp;lt;/div&amp;gt; 12:43, 21 January 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Thoughts for the future (frontpage, templates, SMW) ==&lt;br /&gt;
&lt;br /&gt;
Since this wiki doesn't have an Admin noticeboard, this talk page appears to be the best spot to raise issues or thoughts.&lt;br /&gt;
&lt;br /&gt;
=== Images ===&lt;br /&gt;
Recently I've uploaded ''a couple'' of pictures, extracted uncompressed from the game files. I tried to name them sensibly before uploading. Partly as a result of that, there are now de facto duplicates here and there, in various quality. We can try to deal with that, or just let it be. I've also started categorising images. It makes it easier to find them later, and use them in articles, if users can look through categories.&lt;br /&gt;
&lt;br /&gt;
Because most &amp;quot;things&amp;quot; have 3-4 images now (east, north, south), the initial idea was to add them to a small gallery on pages. It helps to fill out some pages, and later we can add &amp;quot;live&amp;quot; shots of the animals and such as well. There is much I didn't upload, however, such as hair styles, body differences, and loads of interface images.&lt;br /&gt;
&lt;br /&gt;
=== Frontpage ===&lt;br /&gt;
Yesterday [[User:PigeonGuru|PigeonGuru]] prompted me about the intent of the image uploads, and I touched on some more topics, including an idea for changing the frontpage. This is (probably) the page new users see first. Hope I don't step on any toes here, but I do think it could be improved. It's usually a good idea to have a brief intro or summary of the game, and those links to policy and consent and suchlike looks a little ''off'' for the frontpage, at least in such a prominent position. I see there have been quite some storms in here with edit wars, so that is probably why, but maybe it could be placed elsewhere?&lt;br /&gt;
&lt;br /&gt;
My background is from Gamepedia, a wiki farm for gaming wikis, where I happened to take the lead in changing lots of stuff on the Pillars of Eternity wiki, including transitioning it from Semantic Mediawiki (SMW) to Cargo. Their sort-of default design for wikis is a dynamic setup that alters where segments are placed on the frontpage based on the width of the user's browser, using fairly simple Javascript in the .js file. I would like to try out something similar here as well -- if that is something that would be agreeable to the leadership. First in my own userspace of course. I'm not a design or CSS wizard, so it takes me time, but I'd like to try it out nevertheless. But I'd like to hear some feedback or ideas for how it can be done.&lt;br /&gt;
&lt;br /&gt;
RimWorld is a dark-themed game with, suffice to say, some pretty darn dark behaviours at times (like the hats meme). I'm not sure how much extra work it would be, how badly if would affect tables and so on, but it might be fitting with a dark-coloured theme for the wiki as well, to better reflect the look in-game. Unfortunately the game doesn't really have much art assets to go on in terms of UI (it is very basic with boxes and suchlike), but otherwise we could have used some of that here, for infoboxes, stylised headings and the like. Any thoughts about this? Would it be a total no-go? I did look through the history of the frontpage a few weeks back, and it looked to have had basically the same design from the start. Have people sort of built brick by brick since then, or was it decided to have it like that, and we shouldn't change it?&lt;br /&gt;
&lt;br /&gt;
:I don't think there was much of a &amp;quot;decision&amp;quot; regarding the frontpage, nobody just ever bothered changing it. I'm in favour of having a short description of the game on the frontpage. As far as the theme for RimWorld, it's as light or dark as the player wants to make it. Some colonies are all rainbows and kittens, others consist of nothing but organ-harvesting psychopaths. It reflects more on the player than on the game. --[[User:Mehni|Mehni]] ([[User talk:Mehni|talk]]) 18:06, 12 July 2019 (UTC) P.S. Welcome, and thank you for your additions.&lt;br /&gt;
&lt;br /&gt;
=== Templates ===&lt;br /&gt;
Dear Cthulu... I've been sat here for ''hours'' trying to wrap my puny head around it, and it still doesn't make all that much sense. Like the main author [[User:Spdskatr|Spdskatr]] says in the Define/doc: &amp;lt;code&amp;gt;This template defines the stats for an item that, after a long and confusing chain of transclusions, will end up in Template:Infobox/Thing.&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
There are loads of templates that do various things, including tiny stuff like closing a table, or making a heading. The chain-transclusions make it ''very'' hard to read and understand for regular users, or even quite experienced ones like myself. There are some errors here and there on pages, and many others still use the infobox main template instead, but given the above, it's hard to try to fix things. For all I know, it will break something else.&lt;br /&gt;
&lt;br /&gt;
It is honestly tempting to start anew (and copying the relevant bits of code) instead of keep banging my head against the wall and not really getting anywhere. If we were to start over, I'd suggest to use one template for each thing instead of super-templates with loads of sub-templates and chaining. It's much easier to deal with both for users and staff -- because it's more easily understood. This is kind of a nightmare example, but imagine trying to wrap your head [https://tyranny.gamepedia.com/index.php?title=Template:Infobox&amp;amp;action=edit around this] as a new user :D&lt;br /&gt;
&lt;br /&gt;
Another dark horse here, however, is the SMW. That too is hard to get a good grip on, because it appears to be dealt with in other templates as well. More chaining.&lt;br /&gt;
&lt;br /&gt;
=== Cargo ===&lt;br /&gt;
That brings me to another possibility: Using [https://www.mediawiki.org/wiki/Extension:Cargo Cargo] instead of SMW. Especially on the management/overview side, it is much better to use than SMW. Essentially it's a MySQL database, so it's easy to get an overview of everything, instead of the complex setup of triplets from SMW, and no proper database or table where users or admins can look at the data, check it, and fix it. Managing both the templates and the data would be easier. &lt;br /&gt;
&lt;br /&gt;
Usually SMW is also a drain on performance, though I don't know if that is the case here. As usual there are lots more property+query pages than content pages (and outdated entities), but we're not talking about millions here, so it may be manageable.&lt;br /&gt;
&lt;br /&gt;
I'm hesitant to suggest it ofc, because it's not a small task. I did it for Pillars of Eternity, alone, and it almost broke me, sapped me of energy. But having done it, I can use much of that code base (it largely remains intact I see, although I've not been active there for a year or two, and resigned as a wiki guardian). &lt;br /&gt;
&lt;br /&gt;
All in all this wouldn't be small matters of course, and a lot of work, but I do think it would benefit the wiki, and probably make it easier to update pages now that 1.0 is out, and there are likely to be fewer mass-changes going forward.&lt;br /&gt;
&lt;br /&gt;
Would be grand to hear some feedback about these ideas from the staff, ideally including [[User:Zesty|Zesty]]. If it's not agreeable by others, either as a whole or the individual ideas, then say so and we can end the discussion here. &lt;br /&gt;
&lt;br /&gt;
Thanks, [[User:Pangaea|Pangaea]] ([[User talk:Pangaea|talk]]) 11:40, 11 July 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
:(Brief draft here that can be deleted later)&lt;br /&gt;
&lt;br /&gt;
:Obviously needs a ton of changes as the colours are all messed up, but perhaps it gives a rough idea of what I had in mind? [https://i.imgur.com/JSPCqHT.jpg Imgur image of draft]. Wanted to test out using the background from the game as the background here (I seriously love that image, it really sets the mood for the game). The central content div is slightly transparent so the background image is visible, but without distorting the reading experience too much (Well, that's the end goal). Happy accident that the logo fits fairly well in the top left corner. Not sure what that gradient is about, but that should be altered as well so the whole logo shows. --[[User:Pangaea|Pangaea]] ([[User talk:Pangaea|talk]]) 19:06, 11 July 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Interesting. Tried to check how quickly pages are generated by using ''Edit -&amp;gt; Show preview'' and looking at the parser stuff on the bottom. Pages that use the Define template is routinely about 1.0 to 1.2 seconds slower than pages that use the infobox main template. Yet both contain similar amounts of SMW data. So it seems like it's the template that slows thing down, and not necessarily SMW. See if you get similar results. It's a pretty big difference when one type of page generates in 0.3-ish seconds, and another type in 1.5 seconds. [[User:Pangaea|Pangaea]] ([[User talk:Pangaea|talk]]) 12:03, 12 July 2019 (UTC)&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=Modding_Tutorials/ExposeData&amp;diff=65518</id>
		<title>Modding Tutorials/ExposeData</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=Modding_Tutorials/ExposeData&amp;diff=65518"/>
		<updated>2019-07-11T10:20:27Z</updated>

		<summary type="html">&lt;p&gt;Mehni: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{stub}}&lt;br /&gt;
{{BackToTutorials}}&lt;br /&gt;
&lt;br /&gt;
THIS IS A LINK: --&amp;gt; [https://spdskatr.github.io/RWModdingResources/saving-guide see this page]&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=Topic:V2wkppkulu3vltal&amp;topic_postId=v3a3cl4o4fqyxuh9&amp;topic_revId=v3a3cl4o4fqyxuh9&amp;action=single-view</id>
		<title>Topic:V2wkppkulu3vltal</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=Topic:V2wkppkulu3vltal&amp;topic_postId=v3a3cl4o4fqyxuh9&amp;topic_revId=v3a3cl4o4fqyxuh9&amp;action=single-view"/>
		<updated>2019-07-11T09:46:52Z</updated>

		<summary type="html">&lt;span class=&quot;plainlinks&quot;&gt;&lt;a href=&quot;/wiki/User:Mehni&quot; class=&quot;mw-userlink&quot; title=&quot;User:Mehni&quot;&gt;&lt;bdi&gt;Mehni&lt;/bdi&gt;&lt;/a&gt; &lt;span class=&quot;mw-usertoollinks&quot;&gt;(&lt;a href=&quot;/wiki/User_talk:Mehni&quot; class=&quot;mw-usertoollinks-talk&quot; title=&quot;User talk:Mehni&quot;&gt;talk&lt;/a&gt; | &lt;a href=&quot;/wiki/Special:Contributions/Mehni&quot; class=&quot;mw-usertoollinks-contribs&quot; title=&quot;Special:Contributions/Mehni&quot;&gt;contribs&lt;/a&gt;)&lt;/span&gt; &lt;a rel=&quot;nofollow&quot; class=&quot;external text&quot; href=&quot;https://rimworldwiki.com/index.php?title=Topic:V2wkppkulu3vltal&amp;amp;topic_showPostId=v3a3cl4o4fqyxuh9#flow-post-v3a3cl4o4fqyxuh9&quot;&gt;commented&lt;/a&gt; on &quot;Logging hint&quot; (&lt;em&gt;https://rimworldwiki.com/wiki/Modding_Tutorials/Harmony#Doesn.27t_seem_to_get_patched.3F Template:Br HarmonyInstance harmony = HarmonyIns...&lt;/em&gt;)&lt;/span&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=Topic:V2wkppkulu3vltal&amp;topic_postId=v2wkppkza7etmdfx&amp;topic_revId=v2wkppkza7etmdfx&amp;action=single-view</id>
		<title>Topic:V2wkppkulu3vltal</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=Topic:V2wkppkulu3vltal&amp;topic_postId=v2wkppkza7etmdfx&amp;topic_revId=v2wkppkza7etmdfx&amp;action=single-view"/>
		<updated>2019-07-05T08:08:39Z</updated>

		<summary type="html">&lt;span class=&quot;plainlinks&quot;&gt;&lt;a href=&quot;/wiki/User:Mehni&quot; class=&quot;mw-userlink&quot; title=&quot;User:Mehni&quot;&gt;&lt;bdi&gt;Mehni&lt;/bdi&gt;&lt;/a&gt; &lt;span class=&quot;mw-usertoollinks&quot;&gt;(&lt;a href=&quot;/wiki/User_talk:Mehni&quot; class=&quot;mw-usertoollinks-talk&quot; title=&quot;User talk:Mehni&quot;&gt;talk&lt;/a&gt; | &lt;a href=&quot;/wiki/Special:Contributions/Mehni&quot; class=&quot;mw-usertoollinks-contribs&quot; title=&quot;Special:Contributions/Mehni&quot;&gt;contribs&lt;/a&gt;)&lt;/span&gt; &lt;a rel=&quot;nofollow&quot; class=&quot;external text&quot; href=&quot;https://rimworldwiki.com/index.php?title=Topic:V2wkppkulu3vltal&amp;amp;topic_showPostId=v2wkppkza7etmdfx#flow-post-v2wkppkza7etmdfx&quot;&gt;commented&lt;/a&gt; on &quot;Logging hint&quot; (&lt;em&gt;What&amp;#039;s the advantage of Log.Message over using harmony.DEBUG = true? Very buggy transpilers will cause a non-functional game which doesn&amp;#039;...&lt;/em&gt;)&lt;/span&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=Modding_Tutorials/Harmony&amp;diff=63665</id>
		<title>Modding Tutorials/Harmony</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=Modding_Tutorials/Harmony&amp;diff=63665"/>
		<updated>2019-05-28T19:57:56Z</updated>

		<summary type="html">&lt;p&gt;Mehni: /* Doesn't seem to get patched? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{BackToTutorials}}&lt;br /&gt;
&lt;br /&gt;
'''[http://rimworldwiki.com/index.php?title=Modding_Tutorials/Injection&amp;amp;action=edit&amp;amp;redlink=1 Harmony] - A library for patching, replacing and decorating .NET and Mono methods during runtime'''&lt;br /&gt;
&lt;br /&gt;
Harmony is the current best practice for changing the runtime execution of code in RimWorld.&lt;br /&gt;
&lt;br /&gt;
To integrate Harmony into your mod for use, download the latest stable release and add it as a reference to your C# project. Make sure that you also include the dll, (0Harmony.dll) in your mod's assemblies folder. Please DO NOT use HugsLib for an &amp;quot;easy&amp;quot; Harmony implementation due to the fact that HugsLib becomes an unnecessary and unutilized dependency for mods and beginners grow accustomed to using HugsLib in all their mods even if they never touch HugsLib's API in their code. This is a bad practice, especially for beginners new to RimWorld Modding. Please only use HugsLib when you want to utilize some of its features!&lt;br /&gt;
&lt;br /&gt;
Harmony is great for running code patches before (Prefix) or after (Postfix) an existing method. Usually this is all you need for your Mod. Because this does not change existing functionality of RimWorld, it MOST LIKELY does not impact other mods and runs in parallel with other Harmony patches.&lt;br /&gt;
&lt;br /&gt;
''The snippets on this page are not meant as an exhaustive document on all things Harmony. Refer to the original documentation.'' This article is mostly a &amp;quot;this is what you can do&amp;quot; summary in 5 minutes.&lt;br /&gt;
&lt;br /&gt;
==Requirements==&lt;br /&gt;
* If you still haven't [[Modding_Tutorials/Setting up a solution|set up a solution]], you're not ready for Harmony.&lt;br /&gt;
* You need to be able to write a [[Modding_Tutorials/Hello World|Hello World]] program.&lt;br /&gt;
* You don't need to know the inner workings of JIT-compilation, reflection and inlining, but a basic understanding of C# and/or programming in general is assumed in this article.&lt;br /&gt;
&lt;br /&gt;
==Summary==&lt;br /&gt;
Harmony can alter the workings of any method. It offers three ways of doing this: prefixes, postfixes, and transpilers.&lt;br /&gt;
&lt;br /&gt;
===Prefix===&lt;br /&gt;
A prefix is a method that runs before the original method. It can have a return type of void or bool. If a bool returns false, the original method is skipped. This will cause compatibility issues if you're not very careful. This type of prefix may also prevent other prefixes from running.&lt;br /&gt;
&lt;br /&gt;
===Postfix===&lt;br /&gt;
A postfix is a method that runs after the original method. They are guaranteed to run. Postfixes can also alter the result. Use these for greatest compatibility.&lt;br /&gt;
&lt;br /&gt;
===Transpilers===&lt;br /&gt;
A transpiler is a set of CodeInstructions. These alter the inner working of the method. They use low-level IL-code, from System.Reflection and System.Reflection.Emit. Refer to MSDN and Harmony documentation for more info. Transpilers are difficult to debug and therefor hard to create/maintain/update. &lt;br /&gt;
&lt;br /&gt;
==Altering the result==&lt;br /&gt;
If the original method has a return type, you can alter its ''__result'' by passing it by ''ref''.&lt;br /&gt;
&lt;br /&gt;
==Pitfalls==&lt;br /&gt;
===Overuse===&lt;br /&gt;
Harmony is a fantastic tool, that you'll soon want to use for everything. Before you do that, consider the alternatives. Can you subclass? Can you use a ThingComp? A MapComponent? There may be viable alternatives without the added dependency.&lt;br /&gt;
===Not changing the result?===&lt;br /&gt;
Forgot to pass by ref.&lt;br /&gt;
===How do I return a value from a void or prefix?===&lt;br /&gt;
That's the magic. Harmony disconnects its own return type from the return type of the original method. Consider the following destructive prefix, which gives everyone perfect knowledge of trap locations:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
	[HarmonyPatch(typeof(Building_Trap))]&lt;br /&gt;
	[HarmonyPatch(nameof(Building_Trap.KnowsOfTrap)] //annotation boiler plate to tell Harmony what to patch. Refer to docs.&lt;br /&gt;
	static class Building_Trap_KnowsOfTrap_Patch&lt;br /&gt;
	{&lt;br /&gt;
		static bool Prefix(ref bool __result) //pass the __result by ref to alter it.&lt;br /&gt;
		{&lt;br /&gt;
			__result = true; //alter the result.&lt;br /&gt;
			return false; //return false to skip execution of the original.&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
===Getting the right method to patch===&lt;br /&gt;
'''AccessTools''' is a nice wrapper for reflection. The most reliable way of specifying the method to patch is by providing the Patch() method with MethodInfo. Standard System.Reflection also works. You will need to specify arguments for overloaded methods.&lt;br /&gt;
===Doesn't seem to get patched?===&lt;br /&gt;
Does your Log.Message() not show up? Set HarmonyInstance.DEBUG = true and check the new .txt file Harmony placed on your desktop. If you are trying to patch something that runs during game loading, you [[Modding_Tutorials/Hello_World#StaticConstructorOnStartup_vs_inheriting_from_Mod| may need bootstrap differently]]. Are you doing everything right? If the method you're patching is small, it may have been [https://en.wikipedia.org/wiki/Inline_expansion inlined.]&lt;br /&gt;
&lt;br /&gt;
==Bootstrapping==&lt;br /&gt;
Remember the [[Modding Tutorials/Hello World|Hello World]] tutorial? The [StaticConstructorOnStartUp] is a perfect starting point. Create your harmony instance in there, and use it to call PatchAll() or do your manual patching.&lt;br /&gt;
&lt;br /&gt;
== Links == &lt;br /&gt;
&lt;br /&gt;
[https://github.com/pardeike/Harmony/releases Harmony's Releases] - Link to Harmony's latest release(s) for download.&lt;br /&gt;
&lt;br /&gt;
[https://github.com/pardeike/Harmony/wiki Harmony's Wiki] - General outline of how to use Harmony&lt;br /&gt;
&lt;br /&gt;
[https://github.com/roxxploxx/RimWorldModGuide/wiki/SHORTTUTORIAL%3A-Harmony RimWorldModGuide on Harmony] - gives some concrete examples and helpful explanations&lt;br /&gt;
&lt;br /&gt;
[https://gist.github.com/pardeike/c02e29f9e030e6a016422ca8a89eefc9 Harmony's Author's Transpiler tutorial] - Tutorial and example of using Harmony Transpiler, with helpful links (inject your code inside a RimWorld class's code - #DeepMagic)&lt;br /&gt;
&lt;br /&gt;
[https://ludeon.com/forums/index.php?topic=29517 Harmony Thread] - Harmony thread on Ludeon Studio's Forum.  Announcements of new versions, and the forum in general is a reasonable place to ask questions.&lt;br /&gt;
&lt;br /&gt;
[https://github.com/RimWorld-CCL-Reborn/AlienRaces/blob/master/Source/AlienRace/AlienRace/HarmonyPatches.cs Alien races] - The unofficial Harmony encyclopedia. Dozens, if not hundreds of patches for all your cargo cult programming needs.&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=Topic:Uzww3oy54ey0soel&amp;topic_postId=v0i98p3bl5xbn3wt&amp;topic_revId=v0i98p3bl5xbn3wt&amp;action=single-view</id>
		<title>Topic:Uzww3oy54ey0soel</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=Topic:Uzww3oy54ey0soel&amp;topic_postId=v0i98p3bl5xbn3wt&amp;topic_revId=v0i98p3bl5xbn3wt&amp;action=single-view"/>
		<updated>2019-05-27T14:09:40Z</updated>

		<summary type="html">&lt;span class=&quot;plainlinks&quot;&gt;&lt;a href=&quot;/wiki/User:Mehni&quot; class=&quot;mw-userlink&quot; title=&quot;User:Mehni&quot;&gt;&lt;bdi&gt;Mehni&lt;/bdi&gt;&lt;/a&gt; &lt;span class=&quot;mw-usertoollinks&quot;&gt;(&lt;a href=&quot;/wiki/User_talk:Mehni&quot; class=&quot;mw-usertoollinks-talk&quot; title=&quot;User talk:Mehni&quot;&gt;talk&lt;/a&gt; | &lt;a href=&quot;/wiki/Special:Contributions/Mehni&quot; class=&quot;mw-usertoollinks-contribs&quot; title=&quot;Special:Contributions/Mehni&quot;&gt;contribs&lt;/a&gt;)&lt;/span&gt; &lt;a rel=&quot;nofollow&quot; class=&quot;external text&quot; href=&quot;https://rimworldwiki.com/index.php?title=Topic:Uzww3oy54ey0soel&amp;amp;topic_showPostId=v0i98p3bl5xbn3wt#flow-post-v0i98p3bl5xbn3wt&quot;&gt;commented&lt;/a&gt; on &quot;Writing Style&quot; (&lt;em&gt;By that logic: The RimWorld wiki is not Wikipedia. I could well argue that the addition of the &amp;quot;impressive template&amp;quot; to the Trees article...&lt;/em&gt;)&lt;/span&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=Topic:Uzww3oy54ey0soel&amp;topic_postId=v0ays1vbyccszurx&amp;topic_revId=v0ays1vbyccszurx&amp;action=single-view</id>
		<title>Topic:Uzww3oy54ey0soel</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=Topic:Uzww3oy54ey0soel&amp;topic_postId=v0ays1vbyccszurx&amp;topic_revId=v0ays1vbyccszurx&amp;action=single-view"/>
		<updated>2019-05-24T07:36:48Z</updated>

		<summary type="html">&lt;span class=&quot;plainlinks&quot;&gt;&lt;a href=&quot;/wiki/User:Mehni&quot; class=&quot;mw-userlink&quot; title=&quot;User:Mehni&quot;&gt;&lt;bdi&gt;Mehni&lt;/bdi&gt;&lt;/a&gt; &lt;span class=&quot;mw-usertoollinks&quot;&gt;(&lt;a href=&quot;/wiki/User_talk:Mehni&quot; class=&quot;mw-usertoollinks-talk&quot; title=&quot;User talk:Mehni&quot;&gt;talk&lt;/a&gt; | &lt;a href=&quot;/wiki/Special:Contributions/Mehni&quot; class=&quot;mw-usertoollinks-contribs&quot; title=&quot;Special:Contributions/Mehni&quot;&gt;contribs&lt;/a&gt;)&lt;/span&gt; &lt;a rel=&quot;nofollow&quot; class=&quot;external text&quot; href=&quot;https://rimworldwiki.com/index.php?title=Topic:Uzww3oy54ey0soel&amp;amp;topic_showPostId=v0ays1vbyccszurx#flow-post-v0ays1vbyccszurx&quot;&gt;commented&lt;/a&gt; on &quot;Writing Style&quot; (&lt;em&gt;If you&amp;#039;re going to start a strawman argument, at least get it right. It was [[1]] which kicked off the fun. I wrote it because people on...&lt;/em&gt;)&lt;/span&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=Topic:Uzww3oy54ey0soel&amp;topic_postId=v08vht7fnbw4rk3x&amp;topic_revId=v08vht7fnbw4rk3x&amp;action=single-view</id>
		<title>Topic:Uzww3oy54ey0soel</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=Topic:Uzww3oy54ey0soel&amp;topic_postId=v08vht7fnbw4rk3x&amp;topic_revId=v08vht7fnbw4rk3x&amp;action=single-view"/>
		<updated>2019-05-23T09:04:58Z</updated>

		<summary type="html">&lt;span class=&quot;plainlinks&quot;&gt;&lt;a href=&quot;/wiki/User:Mehni&quot; class=&quot;mw-userlink&quot; title=&quot;User:Mehni&quot;&gt;&lt;bdi&gt;Mehni&lt;/bdi&gt;&lt;/a&gt; &lt;span class=&quot;mw-usertoollinks&quot;&gt;(&lt;a href=&quot;/wiki/User_talk:Mehni&quot; class=&quot;mw-usertoollinks-talk&quot; title=&quot;User talk:Mehni&quot;&gt;talk&lt;/a&gt; | &lt;a href=&quot;/wiki/Special:Contributions/Mehni&quot; class=&quot;mw-usertoollinks-contribs&quot; title=&quot;Special:Contributions/Mehni&quot;&gt;contribs&lt;/a&gt;)&lt;/span&gt; &lt;a rel=&quot;nofollow&quot; class=&quot;external text&quot; href=&quot;https://rimworldwiki.com/index.php?title=Topic:Uzww3oy54ey0soel&amp;amp;topic_showPostId=v08vht7fnbw4rk3x#flow-post-v08vht7fnbw4rk3x&quot;&gt;commented&lt;/a&gt; on &quot;Writing Style&quot; (&lt;em&gt;Your response to &amp;quot;articles are vague and don&amp;#039;t get to the point&amp;quot; is a vague reply which doesn&amp;#039;t get to the point. Shame. What&amp;#039;s also a sh...&lt;/em&gt;)&lt;/span&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=Modding_Tutorials/Setting_up_a_solution&amp;diff=63598</id>
		<title>Modding Tutorials/Setting up a solution</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=Modding_Tutorials/Setting_up_a_solution&amp;diff=63598"/>
		<updated>2019-05-23T08:45:42Z</updated>

		<summary type="html">&lt;p&gt;Mehni: Undo revision 63594 by Netdoorz (talk)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{BackToTutorials}}&lt;br /&gt;
{{Credit|[[User:Alistaire|Alistaire]]}}&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In this tutorial you will learn how to set up a solution, along with instructions on setting the output directory and files for more convenient building right into the Assemblies folder.&lt;br /&gt;
&lt;br /&gt;
=Requirements=&lt;br /&gt;
&lt;br /&gt;
* The manual option in this tutorial requires you to have [[Modding_Tutorials/Mod_folder_structure#The Source and Assemblies folders|set up a Source and Assemblies folder]] (the Visual Studio automatic option sets this up for you).&lt;br /&gt;
* You will want to have an IDE installed: [[Modding Tutorials/Recommended software#IDE's|Recommended IDE's]].&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Setting up a solution=&lt;br /&gt;
Setting up can be different for different IDE's. Feel free to add '''''complete''''' instructions for your IDE of choice.&lt;br /&gt;
&lt;br /&gt;
===Visual Studio Community 2017===&lt;br /&gt;
''NOTE: Visual Studio 2017 is a rather heavy application (2-3 GB for basic functionality) but has a bit more functionality. Only Install if your computer can handle it! The tutorial is similar for Visual Studio 2015.''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Option 1 (Manual Method):====&lt;br /&gt;
# Create a new class library project&lt;br /&gt;
## Once loaded, go to File -&amp;gt; New -&amp;gt; Project...&lt;br /&gt;
## Go to Templates -&amp;gt; Visual C# -&amp;gt; Class Library (Be sure to select the *.NET Framework* version, not *.NET Standard*) [[File:Capture.png|200px|thumb|right|Installing the .NET framework]]&lt;br /&gt;
## Enter your name and solution name in the lower pane.&lt;br /&gt;
## Choose a location, preferably:&amp;lt;br/&amp;gt;&amp;lt;pre&amp;gt;(RimWorldInstallFolder)/Mods/(YourModName)/Source&amp;lt;/pre&amp;gt;&lt;br /&gt;
## ''Optional'': Untick &amp;quot;Create directory for solution&amp;quot;&lt;br /&gt;
# In your project, set target framework and various other porperties&lt;br /&gt;
## In your Solution Explorer, right click your project -&amp;gt; Properties&lt;br /&gt;
## Once in your properties, select Application -&amp;gt; Set Target Framework to .NET Framework 3.5 (No client profile)&lt;br /&gt;
## ''Optional'': Change your Assembly and Namespace names to anything of your choice&lt;br /&gt;
## Go to Build -&amp;gt; Advanced... and set &amp;quot;Debugging information&amp;quot; to none&lt;br /&gt;
## Leave Advanced..., and set the Output Path to &amp;quot;..\..\Assemblies\&amp;quot; (The Assemblies folder in your mod folder)&lt;br /&gt;
# Add references to RimWorld code&lt;br /&gt;
## Expand your project. Then right click &amp;quot;References&amp;quot; -&amp;gt; Add Reference...&lt;br /&gt;
## Click Browse...&lt;br /&gt;
## Navigate towards &amp;lt;pre&amp;gt;RimWorld******/RimWorld******_Data/Managed&amp;lt;/pre&amp;gt; and select files: &amp;lt;br/&amp;gt;&amp;lt;pre&amp;gt;Assembly-CSharp.dll&amp;amp;#10;UnityEngine.dll&amp;lt;/pre&amp;gt;&lt;br /&gt;
## Click &amp;quot;Add&amp;quot;&lt;br /&gt;
## Click &amp;quot;OK&amp;quot; to close the Reference Manager.&lt;br /&gt;
## Right click on both Assembly-CSharp.dll and UnityEngine.dll and set Copy Local to False (Properties pane).&lt;br /&gt;
&lt;br /&gt;
====Option 2 (Automatic Method):====&lt;br /&gt;
This option uses the [https://ludeon.com/forums/index.php?topic=39038.0 Rimworld Mod Development Cookiecutter] tool.&amp;lt;/br&amp;gt;&lt;br /&gt;
'''Note: despite being automatic and potentially taking away some of the tedium away, the environment it sets up is very particular and this tool is currently not recommended for newcomers.'''&amp;lt;/br&amp;gt;&lt;br /&gt;
''As of Jan 2019, the cookiecutter is set up for Windows development.  Linux/Mac people can still use it, but they will have a few errors to clean up.''&amp;lt;/br&amp;gt;&lt;br /&gt;
# Open Visual Studio&lt;br /&gt;
# Once loaded, go to File -&amp;gt; New -&amp;gt; From Cookiecutter...&lt;br /&gt;
# Search for ''rimworld''&lt;br /&gt;
# Double-click ''cookiecutter-rimworld-mod-development''&lt;br /&gt;
# Change the Template Options:&lt;br /&gt;
## ''Create To'' =&amp;gt; ''Your/Rimworld/Mod/Directory''&lt;br /&gt;
## ''mod_name''&lt;br /&gt;
## ''namespace_name'' (don't change if unsure)&lt;br /&gt;
## ''author'' =&amp;gt; ''your steam username''&lt;br /&gt;
## ''target_version'' =&amp;gt; current RW version (can leave blank for most up-to-date)&lt;br /&gt;
## ''in_game_description'' (not required, can change later in About-Release.xml)&lt;br /&gt;
## ''url'' (can leave blank for link to your Steam Workshop profile)&lt;br /&gt;
# Click &amp;quot;Create and Open Folder&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===Sharpdevelop===&lt;br /&gt;
'''Caution:''' Sharpdevelop (or #develop) does NOT CURRENTLY allow for C# 6.0+ syntax without plugins and does NOT ALLOW for C# 7.0+ syntax at all. For your average project this does not matter, however some existing projects are already built entirely upon C# 6.0+ syntax which can not be compiled anymore in Sharpdevelop. Visual Studio does not have these issues and should be your go-to for compiling large projects such as Combat Extended.&lt;br /&gt;
&lt;br /&gt;
# Create a new class library project in your [[Modding Tutorials/Recommended software#IDE.27s|IDE of choice]];&lt;br /&gt;
## Go to File -&amp;gt; New -&amp;gt; Solution;&lt;br /&gt;
## Go to C# or .NET -&amp;gt; Library or Class Library (NOT portable);&lt;br /&gt;
## Enter a project name (solution name automatically updated);&lt;br /&gt;
## Choose a location, preferably:&amp;lt;br/&amp;gt;&amp;lt;pre&amp;gt;(RimWorldInstallFolder)/Mods/(YourModName)/Source&amp;lt;/pre&amp;gt;&lt;br /&gt;
## ''Optional'': Untick &amp;quot;Create a directory for solution&amp;quot;/&amp;quot;Create a project within the solution directory&amp;quot;,&lt;br /&gt;
# In your project, add references to Assembly-CSharp.dll and UnityEngine.dll:&lt;br /&gt;
## In your IDE project file browser, right-click the &amp;quot;References&amp;quot; folder and &amp;quot;Add reference&amp;quot;;&lt;br /&gt;
## Choose the &amp;quot;.NET Assembly Browser&amp;quot; tab and &amp;quot;Browse...&amp;quot;;&lt;br /&gt;
## Navigate towards &amp;lt;pre&amp;gt;RimWorld******/RimWorld******_Data/Managed&amp;lt;/pre&amp;gt; and select files: &amp;lt;br/&amp;gt;&amp;lt;pre&amp;gt;Assembly-CSharp.dll&amp;amp;#10;UnityEngine.dll&amp;lt;/pre&amp;gt;&lt;br /&gt;
## Click &amp;quot;Open&amp;quot; then &amp;quot;OK&amp;quot;;&lt;br /&gt;
## In the References folder, right-click Assembly-CSharp -&amp;gt; Properties and change &amp;quot;Local copy&amp;quot; to False. Do the same for UnityEngine,&lt;br /&gt;
# In your project properties, change the target framework to .NET 3.5:&lt;br /&gt;
## In your IDE project file browser, right-click &amp;quot;(YourSolutionName)&amp;quot;;&lt;br /&gt;
## Choose Properties;&lt;br /&gt;
## Go to the &amp;quot;Compiling&amp;quot; tab, &amp;quot;Output&amp;quot;, &amp;quot;Target framework&amp;quot;, &amp;quot;Change&amp;quot; and choose &amp;quot;.NET Framework 3.5&amp;quot;,&lt;br /&gt;
# In your project properties, change the build events so only a single file is built:&lt;br /&gt;
## Go to the &amp;quot;Compiling&amp;quot; tab, &amp;quot;Output&amp;quot;, &amp;quot;Debug info&amp;quot; and choose &amp;quot;No debug information&amp;quot;;&lt;br /&gt;
## Right-click your .cs files -&amp;gt; Properties and change &amp;quot;Copy to output&amp;quot; (If you haven't resized the properties bar, this will be truncated to &amp;quot;Copy to out&amp;quot;) to Never,&lt;br /&gt;
# In your project properties, fix the output location to put the DLL in the Assemblies folder:&lt;br /&gt;
## Go to the &amp;quot;Compiling&amp;quot; tab, &amp;quot;Output&amp;quot;, &amp;quot;Output path&amp;quot; and change the output path to &amp;quot;..\..\Assemblies\&amp;quot;.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Xamarin/MonoDevelop===&lt;br /&gt;
The setup is similar as the one above. A few special points to address:&lt;br /&gt;
# Mono 4.X isn't backward compatible so you may need to install an older 3.X version of Mono in order to compile against .NET3.5 dlls.&lt;br /&gt;
# Make sure you uncheck &amp;quot;Use MSBuild build engine (recommended for this project type)&amp;quot; under project &amp;gt; options &amp;gt; build &amp;gt; general   (You might find this by right-clicking on your project - not solution - name and selecting options)&lt;br /&gt;
# Changing the framework to 3.5 can be found (for Linux anyway) in the same place.&lt;br /&gt;
&lt;br /&gt;
More detailed installation instructions for Linux can be found [https://blog.rubenwardy.com/2016/07/21/rimworld-setup-monodevelop/ here] and [https://spdskatr.github.io/RWModdingResources/mono-arch here].&lt;br /&gt;
&lt;br /&gt;
===Rider (good for Mac)===&lt;br /&gt;
JetBrains Rider is a great cross-platform C# IDE, but it isn't cheap. It's $140 for the first year, including perpetual access to that version (access to future updates gets cheaper, but it's still over $100/year). However, the Early Access versions are a bit unstable but free. They also offer free student licenses.&lt;br /&gt;
&lt;br /&gt;
# Open Rider and click New Solution in the welcome dialog.&lt;br /&gt;
## Click Class Library under .NET on the left. The option may a second to show up.&lt;br /&gt;
## Under Solution Name (and Project Name), enter the name of your mod.&lt;br /&gt;
## Set the Solution Directory to [your mod folder]/Source.&lt;br /&gt;
## Optionally check &amp;quot;put solution and project in the same directory.&amp;quot; This is probably a good idea.&lt;br /&gt;
## Change Framework to .Net Framework 3.5.&lt;br /&gt;
## Click Create.&lt;br /&gt;
# In the left side bar, expand your solution, right click your project (mod name with &amp;quot;C#&amp;quot; icon) and click Properties.&lt;br /&gt;
## In the Properties window, select Configurations &amp;gt; Debug on the left and uncheck Debug Symbols.&lt;br /&gt;
## For both configurations, change the Output Path to ../../Assemblies.&lt;br /&gt;
## Click OK.&lt;br /&gt;
# Expand your project, right click References and click Add Reference.&lt;br /&gt;
## Click Add From.&lt;br /&gt;
## Browse to the folder with the RimWorld DLLs (Mac: /Users/[username]/Library/Application Support/Steam/steamapps/common/RimWorld/RimWorldMac.app/Contents/Resources/Data/Managed).&lt;br /&gt;
## Select both Assembly-CSharp.dll and UnityEngine.dll and click OK.&lt;br /&gt;
## Expand Assemblies under References. For both of the assemblies that you just added:&lt;br /&gt;
### Right click the assembly and click Properties.&lt;br /&gt;
### Uncheck &amp;quot;Copy Local&amp;quot; (you may need to scroll down) and click OK.&lt;br /&gt;
&lt;br /&gt;
You're done! Note that Rider has a built-in decompiler—to view the source of a RimWorld class or method, just right-click its name and click Go To &amp;gt; Definition.&lt;br /&gt;
&lt;br /&gt;
=Common issues=&lt;br /&gt;
* Can't find the option to target .NET Framework 3.5? Due to its age, it may require additional installation steps. In Visual Studio, Tools =&amp;gt; Get Tools and features =&amp;gt; Individual Components =&amp;gt; Select ''.NET Framework 3.5 development tools'' (or google installation instructions). Also make sure your project is a ''Class Library (.NET '''Framework''')''. Not .NET Core or .NET Standard. &lt;br /&gt;
&lt;br /&gt;
=See also=&lt;br /&gt;
* [[Modding Tutorials/Writing custom code|Writing custom code]] continues on setting up your solution.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Modding tutorials]]&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=Topic:Uzz3xpej2jcko1ot&amp;topic_postId=v02qd7qksuzfr631&amp;topic_revId=v02qd7qksuzfr631&amp;action=single-view</id>
		<title>Topic:Uzz3xpej2jcko1ot</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=Topic:Uzz3xpej2jcko1ot&amp;topic_postId=v02qd7qksuzfr631&amp;topic_revId=v02qd7qksuzfr631&amp;action=single-view"/>
		<updated>2019-05-20T14:54:18Z</updated>

		<summary type="html">&lt;span class=&quot;plainlinks&quot;&gt;&lt;a href=&quot;/wiki/User:Mehni&quot; class=&quot;mw-userlink&quot; title=&quot;User:Mehni&quot;&gt;&lt;bdi&gt;Mehni&lt;/bdi&gt;&lt;/a&gt; &lt;span class=&quot;mw-usertoollinks&quot;&gt;(&lt;a href=&quot;/wiki/User_talk:Mehni&quot; class=&quot;mw-usertoollinks-talk&quot; title=&quot;User talk:Mehni&quot;&gt;talk&lt;/a&gt; | &lt;a href=&quot;/wiki/Special:Contributions/Mehni&quot; class=&quot;mw-usertoollinks-contribs&quot; title=&quot;Special:Contributions/Mehni&quot;&gt;contribs&lt;/a&gt;)&lt;/span&gt; &lt;a rel=&quot;nofollow&quot; class=&quot;external text&quot; href=&quot;https://rimworldwiki.com/index.php?title=Topic:Uzz3xpej2jcko1ot&amp;amp;topic_showPostId=v02qd7qksuzfr631#flow-post-v02qd7qksuzfr631&quot;&gt;commented&lt;/a&gt; on &quot;Where do the weight numbers come from for Sight?&quot; (&lt;em&gt;Could well be outdated information. The game itself should be considered the primary source of information, if you find something in-game...&lt;/em&gt;)&lt;/span&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=Topic:Uzww3oy54ey0soel&amp;topic_postId=v02q3vq7nha0880d&amp;topic_revId=v02q3vq7nha0880d&amp;action=single-view</id>
		<title>Topic:Uzww3oy54ey0soel</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=Topic:Uzww3oy54ey0soel&amp;topic_postId=v02q3vq7nha0880d&amp;topic_revId=v02q3vq7nha0880d&amp;action=single-view"/>
		<updated>2019-05-20T14:49:39Z</updated>

		<summary type="html">&lt;span class=&quot;plainlinks&quot;&gt;&lt;a href=&quot;/wiki/User:Mehni&quot; class=&quot;mw-userlink&quot; title=&quot;User:Mehni&quot;&gt;&lt;bdi&gt;Mehni&lt;/bdi&gt;&lt;/a&gt; &lt;span class=&quot;mw-usertoollinks&quot;&gt;(&lt;a href=&quot;/wiki/User_talk:Mehni&quot; class=&quot;mw-usertoollinks-talk&quot; title=&quot;User talk:Mehni&quot;&gt;talk&lt;/a&gt; | &lt;a href=&quot;/wiki/Special:Contributions/Mehni&quot; class=&quot;mw-usertoollinks-contribs&quot; title=&quot;Special:Contributions/Mehni&quot;&gt;contribs&lt;/a&gt;)&lt;/span&gt; &lt;a rel=&quot;nofollow&quot; class=&quot;external text&quot; href=&quot;https://rimworldwiki.com/index.php?title=Topic:Uzww3oy54ey0soel&amp;amp;topic_showPostId=v02q3vq7nha0880d#flow-post-v02q3vq7nha0880d&quot;&gt;commented&lt;/a&gt; on &quot;Writing Style&quot; (&lt;em&gt;&amp;gt; It is very unlikely that such a measure will take effect coming from a new user with few edit counts and no considerable amount of inpu...&lt;/em&gt;)&lt;/span&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=Topic:Uzw3pgwmffhu53f1&amp;topic_postId=uzw3pgwpjod4tgul&amp;topic_revId=uzw3pgwpjod4tgul&amp;action=single-view</id>
		<title>Topic:Uzw3pgwmffhu53f1</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=Topic:Uzw3pgwmffhu53f1&amp;topic_postId=uzw3pgwpjod4tgul&amp;topic_revId=uzw3pgwpjod4tgul&amp;action=single-view"/>
		<updated>2019-05-17T15:28:51Z</updated>

		<summary type="html">&lt;span class=&quot;plainlinks&quot;&gt;&lt;a href=&quot;/wiki/User:Mehni&quot; class=&quot;mw-userlink&quot; title=&quot;User:Mehni&quot;&gt;&lt;bdi&gt;Mehni&lt;/bdi&gt;&lt;/a&gt; &lt;span class=&quot;mw-usertoollinks&quot;&gt;(&lt;a href=&quot;/wiki/User_talk:Mehni&quot; class=&quot;mw-usertoollinks-talk&quot; title=&quot;User talk:Mehni&quot;&gt;talk&lt;/a&gt; | &lt;a href=&quot;/wiki/Special:Contributions/Mehni&quot; class=&quot;mw-usertoollinks-contribs&quot; title=&quot;Special:Contributions/Mehni&quot;&gt;contribs&lt;/a&gt;)&lt;/span&gt; &lt;a rel=&quot;nofollow&quot; class=&quot;external text&quot; href=&quot;https://rimworldwiki.com/index.php?title=Topic:Uzw3pgwmffhu53f1&amp;amp;topic_showPostId=uzw3pgwpjod4tgul#flow-post-uzw3pgwpjod4tgul&quot;&gt;commented&lt;/a&gt; on &quot;Spam&quot; (&lt;em&gt;Just a headsup, I had to remove some spam from an article. Links to commits: https://rimworldwiki.com/index.php?title=Modding_Tutorials/S...&lt;/em&gt;)&lt;/span&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=Modding_Tutorials/Setting_up_a_solution&amp;diff=63520</id>
		<title>Modding Tutorials/Setting up a solution</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=Modding_Tutorials/Setting_up_a_solution&amp;diff=63520"/>
		<updated>2019-05-17T15:21:37Z</updated>

		<summary type="html">&lt;p&gt;Mehni: Remove spam.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{BackToTutorials}}&lt;br /&gt;
{{Credit|[[User:Alistaire|Alistaire]]}}&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In this tutorial you will learn how to set up a solution, along with instructions on setting the output directory and files for more convenient building right into the Assemblies folder.&lt;br /&gt;
&lt;br /&gt;
=Requirements=&lt;br /&gt;
&lt;br /&gt;
* The manual option in this tutorial requires you to have [[Modding_Tutorials/Mod_folder_structure#The Source and Assemblies folders|set up a Source and Assemblies folder]] (the Visual Studio automatic option sets this up for you).&lt;br /&gt;
* You will want to have an IDE installed: [[Modding Tutorials/Recommended software#IDE's|Recommended IDE's]].&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Setting up a solution=&lt;br /&gt;
Setting up can be different for different IDE's. Feel free to add '''''complete''''' instructions for your IDE of choice.&lt;br /&gt;
&lt;br /&gt;
===Visual Studio Community 2017===&lt;br /&gt;
''NOTE: Visual Studio 2017 is a rather heavy application (2-3 GB for basic functionality) but has a bit more functionality. Only Install if your computer can handle it! The tutorial is similar for Visual Studio 2015.''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Option 1 (Manual Method):====&lt;br /&gt;
# Create a new class library project&lt;br /&gt;
## Once loaded, go to File -&amp;gt; New -&amp;gt; Project...&lt;br /&gt;
## Go to Templates -&amp;gt; Visual C# -&amp;gt; Class Library (Be sure to select the *.NET Framework* version, not *.NET Standard*) [[File:Capture.png|200px|thumb|right|Installing the .NET framework]]&lt;br /&gt;
## Enter your name and solution name in the lower pane.&lt;br /&gt;
## Choose a location, preferably:&amp;lt;br/&amp;gt;&amp;lt;pre&amp;gt;(RimWorldInstallFolder)/Mods/(YourModName)/Source&amp;lt;/pre&amp;gt;&lt;br /&gt;
## ''Optional'': Untick &amp;quot;Create directory for solution&amp;quot;&lt;br /&gt;
# In your project, set target framework and various other porperties&lt;br /&gt;
## In your Solution Explorer, right click your project -&amp;gt; Properties&lt;br /&gt;
## Once in your properties, select Application -&amp;gt; Set Target Framework to .NET Framework 3.5 (No client profile)&lt;br /&gt;
## ''Optional'': Change your Assembly and Namespace names to anything of your choice&lt;br /&gt;
## Go to Build -&amp;gt; Advanced... and set &amp;quot;Debugging information&amp;quot; to none&lt;br /&gt;
## Leave Advanced..., and set the Output Path to &amp;quot;..\..\Assemblies\&amp;quot; (The Assemblies folder in your mod folder)&lt;br /&gt;
# Add references to RimWorld code&lt;br /&gt;
## Expand your project. Then right click &amp;quot;References&amp;quot; -&amp;gt; Add Reference...&lt;br /&gt;
## Click Browse...&lt;br /&gt;
## Navigate towards &amp;lt;pre&amp;gt;RimWorld******/RimWorld******_Data/Managed&amp;lt;/pre&amp;gt; and select files: &amp;lt;br/&amp;gt;&amp;lt;pre&amp;gt;Assembly-CSharp.dll&amp;amp;#10;UnityEngine.dll&amp;lt;/pre&amp;gt;&lt;br /&gt;
## Click &amp;quot;Add&amp;quot;&lt;br /&gt;
## Click &amp;quot;OK&amp;quot; to close the Reference Manager.&lt;br /&gt;
## Right click on both Assembly-CSharp.dll and UnityEngine.dll and set Copy Local to False (Properties pane).&lt;br /&gt;
&lt;br /&gt;
====Option 2 (Automatic Method):====&lt;br /&gt;
This option uses the [https://ludeon.com/forums/index.php?topic=39038.0 Rimworld Mod Development Cookiecutter] tool.&amp;lt;/br&amp;gt;&lt;br /&gt;
'''Note: despite being automatic and potentially taking away some of the tedium away, the environment it sets up is very particular and this tool is currently not recommended for newcomers.'''&amp;lt;/br&amp;gt;&lt;br /&gt;
''As of Jan 2019, the cookiecutter is set up for Windows development.  Linux/Mac people can still use it, but they will have a few errors to clean up.''&amp;lt;/br&amp;gt;&lt;br /&gt;
# Open Visual Studio&lt;br /&gt;
# Once loaded, go to File -&amp;gt; New -&amp;gt; From Cookiecutter...&lt;br /&gt;
# Search for ''rimworld''&lt;br /&gt;
# Double-click ''cookiecutter-rimworld-mod-development''&lt;br /&gt;
# Change the Template Options:&lt;br /&gt;
## ''Create To'' =&amp;gt; ''Your/Rimworld/Mod/Directory''&lt;br /&gt;
## ''mod_name''&lt;br /&gt;
## ''namespace_name'' (don't change if unsure)&lt;br /&gt;
## ''author'' =&amp;gt; ''your steam username''&lt;br /&gt;
## ''target_version'' =&amp;gt; current RW version (can leave blank for most up-to-date)&lt;br /&gt;
## ''in_game_description'' (not required, can change later in About-Release.xml)&lt;br /&gt;
## ''url'' (can leave blank for link to your Steam Workshop profile)&lt;br /&gt;
# Click &amp;quot;Create and Open Folder&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===Sharpdevelop===&lt;br /&gt;
'''Caution:''' Sharpdevelop (or #develop) does NOT CURRENTLY allow for C# 6.0+ syntax without plugins and does NOT ALLOW for C# 7.0+ syntax at all. For your average project this does not matter, however some existing projects are already built entirely upon C# 6.0+ syntax which can not be compiled anymore in Sharpdevelop. Visual Studio does not have these issues and should be your go-to for compiling large projects such as Combat Extended.&lt;br /&gt;
&lt;br /&gt;
# Create a new class library project in your [[Modding Tutorials/Recommended software#IDE.27s|IDE of choice]];&lt;br /&gt;
## Go to File -&amp;gt; New -&amp;gt; Solution;&lt;br /&gt;
## Go to C# or .NET -&amp;gt; Library or Class Library (NOT portable);&lt;br /&gt;
## Enter a project name (solution name automatically updated);&lt;br /&gt;
## Choose a location, preferably:&amp;lt;br/&amp;gt;&amp;lt;pre&amp;gt;(RimWorldInstallFolder)/Mods/(YourModName)/Source&amp;lt;/pre&amp;gt;&lt;br /&gt;
## ''Optional'': Untick &amp;quot;Create a directory for solution&amp;quot;/&amp;quot;Create a project within the solution directory&amp;quot;,&lt;br /&gt;
# In your project, add references to Assembly-CSharp.dll and UnityEngine.dll:&lt;br /&gt;
## In your IDE project file browser, right-click the &amp;quot;References&amp;quot; folder and &amp;quot;Add reference&amp;quot;;&lt;br /&gt;
## Choose the &amp;quot;.NET Assembly Browser&amp;quot; tab and &amp;quot;Browse...&amp;quot;;&lt;br /&gt;
## Navigate towards &amp;lt;pre&amp;gt;RimWorld******/RimWorld******_Data/Managed&amp;lt;/pre&amp;gt; and select files: &amp;lt;br/&amp;gt;&amp;lt;pre&amp;gt;Assembly-CSharp.dll&amp;amp;#10;UnityEngine.dll&amp;lt;/pre&amp;gt;&lt;br /&gt;
## Click &amp;quot;Open&amp;quot; then &amp;quot;OK&amp;quot;;&lt;br /&gt;
## In the References folder, right-click Assembly-CSharp -&amp;gt; Properties and change &amp;quot;Local copy&amp;quot; to False. Do the same for UnityEngine,&lt;br /&gt;
# In your project properties, change the target framework to .NET 3.5:&lt;br /&gt;
## In your IDE project file browser, right-click &amp;quot;(YourSolutionName)&amp;quot;;&lt;br /&gt;
## Choose Properties;&lt;br /&gt;
## Go to the &amp;quot;Compiling&amp;quot; tab, &amp;quot;Output&amp;quot;, &amp;quot;Target framework&amp;quot;, &amp;quot;Change&amp;quot; and choose &amp;quot;.NET Framework 3.5&amp;quot;,&lt;br /&gt;
# In your project properties, change the build events so only a single file is built:&lt;br /&gt;
## Go to the &amp;quot;Compiling&amp;quot; tab, &amp;quot;Output&amp;quot;, &amp;quot;Debug info&amp;quot; and choose &amp;quot;No debug information&amp;quot;;&lt;br /&gt;
## Right-click your .cs files -&amp;gt; Properties and change &amp;quot;Copy to output&amp;quot; (If you haven't resized the properties bar, this will be truncated to &amp;quot;Copy to out&amp;quot;) to Never,&lt;br /&gt;
# In your project properties, fix the output location to put the DLL in the Assemblies folder:&lt;br /&gt;
## Go to the &amp;quot;Compiling&amp;quot; tab, &amp;quot;Output&amp;quot;, &amp;quot;Output path&amp;quot; and change the output path to &amp;quot;..\..\Assemblies\&amp;quot;.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Xamarin/MonoDevelop===&lt;br /&gt;
The setup is similar as the one above. A few special points to address:&lt;br /&gt;
# Mono 4.X isn't backward compatible so you may need to install an older 3.X version of Mono in order to compile against .NET3.5 dlls.&lt;br /&gt;
# Make sure you uncheck &amp;quot;Use MSBuild build engine (recommended for this project type)&amp;quot; under project &amp;gt; options &amp;gt; build &amp;gt; general   (You might find this by right-clicking on your project - not solution - name and selecting options)&lt;br /&gt;
# Changing the framework to 3.5 can be found (for Linux anyway) in the same place.&lt;br /&gt;
&lt;br /&gt;
More detailed installation instructions for Linux can be found [https://blog.rubenwardy.com/2016/07/21/rimworld-setup-monodevelop/ here] and [https://spdskatr.github.io/RWModdingResources/mono-arch here].&lt;br /&gt;
&lt;br /&gt;
===Rider (good for Mac)===&lt;br /&gt;
JetBrains Rider is a great cross-platform C# IDE, but it isn't cheap. It's $140 for the first year, including perpetual access to that version (access to future updates gets cheaper, but it's still over $100/year). However, the Early Access versions are a bit unstable but free. They also offer free student licenses.&lt;br /&gt;
&lt;br /&gt;
# Open Rider and click New Solution in the welcome dialog.&lt;br /&gt;
## Click Class Library under .NET on the left. The option may a second to show up.&lt;br /&gt;
## Under Solution Name (and Project Name), enter the name of your mod.&lt;br /&gt;
## Set the Solution Directory to [your mod folder]/Source.&lt;br /&gt;
## Optionally check &amp;quot;put solution and project in the same directory.&amp;quot; This is probably a good idea.&lt;br /&gt;
## Change Framework to .Net Framework 3.5.&lt;br /&gt;
## Click Create.&lt;br /&gt;
# In the left side bar, expand your solution, right click your project (mod name with &amp;quot;C#&amp;quot; icon) and click Properties.&lt;br /&gt;
## In the Properties window, select Configurations &amp;gt; Debug on the left and uncheck Debug Symbols.&lt;br /&gt;
## For both configurations, change the Output Path to ../../Assemblies.&lt;br /&gt;
## Click OK.&lt;br /&gt;
# Expand your project, right click References and click Add Reference.&lt;br /&gt;
## Click Add From.&lt;br /&gt;
## Browse to the folder with the RimWorld DLLs (Mac: /Users/[username]/Library/Application Support/Steam/steamapps/common/RimWorld/RimWorldMac.app/Contents/Resources/Data/Managed).&lt;br /&gt;
## Select both Assembly-CSharp.dll and UnityEngine.dll and click OK.&lt;br /&gt;
## Expand Assemblies under References. For both of the assemblies that you just added:&lt;br /&gt;
### Right click the assembly and click Properties.&lt;br /&gt;
### Uncheck &amp;quot;Copy Local&amp;quot; (you may need to scroll down) and click OK.&lt;br /&gt;
&lt;br /&gt;
You're done! Note that Rider has a built-in decompiler—to view the source of a RimWorld class or method, just right-click its name and click Go To &amp;gt; Definition.&lt;br /&gt;
&lt;br /&gt;
=Common issues=&lt;br /&gt;
* Can't find the option to target .NET Framework 3.5? Due to its age, it may require additional installation steps. In Visual Studio, Tools =&amp;gt; Get Tools and features =&amp;gt; Individual Components =&amp;gt; Select ''.NET Framework 3.5 development tools'' (or google installation instructions). Also make sure your project is a ''Class Library (.NET '''Framework''')''. Not .NET Core or .NET Standard. &lt;br /&gt;
&lt;br /&gt;
=See also=&lt;br /&gt;
* [[Modding Tutorials/Writing custom code|Writing custom code]] continues on setting up your solution.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Modding tutorials]]&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=Topic:Uza87prq17ptbf65&amp;topic_postId=uzg9m27dx5rmd66l&amp;topic_revId=uzg9m27dx5rmd66l&amp;action=single-view</id>
		<title>Topic:Uza87prq17ptbf65</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=Topic:Uza87prq17ptbf65&amp;topic_postId=uzg9m27dx5rmd66l&amp;topic_revId=uzg9m27dx5rmd66l&amp;action=single-view"/>
		<updated>2019-05-10T12:52:00Z</updated>

		<summary type="html">&lt;span class=&quot;plainlinks&quot;&gt;&lt;a href=&quot;/wiki/User:Mehni&quot; class=&quot;mw-userlink&quot; title=&quot;User:Mehni&quot;&gt;&lt;bdi&gt;Mehni&lt;/bdi&gt;&lt;/a&gt; &lt;span class=&quot;mw-usertoollinks&quot;&gt;(&lt;a href=&quot;/wiki/User_talk:Mehni&quot; class=&quot;mw-usertoollinks-talk&quot; title=&quot;User talk:Mehni&quot;&gt;talk&lt;/a&gt; | &lt;a href=&quot;/wiki/Special:Contributions/Mehni&quot; class=&quot;mw-usertoollinks-contribs&quot; title=&quot;Special:Contributions/Mehni&quot;&gt;contribs&lt;/a&gt;)&lt;/span&gt; &lt;a rel=&quot;nofollow&quot; class=&quot;external text&quot; href=&quot;https://rimworldwiki.com/index.php?title=Topic:Uza87prq17ptbf65&amp;amp;topic_showPostId=uzg9m27dx5rmd66l#flow-post-uzg9m27dx5rmd66l&quot;&gt;commented&lt;/a&gt; on &quot;Backstories&quot; (&lt;em&gt;Yeah, solved it. Backstories is now limited to the general adulthood/childhood backstories, and there are 4 pages for the player-created...&lt;/em&gt;)&lt;/span&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=Backstories&amp;diff=63407</id>
		<title>Backstories</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=Backstories&amp;diff=63407"/>
		<updated>2019-05-08T13:08:58Z</updated>

		<summary type="html">&lt;p&gt;Mehni: fixed headings&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&lt;br /&gt;
Backstories define the skills and restrictions of the [[colonist]] in question and may either enhance or impair the colonist's competence regarding specific [[skills]].&lt;br /&gt;
&lt;br /&gt;
All colonists will have a childhood backstory, but only colonists generated at age 20 or older will have an adulthood backstory. Teenage colonists that age naturally to 20 years old will not gain an adulthood backstory. Currently there are 36 childhood backstories and about 85 adult backstories. Several adult backstories are not available in the character creation phase, but can randomly appear on [[raider]]s and wanderers.&lt;br /&gt;
&lt;br /&gt;
It was possible to buy a DLC that allows the addition of a backstory or character into the game. As a result, some backstories are always together, in a colonist that always has the same name. This can have the unintended situation of the same person returning to life multiple times. There are 290 of such backstories, and they can be found here:&lt;br /&gt;
&lt;br /&gt;
* [[List of player created childhood backstories A through M]]&lt;br /&gt;
* [[List of player created childhood backstories N through Z]]&lt;br /&gt;
* [[List of player created adulthood backstories A through M]]&lt;br /&gt;
* [[List of player created adulthood backstories N through Z]]&lt;br /&gt;
&lt;br /&gt;
The wiki cannot display them all one a single page due to technical reasons.&lt;br /&gt;
&lt;br /&gt;
From Alpha 16 onward, backstories are translatable, though translated backstories only begin to appear in Alpha 17.&lt;br /&gt;
&lt;br /&gt;
==Backstory List==&lt;br /&gt;
===Adult Backstories===&lt;br /&gt;
&amp;lt;!-- The below is an embed. See [[List of adulthood backstories]] for the actual article. --&amp;gt;&lt;br /&gt;
{{:List of adulthood backstories}}&lt;br /&gt;
&lt;br /&gt;
===Childhood Backstories===&lt;br /&gt;
&amp;lt;!-- The below is an embed. See [[List of childhood backstories]] for the actual article. --&amp;gt;&lt;br /&gt;
{{:List of childhood backstories}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;onlyinclude&amp;gt;&lt;br /&gt;
[[Category:Characters]]&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=List_of_player_created_adulthood_backstories_N_through_Z&amp;diff=63406</id>
		<title>List of player created adulthood backstories N through Z</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=List_of_player_created_adulthood_backstories_N_through_Z&amp;diff=63406"/>
		<updated>2019-05-08T12:54:40Z</updated>

		<summary type="html">&lt;p&gt;Mehni: The definitive list of backstories, sourced from build 2231. Script made. This is as they appear in the game.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;amp;larr; &amp;lt;small&amp;gt;[[Backstories]]&amp;lt;/small&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| {{STDT| sortable c_17}}&lt;br /&gt;
!Title &amp;lt;br/&amp;gt; (Short Title) !!Description !!Skill Modifications !!Incapable of !!Civil !!Raider !!Slave !!Trader !!Traveler !!Tribal&lt;br /&gt;
|-&lt;br /&gt;
! Navy tech officer{{br}}(Navy tech)&lt;br /&gt;
| After repairing a fleet admiral's holoscreen with nothing but a pair of rusty pliers and scrap wire, [PAWN_nameDef] was invited to the Federation Naval Academy.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] received an excellent technical education and extensive firearms training, but had no interest in studying more menial skills.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|5}}&amp;lt;/br&amp;gt;Animals: {{--|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Network engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] spent all [PAWN_pronoun] time working on computer networking systems.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] lived without a care in the world - other than uptime and dropped packets.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Neuro scientist{{br}}(Scientist)&lt;br /&gt;
| Kevin worked for a long time to improve the world's understanding of the human brain.&lt;br /&gt;
&lt;br /&gt;
After succeeding in mapping the whole brain, Kevin joined a team of scientist on a quest to map the brains of xeno species.&lt;br /&gt;
| Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Ninja assassin{{br}}(Ninja)&lt;br /&gt;
| [PAWN_nameDef] performed stiletto-precise assassinations for an interplanetary conglomerate. [PAWN_pronoun] was assigned the most complex missions involving disguise, deception, subterfuge, and efficient violence.&lt;br /&gt;
&lt;br /&gt;
A nasty incident with a potted plant and an assassination gone wrong left [PAWN_objective] with an aversion to plant life.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Orbital reservist{{br}}(Reservist)&lt;br /&gt;
| When the government declared that it would strengthen its military defenses, [PAWN_nameDef] was drafted and trained.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was stationed on an orbital base, manning the defense systems and, in dire situations, descending in a dropship to the surface.&lt;br /&gt;
| Shooting: {{+|7}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Osteologist{{br}}(Scholar)&lt;br /&gt;
| After graduating university at the top of his class, [PAWN_nameDef] quickly became a well-known and athletic college professor.&lt;br /&gt;
&lt;br /&gt;
With his new found fame and fitness came a sudden reluctance to preform menial labor - such tasks are better left to graduate students.  &lt;br /&gt;
| Intellectual: {{+|7}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Overwatch sniper{{br}}(Sniper)&lt;br /&gt;
| [PAWN_nameDef] didn't know why he joined the military, but he stayed to protect his fellow soldiers.&lt;br /&gt;
&lt;br /&gt;
Army life broke him down and built him back up. It taught him marksmanship, hand to hand combat and how to patch a bullet wound in a hurry.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Paramilitary agent{{br}}(Agent)&lt;br /&gt;
| After scraping by on assorted shady jobs, [PAWN_nameDef] joined with a large paramilitary group to fight a war on [PAWN_possessive] homeworld. [PAWN_possessive] role was infiltration and intelligence gathering&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Particle physicist{{br}}(Physicist)&lt;br /&gt;
| [PAWN_nameDef] performed cutting-edge physics research. She wanted to help build a better and more peaceful future.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Philosopher{{br}}(Sage)&lt;br /&gt;
| [PAWN_nameDef]'s thirst for archaeo-technological knowledge drove [PAWN_objective] to spend years surveying abandoned data centers and studying ancient coding languages.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] claimed to be one of the few who could piece together the tragedy of the past - and offer a path to the future.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pirate captain{{br}}(Captain)&lt;br /&gt;
| [PAWN_nameDef] worked his way up through the ranks of a pirate ship, eventually becoming captain. He leads his crew between worlds, making a name to remember.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pirate doctor{{br}}(Bad doc)&lt;br /&gt;
| [PAWN_nameDef] had a passion for medicine, but never bothered to get a medical degree. Only underfunded pirates and terrorists were desperate enough to hire [PAWN_possessive] services, and [PAWN_possessive] surgical patients had about a 50% survival rate.&lt;br /&gt;
&lt;br /&gt;
Despite this, [PAWN_possessive] optimistic attitude drove [PAWN_objective] to keep trying to heal those in need. As long as they paid up front.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pirate king{{br}}(Pirate)&lt;br /&gt;
| With no real care for other people, [PAWN_nameDef] fit in perfectly with the pirate crew that he had once been a captive of. Shortly after becoming one of the crew, [PAWN_nameDef] began to kill anyone or anything that got in his way—including his crew mates.&lt;br /&gt;
| Shooting: {{+|7}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&lt;br /&gt;
| Caring{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pirate sympathizer{{br}}(Pirate)&lt;br /&gt;
| From her youth, [PAWN_nameDef] developed connections in the underworld. There she trained in melee combat and became a trusted underworld advisor.&lt;br /&gt;
&lt;br /&gt;
After participating in a failed rebellion, she fled her homeworld to travel with a pirate band.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|8}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pirate trooper{{br}}(Trooper)&lt;br /&gt;
| [PAWN_nameDef] joined a renowned interstellar criminal organization, and was often part of shock-assault boarding parties during starship raids.&lt;br /&gt;
&lt;br /&gt;
Though his combat experience made him a good fighter, the ruthlessness of the job left [PAWN_objective] cold-hearted and unenthusiastic about social interaction.&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&lt;br /&gt;
| Caring{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pirate{{br}}(Pirate)&lt;br /&gt;
| As a pirate leader, Bishop was well-known for his cunning plans and chess-like traps. [PAWN_pronoun] was never afraid to sacrifice a few pawns to capture an important target.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] name has been linked more then once to strategies that overcame overwhelming odds.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|8}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Plague doctor{{br}}(Doctor)&lt;br /&gt;
| [PAWN_nameDef] provided medical care on multiple plague-wracked worlds, always working under the Hippocratic oath. [PAWN_pronoun] improved conditions for those under quarantine while administering complex medical treatments and developing medicines.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] never had time to enjoy a normal life outside of work.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|8}}&lt;br /&gt;
| Violent{{br}}Animals{{br}}Artistic{{br}}Cooking{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Planetary diplomat{{br}}(Diplomat)&lt;br /&gt;
| [PAWN_nameDef]'s passion and profession was interplanetary politics. [PAWN_pronoun] was a master of social manipulation and negotiation and devoted [PAWN_objective]self to working towards peace, compromise and mutual benefit.&lt;br /&gt;
| Construction: {{--|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|8}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}Violent{{br}}Hauling{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Poison gardener{{br}}(Botanist)&lt;br /&gt;
| [PAWN_nameDef] spent almost all [PAWN_possessive] time tending to a poison garden and became withdrawn from society.&lt;br /&gt;
&lt;br /&gt;
In that time [PAWN_pronoun] learnt a few safe culinary and medicinal uses for the otherwise deadly plants.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Social{{br}}Hauling{{br}}Mining{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Political activist{{br}}(Activist)&lt;br /&gt;
| Matt was involved with a radical political faction which worked against his homeworld's government.&lt;br /&gt;
&lt;br /&gt;
The guerilla tactics training that Matt received from his associates gave him the skills to fight, but also drove him to compromise his own beliefs.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Political assassin{{br}}(Deathjack)&lt;br /&gt;
| Matis realized that his true calling was in physical solutions to diplomatic problems. He sought training from the assassins guild on Ceti V.&lt;br /&gt;
&lt;br /&gt;
He was a quick study at the arts of subterfuge and death. He soon earned the guild rank of Deathjack.&lt;br /&gt;
| Shooting: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|8}}&lt;br /&gt;
| ManualDumb{{br}}Caring{{br}}Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Politician{{br}}(Politician)&lt;br /&gt;
| [PAWN_nameDef] was an activist in a powerful political faction. There [PAWN_pronoun] learned the art of persuasion and speech.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] had many enemies, so [PAWN_pronoun] took secret courses in shooting and hand-to-hand combat.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|5}}&lt;br /&gt;
| PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pop idol pirate{{br}}(Pirate)&lt;br /&gt;
| [PAWN_nameDef] and her fans set out as a space pirate crew. She raided corporations for money and staged performances to spread her name.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] became afraid of fire when a rival burned her stage down. She relied on her fans to do the work she found unappealing.&lt;br /&gt;
| Plants: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|7}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&lt;br /&gt;
| ManualDumb{{br}}Caring{{br}}Firefighting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pop idol{{br}}(Pop idol)&lt;br /&gt;
| Min performed and did interviews constantly. She refined her skills in dancing and singing, and became a master of social presentation.&lt;br /&gt;
| Shooting: {{--|4}}&amp;lt;/br&amp;gt;Melee: {{--|4}}&amp;lt;/br&amp;gt;Social: {{+|8}}&amp;lt;/br&amp;gt;Artistic: {{+|8}}&lt;br /&gt;
| ManualDumb{{br}}Cleaning{{br}}Hauling{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Prisoner of war{{br}}(Prisoner)&lt;br /&gt;
| [PAWN_nameDef] was captured and put on death row for war crimes.&lt;br /&gt;
&lt;br /&gt;
Fortunately for her, someone cut the power to her cell block. Riots ignited. Guards and trained wargs were deployed to quell the uprising. Organizing a few other inmates, [PAWN_nameDef] escaped in a small spacecraft.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|4}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Private detective{{br}}(Detective)&lt;br /&gt;
| As a private eye, sharp wits and a silver tongue were [PAWN_nameDef]'s greatest tools. [PAWN_pronoun] often spent [PAWN_possessive] nights working cases that ranged from uncovering affairs and learning trade secrets to solving murder cases and infiltrating criminal organizations. There wasn't a case [PAWN_pronoun] wouldn't accept for the right price.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|7}}&lt;br /&gt;
| PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Prosthetic surgeon{{br}}(Surgeon)&lt;br /&gt;
| [PAWN_nameDef] used [PAWN_possessive] talent for prosthetics to 'advance' others by replacing limbs and organs with metal and electronics.&lt;br /&gt;
| Plants: {{--|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Prostitute idol{{br}}(Prostitute)&lt;br /&gt;
| After [PAWN_possessive] father was deposed, [PAWN_nameDef]'s beauty led [PAWN_objective] to be forced into pornography to survive.&lt;br /&gt;
&lt;br /&gt;
Over years of difficult treatments, [PAWN_possessive] body was remodeled to appear temporarily ageless. Sold to an orbital brothel, [PAWN_pronoun] became popular, with a steady stream of clients from all over the planet.&lt;br /&gt;
| Social: {{+|7}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Raider king{{br}}(Raider)&lt;br /&gt;
| Starting as nothing more than a slave, [PAWN_nameDef] rose quickly among the raider ranks until all knew his name and his ruthlessness.&lt;br /&gt;
| Mining: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Ranger{{br}}(Ranger)&lt;br /&gt;
| [PAWN_nameDef] lived alone, deep in a forest. [PAWN_pronoun] protected the wildlife against poachers, and learned to satisfy [PAWN_possessive] own material needs without outside help.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Rebel fighter{{br}}(Rebel)&lt;br /&gt;
| When civil war broke out Ade remained neutral to either side, until his biome was firebombed by a loyalist militia.&lt;br /&gt;
&lt;br /&gt;
Later, his unit gave him the nickname &amp;quot;Rare&amp;quot; after he burnt down the luxury villa of a loyalist leader, with them still inside it.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Religious hierarch{{br}}(Hierarch)&lt;br /&gt;
| Ordained as a priest in his local community, [PAWN_nameDef] used intrigue and diplomacy to rise to the higher echelon of the clergy. He held numerous titles and lands.&lt;br /&gt;
&lt;br /&gt;
One day, a merchant landed his spaceship near [PAWN_nameDef]'s home. [PAWN_pronoun] decided to accompany the merchant in search for new worlds and challenges.&lt;br /&gt;
| Construction: {{--|3}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{+|8}}&amp;lt;/br&amp;gt;Cooking: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|5}}&lt;br /&gt;
| ManualDumb{{br}}Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Renegade engineer{{br}}(Engineer)&lt;br /&gt;
| After a daring escape from the prison planet with a small crew of fellow inmates, Jered set his gaze on his homeworld.&lt;br /&gt;
&lt;br /&gt;
He travelled there, recruited more followers, hijacked a space cruiser, and launched into the void.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Renowned professor{{br}}(Professor)&lt;br /&gt;
| [PAWN_nameDef]'s bottomless compassion and love of knowledge drove [PAWN_objective] to a life of teaching. [PAWN_pronoun] became one of the best-known names in academia throughout the urbworld bubble.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] holo-lectures were revered by all that watched, and the few students [PAWN_pronoun] accepted into [PAWN_possessive] seminars spoke widely of [PAWN_possessive] kindness and patience.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Reporter{{br}}(Reporter)&lt;br /&gt;
| Candice spent many years as an investigative reporter. She was notorious for making chaotic reports from exotic locations.&lt;br /&gt;
&lt;br /&gt;
Although seen as a lightweight by her critics, she managed to break several high-profile stories after lengthy investigations.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Reptile researcher{{br}}(Researcher)&lt;br /&gt;
| After leaving [PAWN_possessive] parents' vineyard, [PAWN_nameDef] traveled across much of known space, and learned many skills along the way.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] spent most of [PAWN_possessive] time researching and interacting with reptile species. [PAWN_pronoun] was renowned for making several breakthroughs, and for discovering the &amp;quot;Thorny Devil&amp;quot;.&lt;br /&gt;
| Intellectual: {{+|7}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Roboticist {{br}}(Roboticist)&lt;br /&gt;
| [PAWN_nameDef] felt more comfortable with robots and artificial intelligences than with organic people, so [PAWN_pronoun] worked as a roboticist. [PAWN_pronoun] took a particular interest in mechanites and ancient technology.  &lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] relied on other people for [PAWN_possessive] basic needs.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|6}}&lt;br /&gt;
| Cooking{{br}}PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Roboticist{{br}}(Roboticist)&lt;br /&gt;
| Sailors often died on the dangerous waters of [PAWN_nameDef]'s ocean planet. [PAWN_pronoun] created robots to replace them.&lt;br /&gt;
&lt;br /&gt;
Over time, he collected a small crew of robots to do his bidding. [PAWN_pronoun] became proficient at mechanics and engineering, but lost the taste for manual labor.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|7}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Rocket engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] won a grant to a top school and earned a degree in rocket engineering. After several years working for a space mining company she left to travel and see the universe.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|1}}&amp;lt;/br&amp;gt;Cooking: {{--|4}}&amp;lt;/br&amp;gt;Medicine: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Rocket pioneer{{br}}(Rocketeer)&lt;br /&gt;
| As a self-taught engineer, [PAWN_nameDef] escaped his dying homeworld on a rocket [PAWN_pronoun] built [PAWN_objective]self. &lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] later spent years of his life on several worlds, helping less-developed planets develop rocket technology.&lt;br /&gt;
| Construction: {{+|8}}&amp;lt;/br&amp;gt;Plants: {{--|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|5}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Rugby player{{br}}(Winger)&lt;br /&gt;
| After years of addiction to virtual reality games, Douglas was saved when the doctors unplugged him.&lt;br /&gt;
&lt;br /&gt;
Unfortunately, they unplugged him during a match of Rugby Rampage 4. The mental backlash merged his real identity and his virtual identity, leaving him with the personality and skills of a rugby player.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Runaway dancer{{br}}(Dancer)&lt;br /&gt;
| Grown by and for science, [PAWN_nameDef] gave it up. Instead, [PAWN_pronoun] wanted to dance for crowds across many worlds, from the glamor of the glitterworlds to the dangers of the rim.&lt;br /&gt;
&lt;br /&gt;
Such work required wearing a smile on [PAWN_possessive] face and a pistol under [PAWN_possessive] costume. &lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|6}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sanitation captain{{br}}(Janitor )&lt;br /&gt;
| After graduating officer training school, Jake was assigned to main battle deck on the Thunder-Child. He served there for a year before his &amp;quot;gallant&amp;quot; actions saw him reassigned to the maintenance corps.&lt;br /&gt;
&lt;br /&gt;
It was with the maintenance corps he was dubbed Table on account of his legs.&lt;br /&gt;
| Construction: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Selfless hunter{{br}}(Hunter)&lt;br /&gt;
| Nebulys was a hunter of mysterious creatures that many didn't even believe existed. Sometimes the people were right - and sometimes they were wrong.&lt;br /&gt;
&lt;br /&gt;
Along the way, he helped people in need. &lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Serial murderer{{br}}(Murderer)&lt;br /&gt;
| [PAWN_nameDef] started to enjoy killing people, so he did more often and perfected his methods. He lurked in the darkest streets, stalking prey for hours.&lt;br /&gt;
&lt;br /&gt;
He enjoyed making artworks of his victims, and was known for leaving his signature on the bodies of those he killed.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Shadow marine{{br}}(Marine)&lt;br /&gt;
| After perfecting [PAWN_possessive] skills as a pathfinder, [PAWN_nameDef] left [PAWN_possessive] unit to put [PAWN_possessive] skills to use on the planets [PAWN_pronoun] helped chart.&lt;br /&gt;
&lt;br /&gt;
Familiar with orbital trade routes, [PAWN_pronoun] was able to get onto and off any planet without being detected.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Animals: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Shaman of shadows{{br}}(Shaman)&lt;br /&gt;
| When the monsters of fire came from the sky, [PAWN_nameDef] was called upon by [PAWN_possessive] tribe to guide them into battle.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] made use of medicines and rituals to inspire and lead the warriors of many tribes against the invaders. The pirates were forced to retreat without capturing a single slave.&lt;br /&gt;
| Construction: {{--|2}}&amp;lt;/br&amp;gt;Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|6}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Shock trooper{{br}}(Shocktroop)&lt;br /&gt;
| [PAWN_nameDef] was in a deep space shock troop unit deployed on multiple planets in various wars.&lt;br /&gt;
&lt;br /&gt;
During a risky assault, [PAWN_possessive] whole unit was wiped out. Nobody else knew what happened on the field that day, but [PAWN_nameDef] will carry the burden forever.&lt;br /&gt;
| Shooting: {{+|7}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sickly lawyer{{br}}(Lawyer)&lt;br /&gt;
| As a lawyer, Lynn could convict a deaf man for stealing music. His sharp mind and lack of empathy let him say anything to get the other person to talk. With the right amount of money, he knew, any case can be won.&lt;br /&gt;
&lt;br /&gt;
His childhood cough never went away.&lt;br /&gt;
| Social: {{+|8}}&lt;br /&gt;
| ManualDumb{{br}}Mining{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sightseer{{br}}(Sightseer)&lt;br /&gt;
| [PAWN_nameDef] traveled the stars. [PAWN_pronoun] could barely scrape together travel costs doing odd-jobs on stations, but it was all worth it.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] loved camping on exotic worlds and learning the patterns of strange wildlife. [PAWN_pronoun] never could focus on intellectual endeavors, as [PAWN_possessive] sightseeing distracted [PAWN_objective] far too much.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Slave chemist{{br}}(Chemist)&lt;br /&gt;
| [PAWN_nameDef] became a gifted pharmaceutical scientist, but was captured by slavers. [PAWN_pronoun] was sold to a warlord and forced to create drugs to test on other slaves. This left [PAWN_objective] with deep and troubling questions on the ethics of scientific research and medicine.&lt;br /&gt;
| Construction: {{--|1}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{--|1}}&amp;lt;/br&amp;gt;Medicine: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Smuggler{{br}}(Smuggler)&lt;br /&gt;
| As a contract pilot, Meredith had a knack for stealing goods and trafficking contraband without getting caught.&lt;br /&gt;
&lt;br /&gt;
She eventually saved up enough to buy her own ship, and used it to travel from world to world dealing her goods in person.&lt;br /&gt;
| Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Software developer{{br}}(Developer)&lt;br /&gt;
| After [PAWN_pronoun] gained the ability to use automation to remove tedium, [PAWN_nameDef] could no longer tolerate traditional education and employment.&lt;br /&gt;
| Plants: {{--|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|7}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|5}}&lt;br /&gt;
| ManualDumb{{br}}Cleaning{{br}}Hauling{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sole survivor{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef] lived in a remote colony. When mechanoid centipedes attacked his home and killed his people, he was the last survivor.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&amp;lt;/br&amp;gt;Social: {{--|3}}&lt;br /&gt;
| Animals{{br}}Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Space bartender{{br}}(Bartender)&lt;br /&gt;
| [PAWN_nameDef] became a bartender on a space station. [PAWN_pronoun] interacted with and befriended many strangers.&lt;br /&gt;
&lt;br /&gt;
As time went on, [PAWN_nameDef] used [PAWN_possessive] knowledge of herbs to craft [PAWN_possessive] own strange concoctions for [PAWN_possessive] customers.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Space explorer{{br}}(Explorer)&lt;br /&gt;
| [PAWN_nameDef] once spent ten years trapped, alone on an alien planet. [PAWN_pronoun] quickly adapted to the local environment, and learned to communicate with [PAWN_possessive] local enemies.&lt;br /&gt;
&lt;br /&gt;
This long period alone left him without close friends. [PAWN_possessive] heart is sensitive, but he learned to hide [PAWN_possessive] emotions very well.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|4}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Space humanitarian{{br}}(Activist)&lt;br /&gt;
| After seeing the rampant poverty common on overcrowded urban worlds, [PAWN_nameDef] decided to dedicate [PAWN_possessive] life to helping the less fortunate. This crusade taught [PAWN_objective] how to care for the sick and the hungry.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Cooking: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Space hunter{{br}}(Huntsman)&lt;br /&gt;
| Now a man as well as proficient hunter and marksman, Jon yearned for more. He took leave from his birth world, traveling the great expanse in search of exotic game.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Cooking: {{+|1}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Space marine medic{{br}}(Medic)&lt;br /&gt;
| [PAWN_nameDef] joined a colony contact expeditionary force as a medic. The mission turned bad when the colonists turned out to be suffering from a zombifying disease. [PAWN_pronoun] ran and fought for days.&lt;br /&gt;
&lt;br /&gt;
Cornered with wounded men, [PAWN_pronoun] sprayed enough ammunition to wear out four machine gun barrels, and learned the value of high-volume fire. But [PAWN_possessive] nickname, Noob, stuck from that day forward.&lt;br /&gt;
&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Space marine{{br}}(Marine)&lt;br /&gt;
| [PAWN_nameDef] joined Interplanetary Marines to travel the stars fight for [PAWN_possessive] planet. [PAWN_pronoun] distinguished himself in several battles.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] experiences desensitized him to people around him, and his social skills degraded. But, he did learn how to fight.&lt;br /&gt;
| Shooting: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|6}}&lt;br /&gt;
| Caring{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Space marine{{br}}(Marine)&lt;br /&gt;
| [PAWN_nameDef] was a member of an elite imperial space warrior unit. Subjected to intense training, [PAWN_pronoun] developed remarkable combat skills.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] unit's quasi-religious ceremonies and beliefs helped [PAWN_objective] stay more-or-less sane through the horrors of the war.&lt;br /&gt;
&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Space marine{{br}}(Marine)&lt;br /&gt;
| [PAWN_nameDef] was a warrior in an Imperial navy.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] job was to punch into enemy starships, gun down the crew, and capture the ship intact. And [PAWN_pronoun] was good at it.&lt;br /&gt;
| Shooting: {{+|7}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Space marine{{br}}(Marine)&lt;br /&gt;
| [PAWN_nameDef] was recruited into the security forces of an off-planet corporation.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] defended their ships against pirates and engaged in private space warfare contracts.&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Space marine{{br}}(Marine)&lt;br /&gt;
| Soren joined a squad of space marines known for their brutal efficiency at killing. His last name and his lack of emotion during combat inspired his nickname: Grim. &lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{--|2}}&lt;br /&gt;
| Caring{{br}}Social{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Space merchant{{br}}(Merchant)&lt;br /&gt;
| As part of a freelance interplanetary lifestyle, [PAWN_nameDef] sought to dominate her romantic interests as much as her business adversaries. When she didn't have her own ship to fly, she worked charter ships for hire.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Space navy doctor{{br}}(Doctor)&lt;br /&gt;
| [PAWN_nameDef] served several tours as a doctor on one of the few warships defending [PAWN_possessive] homeworld. [PAWN_pronoun] learned combat skills while fighting occasional pirate boarding parties, and became an expert at treating gruesome combat wounds.&lt;br /&gt;
| Construction: {{--|2}}&amp;lt;/br&amp;gt;Plants: {{--|2}}&amp;lt;/br&amp;gt;Mining: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|5}}&amp;lt;/br&amp;gt;Artistic: {{--|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Space navy tech{{br}}(Navy tech)&lt;br /&gt;
| [PAWN_nameDef] was in a space navy for the the most powerful planet in the local star group. [PAWN_pronoun] developed skills in maintenance, electronic systems, radar and imaging, and logistics management.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] served with pride and patriotic love for [PAWN_possessive] planet.&lt;br /&gt;
| Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Mining{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Space raider{{br}}(Raider)&lt;br /&gt;
| Tater was the leader of a spaceborne pirate crew. Skipping between the rim worlds, he became the feared enemy of many settlements.&lt;br /&gt;
| Shooting: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Space researcher{{br}}(Researcher)&lt;br /&gt;
| [PAWN_nameDef] inherited [PAWN_possessive] parents' ship and carried on their research.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] childhood experiences with diverse cultures allowed [PAWN_objective] to preserve his caring nature despite spending most of [PAWN_possessive] life isolated in space.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Mining: {{--|1}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Space station cook{{br}}(Cook)&lt;br /&gt;
| The space station [PAWN_nameDef] came from was far from any populated planets, and was in itself understaffed. For this reason, [PAWN_nameDef] was forced to learn how to cook in order to keep the crew alive. While [PAWN_pronoun] appreciated this learning opportunity, [PAWN_pronoun] didn't appreciate the criticism which came with it, and has had self-esteem issues ever since.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{+|6}}&lt;br /&gt;
| Caring{{br}}Social{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Space technician{{br}}(Technician)&lt;br /&gt;
| [PAWN_nameDef] finally managed to flee his criminal life by getting a maintenance job on a nearby space station. He performed multiple repairing and building operations. He also used to participate in basic research activities and often defused co-workers' arguments. He never liked doing art.&lt;br /&gt;
| Construction: {{+|5}}&amp;lt;/br&amp;gt;Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|1}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Space trafficker{{br}}(Trafficker)&lt;br /&gt;
| [PAWN_nameDef] discovered [PAWN_pronoun] was heir of [PAWN_possessive] distant uncle's weapons-trading business.&lt;br /&gt;
&lt;br /&gt;
To protect the future of the company [PAWN_pronoun] went through extensive military training, in case of any &amp;quot;unforeseen circumstances&amp;quot;.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{--|2}}&lt;br /&gt;
| Animals{{br}}Artistic{{br}}Crafting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Spaceship chef{{br}}(Chef)&lt;br /&gt;
| Ryan got a spot on a ship by becoming the ship's cook. He enjoyed cooking and helping the doctor clean wounds, but he never got used to cleaning the dishes.&lt;br /&gt;
| Cooking: {{+|7}}&amp;lt;/br&amp;gt;Medicine: {{+|5}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Spaceship salesman{{br}}(Salesman)&lt;br /&gt;
| Duster tried his hand at various jobs, including building space rabbit cages and working at a mutant wheat research project. Finally, he found his true calling as a spacecraft salesman. Specializing in recreational spacecraft, his smooth talk and charming nature served him well.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|1}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|8}}&amp;lt;/br&amp;gt;Cooking: {{--|1}}&amp;lt;/br&amp;gt;Medicine: {{--|1}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{--|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Special forces{{br}}(Specialist)&lt;br /&gt;
| Give me a reason to kill - a good reason!&lt;br /&gt;
&lt;br /&gt;
Markus was a soldier and a skilled one - so skilled that [PAWN_pronoun] entered the special forces to battle militants and xenohuman raiders. [PAWN_pronoun] never imagined himself a lone hero, but [PAWN_pronoun] played [PAWN_possessive] part in the group well.&lt;br /&gt;
| Shooting: {{+|7}}&amp;lt;/br&amp;gt;Melee: {{+|6}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Animals{{br}}Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Spiceminer{{br}}(Spiceminer)&lt;br /&gt;
| [PAWN_nameDef] made his mark on the universe as a spice miner assigned to the lucrative mining colony of Rural Pen’The.&lt;br /&gt;
&lt;br /&gt;
Little did he know, Benn was about to embark on a career path that would change his life.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{--|2}}&amp;lt;/br&amp;gt;Mining: {{+|8}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{--|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Spy{{br}}(Spy)&lt;br /&gt;
| [PAWN_nameDef] was trained by [PAWN_possessive] government in infiltration and espionage. [PAWN_pronoun] learned to keep a cool head and to talk [PAWN_possessive] way out of tight situations. When talking didn't work, [PAWN_pronoun] was capable of more violent direct action.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|7}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Stalwart farmer{{br}}(Farmer)&lt;br /&gt;
| With the farm under constant threat from brigands, [PAWN_nameDef] learned to defend himself with his father's rifle. [PAWN_pronoun] also mastered how to construct walls to keep livestock in and predators out.&lt;br /&gt;
&lt;br /&gt;
He once tried to paint a picture of his home, but discovered that he could only draw scribbles and ducks.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Animals{{br}}Artistic{{br}}Cooking{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Stalwart farmer{{br}}(Farmer)&lt;br /&gt;
| With the farm under constant threat from brigands, Drew learned to defend himself with his father's hunting rifle. He also mastered how to construct fences to keep livestock in and the local wildlife out. Drew tried to paint a picture of his home and learned he can only draw scribbles and ducks.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Star knight{{br}}(Knight)&lt;br /&gt;
| Abducted from his medieval homeworld, [PAWN_nameDef] later escaped his captors via an impressive display of swordsmanship.&lt;br /&gt;
&lt;br /&gt;
For a moment, as he drifted in the escape pod, his childhood dream of becoming a knight among the stars felt so real. Then he crash-landed.&lt;br /&gt;
&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|8}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Starfighter pilot{{br}}(Pilot)&lt;br /&gt;
| After years of training and drilling, [PAWN_nameDef] finally became a starfighter pilot.&lt;br /&gt;
&lt;br /&gt;
Hundreds of combat missions later, [PAWN_pronoun] grew bored and started seeking newer thrills. [PAWN_pronoun] joined a band of space pirates, which eagerly welcomed [PAWN_objective] because of [PAWN_possessive] piloting skill.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|7}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&amp;lt;/br&amp;gt;Animals: {{--|3}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Starship doctor{{br}}(Doctor)&lt;br /&gt;
| [PAWN_nameDef] was a doctor on a starship. He was a brilliant surgeon and dabbled in research of his own. However, he was quite reclusive and never had the best bedside manner.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|8}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! State engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] enrolled in the state weapons research program.&lt;br /&gt;
&lt;br /&gt;
While brilliant in his work, he was so enthusiastic in testing his creations that he accidentally wounded some colleagues and was marked as unfit for service.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Station security{{br}}(Security)&lt;br /&gt;
| [PAWN_nameDef] was commissioned as a special constable on a network of space stations. There he prevented illegal human trafficking.&lt;br /&gt;
&lt;br /&gt;
Once, fire broke out on the station, and [PAWN_pronoun] saved many from the flames. Since then, [PAWN_pronoun] has avoided fires.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| Firefighting{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Stellar pirate{{br}}(Pirate)&lt;br /&gt;
| [PAWN_nameDef] was captain of a pirate ship. [PAWN_pronoun] and his crew made their living capturing traders who wandered off-course.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was known for [PAWN_possessive] balanced approach to problems, building, fighting, or negotiating as needed.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Stiletto assassin{{br}}(Assassin)&lt;br /&gt;
| Because of her skills, [PAWN_nameDef] developed a sense of superiority. In time, she lost her sense of empathy. She often got into fights, and discovered how easy it is to kill a person.&lt;br /&gt;
&lt;br /&gt;
After realizing her talents, she became one of the most efficient assassins in the system.&lt;br /&gt;
| Construction: {{--|3}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|8}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Storyteller{{br}}(Fabulist)&lt;br /&gt;
| [PAWN_nameDef] traveled his world recounting the legends that he had studied.&lt;br /&gt;
&lt;br /&gt;
Obsessed with the legends of his people, [PAWN_nameDef] seeks someone who can help him grow scales on his skin, so he too can be as the ancients were.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Cooking{{br}}Mining{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Super soldier{{br}}(Soldier)&lt;br /&gt;
| Product of a super-soldier program run by a now-deposed government, [PAWN_nameDef] was lost. [PAWN_pronoun] survived the final suicide attack on the enemy mothership. What now?&lt;br /&gt;
&lt;br /&gt;
For the first time in his life, [PAWN_pronoun] had no orders, no objectives. [PAWN_pronoun] rose from wreckage and strove towards uncertainty, towards freedom.&lt;br /&gt;
| Shooting: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|7}}&amp;lt;/br&amp;gt;Crafting: {{--|3}}&lt;br /&gt;
| Social{{br}}Animals{{br}}Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! System lord{{br}}(Lord)&lt;br /&gt;
| For [PAWN_nameDef], ruling a country, or even a planet, was not good enough. [PAWN_pronoun] sought to expand his influence across the system - by legal or extralegal means.&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|6}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Systems engineer {{br}}(Engineer)&lt;br /&gt;
| Like [PAWN_possessive] father, [PAWN_nameDef] was a systems engineer. [PAWN_pronoun] was qualified in both colony and ship systems.&lt;br /&gt;
&lt;br /&gt;
When not working, [PAWN_pronoun] would make mechanical figurines, read old books, or occasionally travel to uncharted worlds. Being introverted, [PAWN_pronoun] did these things mostly alone.&lt;br /&gt;
| Construction: {{+|5}}&amp;lt;/br&amp;gt;Intellectual: {{+|7}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Technician{{br}}(Techie)&lt;br /&gt;
| As an IT technician, [PAWN_nameDef] didn't have much time to write code any more.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] got called to work all the time to fix failures in the cryptobiotic chamber and AI subroutine misalignments.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Technology doctor{{br}}(Tech doc)&lt;br /&gt;
| [PAWN_nameDef] performed research into propulsive fuels and energy generation.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] loved technology research, and hoped to improve human life by doing it.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Test subject{{br}}(Experiment)&lt;br /&gt;
| Kidnapped as a teenager, [PAWN_nameDef] was an unwilling test subject in experimental gene therapies for six years. Labs and scientists scare [PAWN_objective].&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|8}}&amp;lt;/br&amp;gt;Social: {{--|4}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Test subject{{br}}(Subject)&lt;br /&gt;
| [PAWN_nameDef] enrolled in a scientific study that promised it could make [PAWN_objective] smarter. Unfortunately, the side effects were very different than he expected.[PAWN_pronoun] went insane and killed a number of people before escaping his homeworld.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&lt;br /&gt;
| Caring{{br}}Social{{br}}Artistic{{br}}Cooking{{br}}Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Test subject{{br}}(Subject)&lt;br /&gt;
| [PAWN_nameDef]'s tests went from geometry to quantum physics, and she could run the grand gauntlet without a scratch.&lt;br /&gt;
&lt;br /&gt;
One day, Mother said that her final test lay beyond the red door, and that even if she couldn't hear her voice, Mother would always be there.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&amp;lt;/br&amp;gt;Cooking: {{+|1}}&lt;br /&gt;
| Caring{{br}}Social{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Theater technician{{br}}(Technician)&lt;br /&gt;
| [PAWN_nameDef] spent countless hours behind the scenes of a famous theater. [PAWN_pronoun] built scenery, programmed lights, and monitored the machines that moved the sets.&lt;br /&gt;
&lt;br /&gt;
Off duty, [PAWN_pronoun] would talk with the cast members. Navigating the social drama of the actors helped [PAWN_pronoun] learn how to communicate well and manipulate others. &lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Tinkerer{{br}}(Tinkerer)&lt;br /&gt;
| &amp;quot;How does this work?&lt;br /&gt;
&lt;br /&gt;
Why does this move?&lt;br /&gt;
&lt;br /&gt;
Maybe if I change this... oops, I hope it works better... or maybe I broke it...&amp;quot;&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Toaster repairman{{br}}(Repairman)&lt;br /&gt;
| Good with his hands and passionate about technology, [PAWN_nameDef] aspired to invent gadgets and machines that would change his home world forever.&lt;br /&gt;
&lt;br /&gt;
A few failed and occasionally disastrous creations later, he gave up on his dream and took a job more befitting his skill set.&lt;br /&gt;
| Construction: {{+|7}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|6}}&lt;br /&gt;
| Intellectual{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Tool mechanic{{br}}(Mechanic)&lt;br /&gt;
| [PAWN_nameDef] was a famous tool mechanic on a dusty rim world.&lt;br /&gt;
&lt;br /&gt;
After his firm closed due to scandal, [PAWN_pronoun] joined a tribe to survive, crafting fine knives and hammers, traveling, and dealing [PAWN_possessive] wares between settlements.&lt;br /&gt;
| Construction: {{+|5}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|8}}&lt;br /&gt;
| Animals{{br}}PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Treasure hunter{{br}}(Adventurer)&lt;br /&gt;
| [PAWN_nameDef] explored outer rim planets in hopes of finding rare treasures.&lt;br /&gt;
&lt;br /&gt;
After succeeding in finding one legendary sculpture, [PAWN_pronoun] was betrayed by [PAWN_possessive] men. [PAWN_pronoun] survived their treasonous attack, but the sculpture was taken.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] created the Anvil Mercenary Company to help [PAWN_objective] seek revenge.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}Animals{{br}}Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Undertaker{{br}}(Undertaker)&lt;br /&gt;
| [PAWN_nameDef] roamed the galaxy offering grief assistance to those who've had a recent loss. While he never shied away from physical confrontation, he prefers to confront tough situations with a calm word.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|6}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Unethical doctor{{br}}(Doctor)&lt;br /&gt;
| [PAWN_nameDef] became a doctor to save lives and research medicine. [PAWN_pronoun] soon realized the only way to make progress on [PAWN_possessive] research was to perform experiments on human patients.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] often used patients for [PAWN_possessive] experiments - whether they were willing or not.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&lt;br /&gt;
| ManualDumb{{br}}Social{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Unstable butcher{{br}}(Butcher)&lt;br /&gt;
| John began hearing voices. The animals were talking to him, insulting him. He came to hate them, and eventually killed his furry former friends. He started selling the meat just to get human interaction.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{--|4}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|6}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Upright diplomat{{br}}(Diplomat)&lt;br /&gt;
| As a diplomat, [PAWN_nameDef] was assigned to deal with diplomatic tasks in the blood-soaked outer rim sectors.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] hoped to end the endless wars, until [PAWN_possessive] consularship, the St. Anthem, was attacked by a raider fleet.&lt;br /&gt;
| Construction: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|8}}&amp;lt;/br&amp;gt;Crafting: {{--|3}}&lt;br /&gt;
| Hauling{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Urbworld enforcer{{br}}(Enforcer)&lt;br /&gt;
| [PAWN_nameDef] was an enforcer of law on an ancient urbworld.&lt;br /&gt;
&lt;br /&gt;
She dealt with the worst of humanity, from protecting greedy urbworld nobility in their spire palaces to rooting out cannibal cults in the deepest reaches of the underground hive.&lt;br /&gt;
| Shooting: {{+|7}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Urbworld pimp{{br}}(Pimp)&lt;br /&gt;
| At first, [PAWN_nameDef] made a small profit from selling drugs. Then, he switched to selling women and made a fortune.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] developed great skills with his fists. He also learned to fix up the injuries [PAWN_pronoun] inflicted on the girls.&lt;br /&gt;
| Melee: {{+|6}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|5}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Urbworld politican{{br}}(Politician)&lt;br /&gt;
| It's no secret that the Companies own much of the urbworlds, but someone has to take the bribes. Vladimir was one such figurehead.&lt;br /&gt;
&lt;br /&gt;
He learned how to manipulate the hopes and dreams of the people while living comfortably in a penthouse.&lt;br /&gt;
| Social: {{+|8}}&lt;br /&gt;
| ManualDumb{{br}}Crafting{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Urbworld sergeant{{br}}(Sergeant)&lt;br /&gt;
| [PAWN_nameDef]'s passion for all things militaristic kept with him all the way to adulthood.&lt;br /&gt;
&lt;br /&gt;
After enrolling as a local policeman, he was soon promoted to sergeant.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Urbworld sex slave{{br}}(Sex slave)&lt;br /&gt;
| Emmie was sold into sexual slavery. Having been designed to be inhumanly attractive and too weak to rebel against her masters, she was passed between dozens of owners and knew nothing of freedom.&lt;br /&gt;
| Social: {{+|6}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&lt;br /&gt;
| Intellectual{{br}}Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Vagabond{{br}}(Vagabond)&lt;br /&gt;
| [PAWN_nameDef] awoke on a dangerous planet with no resources and few survival skills. [PAWN_pronoun] bounced between camps, doing whatever work needed to be done, just to see the sun rise once more.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Intellectual{{br}}Artistic{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Vengeful explorer{{br}}(Explorer)&lt;br /&gt;
| A violent drifter without a home, [PAWN_nameDef] and his father fought many battles across hundreds of years. [PAWN_pronoun] became a grizzled fighter and crack shot.&lt;br /&gt;
&lt;br /&gt;
After his father's death in battle, [PAWN_nameDef] began exploring the stars alone, seeking his father's killer, on the hunt for revenge.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Versatile worker{{br}}(Worker)&lt;br /&gt;
| Spending his later teenage years in a colony of settlers, he offered what little skills he had to anyone who would take him.&lt;br /&gt;
&lt;br /&gt;
Being a quick learner, he honed many of his skills and, apart from his crippling inability to understand fire, is now a fully functioning adult.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Plants: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{--|1}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Social{{br}}Firefighting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Veteran soldier{{br}}(Soldier)&lt;br /&gt;
| [PAWN_nameDef] fought many tours against pirates, rebels, and xenos. He endured the glory and horrors of war.&lt;br /&gt;
&lt;br /&gt;
Worn down by drills, wars, and battle scars, [PAWN_nameDef] 'retired' to the easy soldier life of colonial civility enforcement. He spent his days polishing his war medals, knowing he had done his bloodline proud.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Video producer{{br}}(Producer)&lt;br /&gt;
| Too awkward to socialize, [PAWN_nameDef] found comfort in the production of videos. Oddly, people enjoyed his videos, calling them &amp;quot;perfect sitcom dramas&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] took advantage of this and broadcast more, ever hopeful that [PAWN_pronoun] would be contacted by the Wizards.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|7}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| ManualDumb{{br}}Social{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Villain{{br}}(Villain)&lt;br /&gt;
| After rising to the top of his criminal band, [PAWN_nameDef] was taught the arts of villainy, from handling firearms to developing new weapons technologies. He excelled at bending others to his will.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|6}}&lt;br /&gt;
| Hauling{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Vinho king{{br}}(Booze king)&lt;br /&gt;
| After prohibition came to Aracena VI, [PAWN_nameDef] expanded his underground liquor business until it dominated the market on two continents. They called him the Vinho King.&lt;br /&gt;
&lt;br /&gt;
Though [PAWN_pronoun] mostly controlled his competition by masterful political maneuvering, [PAWN_pronoun] was not above the occasional beat-down or stiletto assassination.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|7}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Void raider{{br}}(Raider)&lt;br /&gt;
| Craving adventure and glory, [PAWN_nameDef] set out across the void with a raider band, swearing his loyalty to his band and brothers, and spreading their glory through the stars with his blade and pistol in hand.&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Voidspace raider{{br}}(Raider)&lt;br /&gt;
| After years of seeking the assassin that broke up his family, [PAWN_nameDef] was offered a place with a group of space-faring raiders. He accepted, hoping to find the killer he sought.&lt;br /&gt;
&lt;br /&gt;
Due to [PAWN_possessive] seemingly-unending ability to narrowly escape danger, he earned the nickname 'Blackjack' in recognition of his luck.&lt;br /&gt;
| Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Wandering crafter{{br}}(Crafter)&lt;br /&gt;
| [PAWN_nameDef] continued to follow [PAWN_possessive] parents' nomadic ways, supporting himself with his crafting skills. But wandering is a hard life, and [PAWN_pronoun] often thought of finding somewhere to settle down and put [PAWN_possessive] skills to good use.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|8}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Wandering healer{{br}}(Healer)&lt;br /&gt;
| [PAWN_nameDef] studied to be a doctor, but was dissatisfied with [PAWN_possessive] practice on an otherwise peaceful midworld.&lt;br /&gt;
&lt;br /&gt;
Instead, [PAWN_pronoun] chose to pull up roots and travel to the rimworlds in order to care for people who needed [PAWN_objective] most.&lt;br /&gt;
| Construction: {{--|1}}&amp;lt;/br&amp;gt;Mining: {{--|1}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|7}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! War chief{{br}}(Chief)&lt;br /&gt;
| [PAWN_nameDef] was a tribal gang leader on a neolithic planet. For him, the battlefield is a game, and there is nothing more fun than the fires of war.&lt;br /&gt;
| Shooting: {{+|7}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| Hauling{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Warlordess{{br}}(Warlordess)&lt;br /&gt;
| [PAWN_nameDef] was the tough leader of a pirate band.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] would accept any challenge, no matter how violent or dangerous. Others called [PAWN_pronoun] a killing machine.&lt;br /&gt;
| Mining: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{+|6}}&amp;lt;/br&amp;gt;Cooking: {{+|6}}&amp;lt;/br&amp;gt;Medicine: {{+|5}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Warrior{{br}}(Warrior)&lt;br /&gt;
| [PAWN_nameDef] was a war hero during [PAWN_possessive] planet's third world war. [PAWN_pronoun] helped prevent the launch of nuclear weapons during a particularly tense standoff.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Warship captain{{br}}(Captain)&lt;br /&gt;
| Years of being commanding officer of an advanced corvette taught [PAWN_nameDef] the art of leadership, the techniques of higher engineering, and how to stay calm while enemies try to kill you.&lt;br /&gt;
&lt;br /&gt;
Unfortunately, [PAWN_nameDef] only very rarely had contact with nature.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Plants: {{--|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|5}}&amp;lt;/br&amp;gt;Animals: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! White-hat hacker{{br}}(Hacker)&lt;br /&gt;
| From [PAWN_possessive] computer, [PAWN_nameDef] helped rid the online world of bad people.&lt;br /&gt;
| Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Wildlife ranger{{br}}(Ranger)&lt;br /&gt;
| Dismayed at the poachers driving several animal species to near-extinction, [PAWN_nameDef] became a wildlife ranger. [PAWN_pronoun] cared for and protect the animals - by force if necessary.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] grew to hate people slaughtering animals for luxury and profit.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|8}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=List_of_player_created_adulthood_backstories_A_through_M&amp;diff=63405</id>
		<title>List of player created adulthood backstories A through M</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=List_of_player_created_adulthood_backstories_A_through_M&amp;diff=63405"/>
		<updated>2019-05-08T12:53:15Z</updated>

		<summary type="html">&lt;p&gt;Mehni: The definitive list of backstories, sourced from build 2231. Script made. This is as they appear in the game.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;amp;larr; &amp;lt;small&amp;gt;[[Backstories]]&amp;lt;/small&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| {{STDT| sortable c_17}}&lt;br /&gt;
!Title &amp;lt;br/&amp;gt; (Short Title) !!Description !!Skill Modifications !!Incapable of !!Civil !!Raider !!Slave !!Trader !!Traveler !!Tribal&lt;br /&gt;
|-&lt;br /&gt;
! Ace fighter pilot{{br}}(Ace)&lt;br /&gt;
| [PAWN_nameDef] graduated from the Star Academy with honors and distinguished himself as an ace fighter pilot in three campaigns against more advanced aggressor cultures. &lt;br /&gt;
&lt;br /&gt;
However, after one vicious battle, he found himself stranded and his carrier ship destroyed. With nowhere to go, he entered his escape pod and prayed.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Acolyte of stars{{br}}(Priest)&lt;br /&gt;
| Ever the dreamer, [PAWN_nameDef] traveled across the universe to find the thing he felt was calling to him.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] became poorer and poorer, but used every means possible to carry on.&lt;br /&gt;
| Intellectual: {{--|3}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|7}}&lt;br /&gt;
| ManualDumb{{br}}Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Addiction counsel{{br}}(Counselor)&lt;br /&gt;
| After recovering from a joywire addiction, [PAWN_nameDef] adopted a non-violent way of life and vowed to help others.&lt;br /&gt;
&lt;br /&gt;
Travelling between communities, [PAWN_pronoun] used medicine, arts, and crafts to aid others who struggled with their own addictions.&lt;br /&gt;
| Social: {{+|8}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Adventurer{{br}}(Adventurer)&lt;br /&gt;
| [PAWN_nameDef]'s thirst for adventure took [PAWN_objective] to many planets. [PAWN_pronoun] visited the brightest glitterworlds and the darkest war-torn toxic planets in [PAWN_possessive] quest to find novelty and excitement.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] worked as little as possible, often skirting ethical boundaries to make a quick buck. Among all jobs, [PAWN_pronoun] hated cooking the most.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&amp;lt;/br&amp;gt;Animals: {{+|2}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Adventurous weirdo{{br}}(Weirdo)&lt;br /&gt;
| A creative but strange individual, [PAWN_nameDef] dedicated his life to his twin passions of medieval world history and high technology.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was fascinated by the idea of becoming a 'skyknight' with glittering armor and a giant sword.&lt;br /&gt;
| Shooting: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|6}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Mining{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aerospace engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] was an engineer responsible for the production of aircraft and spaceships. [PAWN_pronoun] focused on improving production lines, and was known for [PAWN_possessive] mastery of technical and research issues.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! AI programmer{{br}}(Programmer)&lt;br /&gt;
| Michael enlisted in the military's robotics division, developing smarter combat AI.&lt;br /&gt;
&lt;br /&gt;
The whole time he was there, he never spoke with another human. He spent all his time conversing with the AI he was developing.&lt;br /&gt;
| Intellectual: {{+|7}}&amp;lt;/br&amp;gt;Crafting: {{+|6}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! AI researcher{{br}}(Researcher)&lt;br /&gt;
| Dave was a renowned researcher in artificial intelligence, robotics, and interactive holography. His friendships with the artificial minds he created gave him the confidence to interact with real people, and he soon excelled at personal communication.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Mining: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Alcoholic trucker{{br}}(Alcoholic)&lt;br /&gt;
| [PAWN_nameDef] was a space trucker working for Arcknight Industries when he killed his wife and daughter in a crash.&lt;br /&gt;
&lt;br /&gt;
His body was repaired with an experimental nano-genetic therapy. Now his muscles continually regenerate and harden, and every movement tears the tissue anew. He bears the pain in silence.&lt;br /&gt;
| Mining: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Caring{{br}}Social{{br}}Artistic{{br}}Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Anarchist rebel{{br}}(Anarchist)&lt;br /&gt;
| After being abandoned on a special operation, [PAWN_nameDef] swore vengeance upon the state. [PAWN_pronoun] formed an anarchist group dedicated to bringing down core world governments.&lt;br /&gt;
&lt;br /&gt;
After too many close calls, and too few successes, [PAWN_nameDef] fled to the outer rim.&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|6}}&lt;br /&gt;
| Crafting{{br}}Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Archaeologist{{br}}(Explorer)&lt;br /&gt;
| [PAWN_pronoun] was trapped in an uninspired life. One day, [PAWN_pronoun] jumped on a ship to learn archaeology and see the universe.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned how to survive. [PAWN_pronoun] also learned about people - although [PAWN_pronoun] understood the dead better than the living.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Archotech spy{{br}}(AI spy)&lt;br /&gt;
| [PAWN_nameDef] was a cybernetic researcher. Studying a transcended world, [PAWN_pronoun] became too involved with [PAWN_possessive] subjects. Over time, the archotech machine core recruited [PAWN_objective] into its service, and used [PAWN_objective] as a spy.&lt;br /&gt;
&lt;br /&gt;
When [PAWN_pronoun] later rebelled against [PAWN_possessive] non-human master, it sent mechanoids across space to hunt [PAWN_objective] down.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Mining{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Army cook{{br}}(Cook)&lt;br /&gt;
| Ben joined the army as a worker and spent most of his time cooking and repairing. While he was stationed on a dangerous planet, he underwent basic shooting and survival training.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Caring{{br}}Social{{br}}Firefighting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Army scientist{{br}}(Scientist)&lt;br /&gt;
| [PAWN_nameDef] did scientific research for a planetary army. [PAWN_pronoun] studied war scenarios and designed weapon systems to help win battles with a minimum of fuss.&lt;br /&gt;
| Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Army sergeant{{br}}(Sergeant)&lt;br /&gt;
| [PAWN_nameDef] served in [PAWN_possessive] nation's military, commanding small units as a non-commissioned officer.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] excelled creating tactically sound plans despite difficult circumstances.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aromatherapist{{br}}(Therapist)&lt;br /&gt;
| [PAWN_nameDef] practiced aromatherapy, using essences extracted from home-grown plants.&lt;br /&gt;
| Plants: {{+|6}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artifact hunter{{br}}(Artifacter)&lt;br /&gt;
| [PAWN_nameDef] became depressed and lost interest in life. [PAWN_pronoun] travelled from planet to planet, searching for psychic artifacts amid mechanoid ruins in the hope that they would cure the pain in [PAWN_possessive] soul.&lt;br /&gt;
&lt;br /&gt;
A steady trigger finger and careful planning kept [PAWN_nameDef] alive.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|8}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artificer rampant{{br}}(Artificer)&lt;br /&gt;
| Fuelled by the thrill of discovery and his own megalomania, [PAWN_nameDef] set out to invent new devices and improve existing ones, breaking laws and customs as necessary.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] formed a crew to gather materials for [PAWN_possessive] work - and to deal with outsiders who might interfere.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|8}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Assassin{{br}}(Assassin)&lt;br /&gt;
| Robin was specially trained as an operative to be used for high-risk assassinations. His skill with a rifle was unrivalled.&lt;br /&gt;
&lt;br /&gt;
He was eventually betrayed by his superiors when a target found out about the hit and offered to fund their future projects. Robin swore to never trust anyone again.&lt;br /&gt;
| Shooting: {{+|7}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}Crafting{{br}}Cooking{{br}}Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! AWOL soldier{{br}}(Soldier)&lt;br /&gt;
| [PAWN_nameDef] was an infantryman.&lt;br /&gt;
&lt;br /&gt;
When [PAWN_pronoun] was informed of his assignment to the Xennoa-Zartza War, [PAWN_pronoun] decided [PAWN_pronoun] did not want to be a soldier. [PAWN_pronoun] was able to escape via military spacejet.&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bandit leader{{br}}(Bandit)&lt;br /&gt;
| [PAWN_nameDef] rose up the ranks of the crime organization, eventually becoming the leader of one of their most remote cells of bandits. His dog Rest never left his side.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Banished soldier{{br}}(Outlaw)&lt;br /&gt;
| [PAWN_nameDef] became the most physically intimidating of the slaves, spending his little free time obsessively sculpting his body. His efforts eventually paid off when the lord offered him a job as a personal bodyguard.&lt;br /&gt;
&lt;br /&gt;
Later, when he plotted to use his position to kill the lord and free the slaves, he was discovered and barely escaped with his life.&lt;br /&gt;
| Melee: {{+|7}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Battle mechanic{{br}}(Mechanic)&lt;br /&gt;
| [PAWN_nameDef] was a tech-obsessed mercenary in an early fusion-era system.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was unusually obsessed with gathering the right gear, and often customized [PAWN_possessive] own equipment with original modifications.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Battlefield tech{{br}}(Technician)&lt;br /&gt;
| [PAWN_nameDef] had received firearms training, but [PAWN_possessive] work was focused on technical adaption and manipulation of combat mechanoids on the battlefield.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] developed PTSD after narrowly escaping a primitive firebomb attack in a wheat field. The army medically discharged him from service.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Firefighting{{br}}PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Beast slayer{{br}}(Slayer)&lt;br /&gt;
| [PAWN_nameDef] traveled between planets, following news of animal attacks. [PAWN_pronoun] would camp on the planet for weeks, learning about [PAWN_possessive] prey before striking. [PAWN_pronoun] most enjoyed hunting thrumbos.&lt;br /&gt;
&lt;br /&gt;
Preferring to work alone, [PAWN_nameDef] enjoyed the thrill of the hunt, and the meat from the kill.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Behaviour research{{br}}(Scientist)&lt;br /&gt;
| Captured as a feral child, [PAWN_nameDef] was forced into the ways of modern society. [PAWN_pronoun] quickly adapted and became a behavioural researcher, eventually owning a private facility.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] specialized in canines, but learned a great deal about all animals. [PAWN_pronoun] never had interest in plants, however.&lt;br /&gt;
| Plants: {{--|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blacksmith shooter{{br}}(Gunsmith)&lt;br /&gt;
| As a young blacksmith, [PAWN_nameDef]'s family shop was raided by the police. [PAWN_pronoun] shot two officers before they knocked him out and arrested him.&lt;br /&gt;
&lt;br /&gt;
Sentenced to life in prison, [PAWN_nameDef] learned about traveling and raiding from other criminals.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blacksmith{{br}}(Blacksmith)&lt;br /&gt;
| As a blacksmith on a medieval world, [PAWN_nameDef] gained a reputation for the high quality of [PAWN_possessive] work. [PAWN_pronoun] wasn't bad at using the swords [PAWN_pronoun] forged either.&lt;br /&gt;
| Mining: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|8}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bloodgame survivor{{br}}(Bloodgamer)&lt;br /&gt;
| [PAWN_nameDef] was sold to the Corestars Entertainment Company and used as meat in one of the company's system-wide broadcast shows.&lt;br /&gt;
 &lt;br /&gt;
[PAWN_possessive] manipulative nature made [PAWN_objective] quite a nightmare, even to the audience. He was kicked out and exiled to a planet full of deadly animals, criminals and armed camera-drones.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|7}}&amp;lt;/br&amp;gt;Social: {{+|6}}&lt;br /&gt;
| Crafting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bloody dentist{{br}}(Dentist)&lt;br /&gt;
| After studying at a famous college, [PAWN_nameDef]'s weak personality eventually snapped under the strain of angry administrators and whining patients. [PAWN_pronoun] went on a secret murder spree, killing many of those under [PAWN_possessive] care.&lt;br /&gt;
&lt;br /&gt;
After a pursuit, [PAWN_pronoun] managed to escape [PAWN_possessive] planet and travel to a new world.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bloody wanderer{{br}}(Wanderer)&lt;br /&gt;
| [PAWN_nameDef] was a wanderer, traveling from town to town, taking odd jobs and stealing to live.&lt;br /&gt;
&lt;br /&gt;
One day, he had a mental break and went on a long rampage, destroying several towns and killing many. [PAWN_pronoun] eventually calmed, but [PAWN_possessive] bloodlust never left [PAWN_objective].&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Social{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bounty hunter{{br}}(Hunter)&lt;br /&gt;
| [PAWN_nameDef] is a self-employed bounty hunter. [PAWN_pronoun] spent [PAWN_possessive] days hunting space pirates and collecting cash bounties.&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bounty hunter{{br}}(Hunter)&lt;br /&gt;
| [PAWN_nameDef] was a bounty hunter on a massive glitterworld. [PAWN_pronoun] worked sensitive assignments for extremely wealthy clients, and was known for quiet execution and total discretion.&lt;br /&gt;
| Shooting: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bounty hunter{{br}}(Hunter)&lt;br /&gt;
| When the civil war ended, Mushinto had to find a new way to use his fighting skills. He decided to hunt down war criminals and soon realized that he enjoyed capturing  bad guys by any means necessary.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Brigand{{br}}(Brigand)&lt;br /&gt;
| [PAWN_nameDef] flew with a band of brigands [PAWN_pronoun] called friends. [PAWN_pronoun] even had a ship of [PAWN_possessive] own - The Dung Mucker 2000.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bush sniper{{br}}(Sniper)&lt;br /&gt;
| [PAWN_nameDef]'s peaceful life was cut short when [PAWN_possessive] country was brutally invaded.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] was drafted into service as soon as [PAWN_pronoun] was of legal age, and quickly showed an aptitude for rifles. [PAWN_pronoun] spent months living in the forests picking off soldiers who dared cross the border.&lt;br /&gt;
| Plants: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|6}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Business gangster{{br}}(Gangster)&lt;br /&gt;
| Staying one step ahead of the law, [PAWN_nameDef] became a legitimate businessman and silenced anyone who dared say otherwise. As proprietor of brothels, speakeasies and eateries, [PAWN_nameDef]'s good fortune continued while his competition suffered a series of unfortunate and unexplained accidents.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|7}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Caring{{br}}Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caravaneer{{br}}(Caravaneer)&lt;br /&gt;
| [PAWN_nameDef] was the leader of a caravan. [PAWN_pronoun] was responsible for the safety of [PAWN_possessive] caravan and was the head negotiator in countless trade deals.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] and [PAWN_possessive] people prospered, but their wealth made them a target for brigands. They often had to take up arms to fend off bandits and highwaymen.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|7}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cargo pilot{{br}}(Pilot)&lt;br /&gt;
| [PAWN_nameDef] was brought up by cargo hands on a long-haul ore transport ship. [PAWN_pronoun] perfected [PAWN_possessive] skills at trading and manipulation of people while running weapons between systems.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|1}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Casket builder{{br}}(Builder)&lt;br /&gt;
| [PAWN_nameDef] was fascinated with cryosleep, and spent [PAWN_possessive] life learning about the mysterious technology.&lt;br /&gt;
&lt;br /&gt;
Working as an assembler on a midworld, [PAWN_nameDef] built an experimental prototype casket from discarded parts. Unfortunately, while [PAWN_pronoun] was searching for the final component, [PAWN_possessive] home was leveled by a bomb.  &lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Castaway{{br}}(Castaway)&lt;br /&gt;
| [PAWN_nameDef] was a passenger on a routine interstellar transit. When his ship was destroyed, he lived as a castaway on an uninhabited planet for several years.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|02}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Chemist{{br}}(Chemist)&lt;br /&gt;
| [PAWN_nameDef] was a renowned chemist on a thriving midworld.&lt;br /&gt;
&lt;br /&gt;
After performing inhumane experiments that turned men into beasts, [PAWN_pronoun] was arrested and banished to a far-off rim world.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|6}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Chemist{{br}}(Chemist)&lt;br /&gt;
| [PAWN_nameDef] was a research chemist. [PAWN_pronoun] worked with chemicals, from pharmaceuticals to explosives, to develop new substances and treatments.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Chief engineer{{br}}(Engineer)&lt;br /&gt;
| As chief engineer on board a large spaceship, [PAWN_nameDef] was an expert in all things fiddly and complex.&lt;br /&gt;
&lt;br /&gt;
She relied on other members of the crew for some of the basic necessities of life. She and her ship eventually disappeared into a longsleep voyage of exploration.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Civil engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] was a well-known civil engineer. [PAWN_possessive] job involved designing and maintaining rock fortification structures. [PAWN_pronoun] did enough statistical analysis to keep his mind sharp.&lt;br /&gt;
| Construction: {{+|7}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Clan chief{{br}}(Chief)&lt;br /&gt;
| [PAWN_nameDef] managed a small criminal clan on an outlying trade hub world.&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Social: {{+|7}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Clone farmer{{br}}(Cloner)&lt;br /&gt;
| Harvesting the products of clone farms is mostly done by the clones themselves -particularly to those whose sims tended towards the social. This clone was one such, who escaped from the farms and headed out to the stars.&lt;br /&gt;
| Social: {{+|6}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Cooking{{br}}Firefighting{{br}}Mining{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Coliseum fighter{{br}}(Fighter)&lt;br /&gt;
| Applying the knowledge that he gained from years around fighters, [PAWN_pronoun] became a successful gladiator in the coliseum that he once cleaned.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|5}}&amp;lt;/br&amp;gt;Social: {{--|1}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Colonial governor{{br}}(Governor)&lt;br /&gt;
| Disillusioned by rampant government corruption, Henry ran for governor and won. However, the local gangs and their pet officials soon forced him out of power.&lt;br /&gt;
&lt;br /&gt;
He left the community to return to his life as a marshal.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Colony engineer{{br}}(Engineer)&lt;br /&gt;
| The children took over the facility, and they declared independence from the corporation.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] had used the VR system to become a master engineer, and he worked diligently to prepare the colony for the corporation's inevitable return.&lt;br /&gt;
| Construction: {{+|7}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Combat engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] became a combat engineer. [PAWN_pronoun] built bases, fixed guns, and repaired vehicles for the army - when [PAWN_pronoun] wasn't shooting at people, that is.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Combat engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] was recruited by the military as an engineer and set to work improving the navy's space shuttles. The harsh training taught [PAWN_objective] how to build and repair military vehicles and structures.&lt;br /&gt;
&lt;br /&gt;
One mission left [PAWN_nameDef] with pyrophobia and a strong desire to avoid plants.&lt;br /&gt;
| Construction: {{+|6}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}Firefighting{{br}}PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Combat medic{{br}}(Medic)&lt;br /&gt;
| After his home country entered a large-scale war, Felix was drafted into the army as a combat medic.&lt;br /&gt;
&lt;br /&gt;
His few years in the trenches trying to keep his fellow soldiers alive gave him an acute sense for first aid. Losing many friend has made him stoic and reserved.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Combat medtech{{br}}(Medic)&lt;br /&gt;
| As a military medtech, [PAWN_nameDef]'s job was to fix and build anything he could get [PAWN_possessive] hands on, from living people to machines and mechs.&lt;br /&gt;
&lt;br /&gt;
Sent into dangerous areas, [PAWN_pronoun] never had a problem saving soldiers' lives and building the technology and machines needed to win.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Medicine: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|5}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Combat negotiator{{br}}(Negotiator)&lt;br /&gt;
| After escaping his homeworld, [PAWN_nameDef] took his skills to the stars.&lt;br /&gt;
&lt;br /&gt;
He chose to operate as a hired gun, working for various rebel organizations, enslaved groups, and merchant enclaves. His specialty was negotiation in combat situations.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Commoner lord{{br}}(Lord)&lt;br /&gt;
| After years of training in martial arts and diplomacy, [PAWN_nameDef] was eventually given land and subjects of [PAWN_possessive] own to rule.&lt;br /&gt;
&lt;br /&gt;
Because of [PAWN_nameDef]'s commoner heritage, the other lords disapproved. They framed [PAWN_objective] for a heinous crime, and the emperor had no choice but to exile [PAWN_objective].&lt;br /&gt;
| Melee: {{+|7}}&amp;lt;/br&amp;gt;Social: {{+|6}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Computer engineer {{br}}(Tech head)&lt;br /&gt;
| Bored of his code-monkey office job and missing the glory days of the Academy, [PAWN_nameDef] saw a commercial about the frontier where &amp;quot;only the strong survive&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
With his wife Morgan, [PAWN_nameDef] undertook a journey into the unknown.&lt;br /&gt;
| Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Core world jeweler{{br}}(Jeweler)&lt;br /&gt;
| After Alyssa had completed all of her surgeries, she found that she had a lot of time and energy to dedicate to her passion: trinket crafting. She spent years perfecting her art as a jeweler, then left her home world to sell her wares across the galaxy.&lt;br /&gt;
&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|7}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corp researcher{{br}}(Researcher)&lt;br /&gt;
| [PAWN_nameDef] was a leading researcher for a massive space exploration corporation.&lt;br /&gt;
| Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corp researcher{{br}}(Researcher)&lt;br /&gt;
| [PAWN_nameDef] was sold to a corporation and put to work as a corporate slave doing scientific research.&lt;br /&gt;
&lt;br /&gt;
Unable to adapt to the social politics of his workplace, he buried himself in his work and failed to progress up the corporate ladder. Every day, he yearned to be left alone.&lt;br /&gt;
| Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corporate builder{{br}}(Builder)&lt;br /&gt;
| Even as [PAWN_pronoun] stewed in [PAWN_possessive] own wasted potential, [PAWN_nameDef] found [PAWN_pronoun] had a knack for moving objects quickly. It was just what the planetary mega-corps wanted in their construction divisions.&lt;br /&gt;
&lt;br /&gt;
Unfortunately, the monotonous work erased [PAWN_possessive] remaining creative impulses.&lt;br /&gt;
| Construction: {{+|7}}&amp;lt;/br&amp;gt;Mining: {{+|4}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cosmetic reject{{br}}(Reject)&lt;br /&gt;
| Living on the streets, Chaz submitted himself to an unethical cosmetics lab in exchange for food and shelter.&lt;br /&gt;
&lt;br /&gt;
After some painful cosmetic modification, Chaz barely resembles his former self. Having been forced to work for the lab until he was rescued, Chaz is now too afraid to lash out at anyone.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{+|5}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cosmetic surgeon{{br}}(Surgeon)&lt;br /&gt;
| [PAWN_nameDef] had a terrible bedside manner due to [PAWN_possessive] abrasiveness. [PAWN_pronoun] often bullied [PAWN_possessive] patients into getting cosmetic surgery. [PAWN_pronoun] made a lot of money this way.&lt;br /&gt;
&lt;br /&gt;
While very studious and careful in [PAWN_possessive] work, [PAWN_pronoun] never had to lift a finger doing domestic chores.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|8}}&amp;lt;/br&amp;gt;Artistic: {{+|6}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Costume crafter{{br}}(Costumer)&lt;br /&gt;
| By day, [PAWN_nameDef] was an office worker on a midworld. At night, [PAWN_pronoun] designed and built elaborate monster costumes for science fiction conventions.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned a great deal about sewing. Unfortunately this came at the cost of being able to cook anything more complex than an instant meal.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|8}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Craft shaper{{br}}(Shaper)&lt;br /&gt;
| [PAWN_nameDef] locked [PAWN_objective]self in his studio for years, ordering delivery food to save time on cooking.&lt;br /&gt;
&lt;br /&gt;
Eventually, [PAWN_possessive] creations brought [PAWN_objective] the highest honor on Semantic World: Permission to materialize any design in minutes using the most advanced technologies.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|8}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Crime lord{{br}}(Crime lord)&lt;br /&gt;
| Through brutality and cruelty, [PAWN_nameDef] rose to the rank of crime lord.&lt;br /&gt;
&lt;br /&gt;
He relied less on his fists and more on his guns. His reputation spread faster due to his cold-bloodedness and ruthless methods.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Criminal kingpin{{br}}(Kingpin)&lt;br /&gt;
| [PAWN_nameDef] discovered his gift - people did what he said, when he said it. Taking advantage of this, he set off for the rimworlds planets to make a name for himself in the criminal underworld.&lt;br /&gt;
&lt;br /&gt;
Having people do things for him taught him to avoid manual labor at all costs.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|5}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Criminal surgeon{{br}}(Surgeon)&lt;br /&gt;
| Being near many injured fellow criminals, [PAWN_nameDef] took it upon [PAWN_objective]self to work on them.&lt;br /&gt;
&lt;br /&gt;
Although many people died, [PAWN_pronoun] did get better at using knives.&lt;br /&gt;
| Intellectual: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{+|6}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|5}}&amp;lt;/br&amp;gt;Artistic: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Deep space surveyor{{br}}(Surveyor)&lt;br /&gt;
| [PAWN_nameDef] was a deep space surveyor. She studied which worlds were the most suitable for colonization.&lt;br /&gt;
&lt;br /&gt;
Her expeditions were met by hostile natives, green-painted space-women, and wannabe Greek gods. Surviving many firefights, she learned to build rudimentary lathes and rock cannons to fend off enemies.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Plants: {{--|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Defector {{br}}(Defector )&lt;br /&gt;
| [PAWN_nameDef] decided to leave the oppressive dictatorship where [PAWN_pronoun] lived. [PAWN_possessive] defection was not well-received, and agents were sent after [PAWN_objective].&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] spent years on the run. Since [PAWN_pronoun] could trust no doctor, [PAWN_pronoun] treated [PAWN_possessive] own wounds. The ordeal made [PAWN_objective] bitter and untrusting. &lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Animals{{br}}Artistic{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Defense lawyer{{br}}(Lawyer)&lt;br /&gt;
| [PAWN_nameDef] found that [PAWN_pronoun] could make more money with a quick word than a blaster. Seeking a job where [PAWN_possessive] silver tongue could be useful, [PAWN_pronoun] turned to the law.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] often defended the illegal speeder racers [PAWN_pronoun] grew up with.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|8}}&lt;br /&gt;
| ManualDumb{{br}}ManualSkilled{{br}}Caring{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Destroyer-general{{br}}(General)&lt;br /&gt;
| [PAWN_nameDef] held the rank of Destroyer-General in a powerful midworld military.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was known for his mastery of weapons, and was also a good ship pilot.&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|6}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Discharged soldier{{br}}(Soldier)&lt;br /&gt;
| [PAWN_nameDef] prostituted himself to fund his drug habits. As an escape, [PAWN_pronoun] joined the military and learned to fight.&lt;br /&gt;
&lt;br /&gt;
Too smart for the army, [PAWN_pronoun] questioned and often disagreed with [PAWN_possessive] superiors' decisions. This eventually led to [PAWN_possessive] dishonorable discharge and left [PAWN_objective] with a chip on [PAWN_possessive] shoulder.&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Doomsday pariah{{br}}(Pariah)&lt;br /&gt;
| [PAWN_nameDef] managed to open a vault of otherworldly technology while scavenging a dig site. [PAWN_pronoun] unwittingly triggered a doomsday device that cleansed the planet of all life. More interested in the tech than human life, [PAWN_pronoun] boarded the vault’s spacecraft and departed to find more relics to abuse.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Dreaded dude{{br}}(Dude)&lt;br /&gt;
| Some followers say that [PAWN_nameDef] and [PAWN_possessive] crew of misfits found the Fountain of Youth, many, many centuries ago, and that they caused the extinction of the dinosaurs on many planets.&lt;br /&gt;
&lt;br /&gt;
There's even a religion about them, somewhere, involving noodles and meatballs.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|8}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Dromedary knight{{br}}(Knight)&lt;br /&gt;
| Having caught the eye of [PAWN_possessive] people's Sand King, [PAWN_nameDef] was trained in the Sandy Boomrat fighting technique.&lt;br /&gt;
&lt;br /&gt;
Always with a camel to carry his things, [PAWN_pronoun] served [PAWN_possessive] sand people faithfully.&lt;br /&gt;
| Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Hauling{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Drug lieutenant{{br}}(Drugman)&lt;br /&gt;
| [PAWN_nameDef] worked the drug trade under kingpin Grady Loughman. He had his men sell drugs when it was profitable, and fight the other cartels when the government came around.&lt;br /&gt;
&lt;br /&gt;
His social skills kept him on top of the political game, and he always had servants to cook and clean.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|7}}&amp;lt;/br&amp;gt;Medicine: {{+|7}}&lt;br /&gt;
| Artistic{{br}}Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Energy researcher{{br}}(Researcher)&lt;br /&gt;
| [PAWN_nameDef] was working on an idea for rapid communication over long distances. [PAWN_pronoun] made an error which destroyed [PAWN_possessive] lab and most of the city. [PAWN_pronoun] fled the planet to escape the authorities.&lt;br /&gt;
| Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{--|1}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] found a job as a tinkering engineer on the trading hub planet Irithir. Tough local traders forced him to learn negotiation skills, and he made good profits selling refurbished weapons and tools.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|8}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Engineered pilot{{br}}(Pilot)&lt;br /&gt;
| After his province was besieged by one of its neighbors, [PAWN_nameDef] volunteered for a generic modification program that created pilots for the very fighter craft that he had helped develop. The modifications allowed him to pilot the ship, but also made him less able to focus on the people around him.&lt;br /&gt;
&lt;br /&gt;
By this time, people were calling him &amp;quot;Squirrel.&amp;quot; &lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Envoy of the stars{{br}}(Envoy)&lt;br /&gt;
| [PAWN_nameDef] entered the diplomatic corps. Honor and tradition were the values he took with him on every mission.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] prestigious position distanced him from backbreaking manual labor, allowing [PAWN_objective] to focus on his wordsmithing abilities. He left the blacksmithing to others.&lt;br /&gt;
| Shooting: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|8}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}ManualSkilled{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Executive officer{{br}}(Executive)&lt;br /&gt;
| [PAWN_nameDef] was an executive officer for a large space trading corporation. After a failed attempt at manipulating his way up the corporate ladder, he was framed for the rape and murder of another executive and her family.&lt;br /&gt;
&lt;br /&gt;
He was found guilty. However, because of his family's influence, he was exiled instead of put to death.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|7}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Exiled researcher{{br}}(Exile)&lt;br /&gt;
| [PAWN_nameDef]'s love of robotics was not appreciated in her technophobic empire. The High Cardinal of the system excommunicated her, and she was never allowed to return.&lt;br /&gt;
| Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Exotic chef{{br}}(Chef)&lt;br /&gt;
| [PAWN_nameDef] has always gone overboard when it comes to food. [PAWN_pronoun] is always seeking new and exotic ingredients.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] quest for ingredients has brought [PAWN_objective] into some close calls with local flora and fauna.&lt;br /&gt;
| Cooking: {{+|6}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Expert handyman{{br}}(Handyman)&lt;br /&gt;
| [PAWN_nameDef] worked as a traveling engineer. [PAWN_pronoun] fixed things ranging from a simple communications array to the intricate software harness in his ship's AI meta-core. Nothing is beyond repair for [PAWN_objective].&lt;br /&gt;
| Construction: {{+|7}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Explorer{{br}}(Explorer)&lt;br /&gt;
| [PAWN_nameDef] traveled from planet to planet, gathering samples, stories, and research. He hoped one day to compile a record of every animal, plant, mineral, and machine and device in known space: The Complete Traveler's Guide to the RimWorlds.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Explorer-writer{{br}}(Explorer)&lt;br /&gt;
| [PAWN_nameDef] traveled from planet to planet, gathering samples, stories, and research. &lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] goal was to bring together enough knowledge to make a survival guide for future generations.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Faction leader{{br}}(Leader)&lt;br /&gt;
| Early in [PAWN_possessive] adulthood, [PAWN_nameDef] found [PAWN_objective]self surrounded by a gaggle of low-lifes. &lt;br /&gt;
&lt;br /&gt;
For fun, [PAWN_pronoun] gathered them and lead them to a certain death. [PAWN_pronoun] knew then that [PAWN_pronoun] had the talent to realize [PAWN_possessive] ambitions of leadership.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|8}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Fallen official{{br}}(Official)&lt;br /&gt;
| [PAWN_nameDef] was an official for an autocratic government.&lt;br /&gt;
&lt;br /&gt;
When [PAWN_possessive] superiors demanded [PAWN_pronoun] participate in atrocities, [PAWN_nameDef] resigned and escaped from [PAWN_possessive] homeworld with nothing but the clothes on [PAWN_possessive] back.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| ManualSkilled{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Fearful chef{{br}}(Chef)&lt;br /&gt;
| [PAWN_nameDef] was a excellent chef who worked in a high-end restaurant.&lt;br /&gt;
&lt;br /&gt;
One day, [PAWN_pronoun] left the stove on, and accidentally burned down the whole building. This event shook [PAWN_objective] so much that [PAWN_pronoun] swore to never touch a stove again.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Cooking{{br}}Firefighting{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Feline scientist{{br}}(Scientist)&lt;br /&gt;
| [PAWN_nameDef] became a renowned scientist in the field of felines. Wanting the best for his animals and specializing in selective breeding, he set out on a journey to find the perfect breeding grounds for his cats.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Fervent researcher{{br}}(Researcher)&lt;br /&gt;
| As a young adult, Holly was sure that her planet and its people were nearing their time of transcendence.&lt;br /&gt;
&lt;br /&gt;
A firm belief that her research would be the catalyst drove her to increasingly alarming acts as bureaucrats and bioethics committees worked to stall her progress.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|8}}&lt;br /&gt;
| ManualDumb{{br}}ManualSkilled{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Fighter controller{{br}}(Controller)&lt;br /&gt;
| During the Zartha crisis, Bashkire fought across many worlds, providing the vital link between the ground and the air as a fighter controller. During the campaign, he saw friends injured and killed. This mental trauma haunts his dreams to this day, but his aim remains sharp.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|1}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Flaneur{{br}}(Flaneur)&lt;br /&gt;
| [PAWN_nameDef] strolled and sipped his way through the streets and cafes of [PAWN_possessive] world, pursuing freedom at every turn, never becoming attached.&lt;br /&gt;
&lt;br /&gt;
Through all this time, [PAWN_pronoun] remained distrustful of others. And never took an order from anyone.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|6}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Forest prowler{{br}}(Prowler)&lt;br /&gt;
| [PAWN_nameDef] led a band of wild men in the forest. They foraged for food, hunted, and sometimes murdered more civilized people to steal their shiny objects.&lt;br /&gt;
| Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Mining{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{check}} || {{check}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Frontier marshal{{br}}(Marshal)&lt;br /&gt;
| Nate was the marshal of his colony. He tried to honorably uphold the law, but the corrupt local mayor killed his family and left him for dead.&lt;br /&gt;
&lt;br /&gt;
After regaining his health, Nate arrested the mayor. [PAWN_pronoun] left his homeworld and started a new life working to make a difference in the universe.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Fugitive{{br}}(Fugitive)&lt;br /&gt;
| [PAWN_nameDef] rebelled against the corporation [PAWN_pronoun] worked for. [PAWN_pronoun] failed, and was forced him to go on the run.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was always on the move, always leaving everything behind. [PAWN_pronoun] tried to gain supporters for [PAWN_possessive] cause, but failed due to [PAWN_possessive] poor social skills.&lt;br /&gt;
&lt;br /&gt;
| Plants: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Cooking: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Game developer{{br}}(Game dev)&lt;br /&gt;
| [PAWN_nameDef] was an independent game developer.{{br}}After an early success, [PAWN_possessive] career quickly degenerated into a circus of misguided ideas, deals gone wrong, and desperate, failed PR stunts.&lt;br /&gt;
| Construction: {{--|2}}&amp;lt;/br&amp;gt;Mining: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Game tester{{br}}(Tester)&lt;br /&gt;
| Making a new life on a barely-livable planet after nuclear war, [PAWN_nameDef] was able to fulfill his desires with money borrowed from his father.&lt;br /&gt;
&lt;br /&gt;
He loved playing a particular colony simulator. His favorite thing to do in the game was to build elaborate hospitals. Spending most of his time playing, he forgot horrors of war and his need for revenge.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gang boss{{br}}(Boss)&lt;br /&gt;
| To survive, [PAWN_nameDef]'s gang often had to rob interstellar traders for food and supplies. Sometimes he had to kill the guards. Sometimes he had to kill the police who arrived to stop him.&lt;br /&gt;
&lt;br /&gt;
After years of this, he became one of the most-wanted criminals in the local stellar empire.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|6}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gang soldier{{br}}(Soldier)&lt;br /&gt;
| Living for many years between three raider settlements, [PAWN_nameDef] persevered through many challenges: a spacecraft implosion, cryptostasis, crashlanding on a miserable dustball of a planet, and nursing an old man back to health, and many of battles.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] eventually took control of a violent gang.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Artistic{{br}}Hauling{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Genetic engineer{{br}}(Geneticist)&lt;br /&gt;
| [PAWN_nameDef] carried out [PAWN_possessive] first genetic experiments on farm animals. [PAWN_pronoun] soon grew to become quite skilled in all forms of genetic engineering.&lt;br /&gt;
&lt;br /&gt;
A horrifying lab accident left him with a mortal fear of rodents.&lt;br /&gt;
| Plants: {{+|1}}&amp;lt;/br&amp;gt;Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Genetic scientist{{br}}(Geneticist)&lt;br /&gt;
| After the war he joined a genetic engineering firm. He worked on enhancements for humans and livestock. His experiences in inflicting and healing wounds were very beneficial to his work, but he developed a black sense of humor. This made social gatherings awkward. &lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}Crafting{{br}}Cooking{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gigolo{{br}}(Gigolo)&lt;br /&gt;
| [PAWN_nameDef] sold [PAWN_objective]self into slavery for money to purchase boomrat pizza. [PAWN_pronoun] was then traded to the Zeglar colonies, where he worked as a male prostitute.&lt;br /&gt;
&lt;br /&gt;
In a fluke event, [PAWN_pronoun] managed to join other escaping slaves as they hijacked a ship. After fighting with the captain of the slave crew over the last piece of boomrat pizza, [PAWN_nameDef] was sent off the ship in an escape pod.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|6}}&amp;lt;/br&amp;gt;Cooking: {{+|7}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gnomebiologist{{br}}(Biologist)&lt;br /&gt;
| Gizmo was a xenobiology professor in a glitterworld university. He went to conferences and managed an art gallery.&lt;br /&gt;
&lt;br /&gt;
However, he never stopped sculpting yard gnomes, and considers this to be his true profession.&lt;br /&gt;
&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|7}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Cooking{{br}}Firefighting{{br}}Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Government agent  {{br}}(Agent)&lt;br /&gt;
| [PAWN_nameDef] worked for the government against rebel groups and excelled in this capacity. During [PAWN_possessive] training [PAWN_pronoun] was taught firearms, melee combat and medical skills.&lt;br /&gt;
&lt;br /&gt;
Having grown up in a war-ravaged city, dirt, blood and dead bodies don’t bother [PAWN_objective] and [PAWN_pronoun] sees no reason to clean them up.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Graphic designer{{br}}(Designer)&lt;br /&gt;
| Kees' interest in artistic expression led him to become a designer. His eye for detail made him a reasonably well-known artist on his planet, though his meticulousness often led him to spend too much time perfecting a single project.&lt;br /&gt;
| Artistic: {{+|7}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Guardian{{br}}(Guardian)&lt;br /&gt;
| After [PAWN_pronoun] learned what truly matters in life, [PAWN_nameDef] changed for the better. [PAWN_pronoun] learned to work hard and protect the things that matter - not money or material things, but friends and loved ones.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] became a professional guardian.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gun dealer{{br}}(Gun dealer)&lt;br /&gt;
| [PAWN_nameDef] traded high-tech firearms between warring factions.&lt;br /&gt;
&lt;br /&gt;
Over time, [PAWN_pronoun] became very skilled at conducting product demonstrations and negotiating profitable deals.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|8}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gunfighter{{br}}(Gunfighter)&lt;br /&gt;
| [PAWN_nameDef] was a deadly shot. Peace wasn't for him. [PAWN_pronoun] found [PAWN_possessive] family among the brothers and sisters that [PAWN_pronoun] spent years fighting alongside.&lt;br /&gt;
&lt;br /&gt;
After most of those close to [PAWN_objective] died, [PAWN_pronoun] once again set off to lend [PAWN_possessive] gun to those who needed it - or those who could pay.&lt;br /&gt;
| Shooting: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Healer{{br}}(Healer)&lt;br /&gt;
| [PAWN_nameDef] took the time to admire the beauty of the world.&lt;br /&gt;
&lt;br /&gt;
Her passive aggressiveness surfaced once in a while, but she tried to adapt to her changing life.&lt;br /&gt;
| Plants: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|7}}&lt;br /&gt;
| ManualDumb{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Hedge fund manager{{br}}(Banker)&lt;br /&gt;
| A top hedge fund manager on a teeming urbworld, [PAWN_nameDef]'s portfolio grew rapidly as he charmed clients with a sweet voice and devious intent. When the deal turned out too good to be true, he was forced to flee the planet with a bounty on his head.&lt;br /&gt;
&lt;br /&gt;
As he travelled the stars he found a passion in the arts, making masterpieces fit for high society customers.&lt;br /&gt;
| Construction: {{--|2}}&amp;lt;/br&amp;gt;Plants: {{--|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|7}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Herpetologist{{br}}(Herper)&lt;br /&gt;
| After a terrible mining accident, [PAWN_nameDef] set off into space in search of exotic new animal species.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] hoped to leave [PAWN_possessive] past behind and find long-lived companions. [PAWN_pronoun] knew the pain of loss too well.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Animals: {{+|6}}&lt;br /&gt;
| Mining{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hired assassin{{br}}(Assassin)&lt;br /&gt;
| Axle was a master thief, working mostly for organized crime. Over time, he made a name for himself and shifted his business into the paid &amp;quot;removal&amp;quot; of human threats.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hired gun{{br}}(Hired gun)&lt;br /&gt;
| [PAWN_nameDef] always wanted to prove [PAWN_pronoun] could make a living without [PAWN_possessive] parents' help. [PAWN_pronoun] did shady jobs that often involved pointing guns at innocent people.&lt;br /&gt;
&lt;br /&gt;
He eventually made enough money to board a cheap freighter. He discovered why it was so cheap when it crashed.&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hired muscle{{br}}(Hired thug)&lt;br /&gt;
| Knowing what life on the streets was truly like, [PAWN_nameDef] slipped into police work. However, a particularly disturbing case ended with him beating the perpetrator to death.&lt;br /&gt;
&lt;br /&gt;
Dishonorably discharged from his duties, he used his contacts and skills to find work as a thug for hire.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Human trafficker{{br}}(Trafficker)&lt;br /&gt;
| [PAWN_nameDef] stole children from their homes to sell them to interested buyers.&lt;br /&gt;
&lt;br /&gt;
Over time, he lost what little moral sense he had left.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hunter of the king{{br}}(Pest guard)&lt;br /&gt;
| [PAWN_nameDef] was forced to protect his colony in the name of the king after a mysterious outbreak of murderous genetically-modified wildlife.&lt;br /&gt;
&lt;br /&gt;
Despite his best efforts, his kingdom was destroyed. [PAWN_nameDef] developed PTSD, a hatred of animals and a bad case of technophobia. [PAWN_pronoun] was named for the place they found him.&lt;br /&gt;
| Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{--|3}}&lt;br /&gt;
| Animals{{br}}Artistic{{br}}PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hunter{{br}}(Hunter)&lt;br /&gt;
| Hawke was a master hunter.&lt;br /&gt;
&lt;br /&gt;
He learned to track and trap any animal in the most dangerous of places, and had deep knowledge of many ingenious methods for taking down specific large animals.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|6}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Imperial general{{br}}(General)&lt;br /&gt;
| [PAWN_nameDef]'s thirst for power defined [PAWN_objective]. [PAWN_pronoun] quickly rose through the military ranks and soon attained the rank of general.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was given with the most challenging task - conquering distant and unexplored rim worlds. Victory here could even position [PAWN_objective] as a successor to the emperor.&lt;br /&gt;
| Construction: {{--|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Information broker{{br}}(Broker)&lt;br /&gt;
| [PAWN_nameDef] caught a ship to the next star system and began a life of travel and learning, quickly collecting a massive bank of knowledge from people of all shapes and sizes.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned to sell this knowledge for great profit, and became a powerful broker of information.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{--|1}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Intelligence agent{{br}}(Agent)&lt;br /&gt;
| Because of his hacking skills, Wedge was recruited by his home planet's governing body to serve as an intelligence agent. The government trained him in combat, but he prefers psychological warfare.&lt;br /&gt;
&lt;br /&gt;
Government rules proved too strict for him, so he went rogue. His current activities are unknown.&lt;br /&gt;
| Shooting: {{+|7}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|8}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Intimate assassin{{br}}(Assassin)&lt;br /&gt;
| [PAWN_nameDef] was a professional assassin. She was sadistic, calculating, and appeared utterly harmless.&lt;br /&gt;
&lt;br /&gt;
She preferred using intimate means to dispatch her targets. This fulfilled both her contracts and her own personal desire for control.&lt;br /&gt;
| Melee: {{+|8}}&amp;lt;/br&amp;gt;Social: {{+|4}}&lt;br /&gt;
| Caring{{br}}Animals{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Involuntary hermit{{br}}(Hermit)&lt;br /&gt;
| [PAWN_nameDef]’s escape pod was jettisoned onto an unexplored region of a frontier world. She eked out a lonely existence with only a herd of muffalo for company.&lt;br /&gt;
 &lt;br /&gt;
Later, she was spotted clad in pygmy wombat furs, discussing the importance of hoof hygiene with a group of elderly muffalo.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! King of pirates{{br}}(Pirate)&lt;br /&gt;
| As a self-proclaimed king of pirates, [PAWN_nameDef] was ruthless. Manipulative in nature, [PAWN_pronoun] was not afraid to sacrifice the people around [PAWN_objective] in service of [PAWN_possessive] own goals. [PAWN_pronoun] was a good shot, but even more skilled with a sword, and [PAWN_pronoun] loved the adrenaline rush of close combat.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|8}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Animals: {{+|3}}&lt;br /&gt;
| Artistic{{br}}Cooking{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Language analyst{{br}}(Linguist)&lt;br /&gt;
| After war broke out on [PAWN_possessive] homeworld, [PAWN_nameDef] was conscripted as a linguist. [PAWN_pronoun] spent [PAWN_possessive] days in a space station, decoding enemy communications and tending the hydroponic crops.&lt;br /&gt;
&lt;br /&gt;
After a meteorite damaged the station, [PAWN_pronoun] was forced to enter cryptosleep and hope for rescue.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|8}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Lazy programmer{{br}}(Programmer)&lt;br /&gt;
| [PAWN_nameDef] independently developed software that had a competitive edge against local urbworld corporations.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] legally questionable methods lead to a growing number in unsolved claims of intellectual property theft.&lt;br /&gt;
| Intellectual: {{+|8}}&lt;br /&gt;
| PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Lone traveler{{br}}(Traveler)&lt;br /&gt;
| After escaping [PAWN_possessive] homeworld on a jury-rigged ship, [PAWN_nameDef] traveled to new worlds to experience their beauty.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] joined resistance groups and applied the skills [PAWN_pronoun] cultivated on [PAWN_possessive] homeworld. [PAWN_pronoun] often warned of the nuclear horror [PAWN_pronoun] saw as a child.&lt;br /&gt;
| Plants: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Lost marine{{br}}(Traitor)&lt;br /&gt;
| Shortly after being promoted to a respected position in his planet's military, [PAWN_nameDef] disappeared without a trace.&lt;br /&gt;
&lt;br /&gt;
Later, he reappeared at the head of his own military force. No one knows why he became who he was.&lt;br /&gt;
| Shooting: {{+|7}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|6}}&lt;br /&gt;
| ManualDumb{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Lost soldier{{br}}(Lost)&lt;br /&gt;
| [PAWN_nameDef]'s childhood soldier conditioning failed, and the experiment was shut down. [PAWN_pronoun] was abandoned, purposeless, friendless.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] eventually found solace in physically demanding work. [PAWN_pronoun] especially liked building houses and crafting heavy armor.&lt;br /&gt;
| Construction: {{+|5}}&amp;lt;/br&amp;gt;Intellectual: {{--|3}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Machine fixer{{br}}(Fixer)&lt;br /&gt;
| [PAWN_nameDef] was adept at dealing with mechanical problems, as long as the problem didn't involve the kitchen.&lt;br /&gt;
&lt;br /&gt;
After a life spent around dangerous machinery and flammable chemicals, [PAWN_pronoun] learned how to patch [PAWN_objective]self up pretty well. Despite the pain, [PAWN_pronoun] never learned to dislike fire.&lt;br /&gt;
| Construction: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Cooking{{br}}Firefighting{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mad accountant{{br}}(Accountant)&lt;br /&gt;
| As an accountant, [PAWN_nameDef] often socialized with colleagues, and made many friends in upper management.&lt;br /&gt;
&lt;br /&gt;
One day, [PAWN_nameDef] discovered a corruption racket run by some of [PAWN_possessive] bosses. After reporting this, [PAWN_pronoun] was fired. Wishing to hunt down those responsible, [PAWN_pronoun] went on a mass murder spree.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mad scientist{{br}}(Scientist)&lt;br /&gt;
| [PAWN_nameDef]'s lust for knowledge was only matched by his disdain for anyone who would stand in the way of his research.&lt;br /&gt;
&lt;br /&gt;
Traveling from world to world, he sought answers to questions few dared to ask.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|7}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Caring{{br}}Animals{{br}}Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mad scientist{{br}}(Scientist)&lt;br /&gt;
| After finishing her education, [PAWN_nameDef] was hired by the planet's leading genetic researcher. Later, she was caught running illegal, inhumane experiments.&lt;br /&gt;
&lt;br /&gt;
Despite her family's influence, she was convicted and sentenced to hard labor on a penal colony.&lt;br /&gt;
| Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&amp;lt;/br&amp;gt;Animals: {{--|2}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mad scientist{{br}}(Scientist)&lt;br /&gt;
| Stripped of his life’s work and exiled after his unethical experiments on the survivors of the Callos IX incident were published, [PAWN_nameDef] learned the skills necessary to survive in the outer rim.&lt;br /&gt;
&lt;br /&gt;
Continuing his research with nothing left to lose, he made minions to carry out the tasks that bored him.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Shooting: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Hauling{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Marble doctor{{br}}(Doctor)&lt;br /&gt;
| On a bomb-blasted world, first aid is often the only aid.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] used his medical skills to help the injured and the sick. [PAWN_pronoun] believed that while guns and machines may be powerful, a doctor is even more so.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|8}}&lt;br /&gt;
| Crafting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Master chef{{br}}(Chef)&lt;br /&gt;
| On a glitterworld, [PAWN_nameDef] found a job washing dishes at a famous restaurant and worked [PAWN_possessive] way up the ranks.&lt;br /&gt;
&lt;br /&gt;
A few years later, [PAWN_possessive] career came to an end when someone poisoned the meal [PAWN_pronoun] was preparing for the mayor. Jobless, [PAWN_pronoun] and left to explore the stars once again.&lt;br /&gt;
| Cooking: {{+|8}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Master trader{{br}}(Trader)&lt;br /&gt;
| [PAWN_nameDef] was a master at trading. [PAWN_pronoun] earned his nickname by helping a village through a trying time.&lt;br /&gt;
| Social: {{+|8}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&lt;br /&gt;
| Mining{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mech war veteran{{br}}(Veteran)&lt;br /&gt;
| [PAWN_nameDef] fought against swarms of rogue mechanoids since he was old enough to enlist. [PAWN_pronoun] has bled on half a dozen worlds and has lost more than he cares to recall. These experiences left him hardened, both mentally and physically.&lt;br /&gt;
| Shooting: {{+|7}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mechanics engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] loved solving problems and, with [PAWN_possessive] steady hands and a reputation for quality work, earned a job as a mechanical engineer. [PAWN_pronoun] built and redesigned devices of all shapes and sizes.&lt;br /&gt;
&lt;br /&gt;
Eventually, [PAWN_pronoun] was able to pick and choose [PAWN_possessive] corporate clients. [PAWN_pronoun] made several wealthy friends, as well as a few powerful enemies.&lt;br /&gt;
| Construction: {{+|5}}&amp;lt;/br&amp;gt;Plants: {{--|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medic soldier {{br}}(Medic)&lt;br /&gt;
| [PAWN_nameDef] enrolled in his planetary army as a frontline medic. He soon knew the horrors of war and was deeply marked by them.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] left the military and his homeworld and began researching medicine and helping those he came across.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|7}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medical scientist{{br}}(Scientist)&lt;br /&gt;
| Benjamin enlisted as a doctor on a passing science vessel. Roaming the stars with a large crew of xenohumans and transbirds, he did genetic research on encountered species. He developed a deep friendship with one transbird but was forced to leave the ship when the captain dismissed all non-avians.&lt;br /&gt;
| Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval knight {{br}}(Knight)&lt;br /&gt;
| William fought for king and country on the battlefield, where he further honed his skill as a swordsman. His greatest glory was leading a charge into an enemy courtroom and capturing the king at sword point.&lt;br /&gt;
&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|6}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mental patient{{br}}(Patient)&lt;br /&gt;
| [PAWN_nameDef] was placed in a psychiatric hospital. There, [PAWN_pronoun] spent [PAWN_possessive] time engaged in the calming activities of the asylum.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was eventually released, but [PAWN_pronoun] retained [PAWN_possessive] emotional distance, [PAWN_possessive] curiosity about human anatomy, and [PAWN_possessive] namesake manic giggling.&lt;br /&gt;
| Plants: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Cooking{{br}}Firefighting{{br}}Mining{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mercenary chef{{br}}(Mercenary)&lt;br /&gt;
| Following in his family's footsteps, [PAWN_nameDef] was a soldier for hire.&lt;br /&gt;
&lt;br /&gt;
He is a naturally gifted sharpshooter. However, his real passion is in perfecting a new recipe or dissecting a new gadget. &lt;br /&gt;
| Construction: {{--|3}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|5}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mercenary leader{{br}}(Mercenary)&lt;br /&gt;
| Alone, [PAWN_nameDef] set out to rebuild [PAWN_possessive] father's life's work. [PAWN_pronoun] challenged the leader of a small band of mercenaries and took control, then led the band as they hijacked trade ships and stole valuable cargo.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] men mutinied. [PAWN_pronoun] was abandoned, arrested, and sentenced to death.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mercenary lord{{br}}(Merc lord)&lt;br /&gt;
| [PAWN_nameDef] formed a mercenary company out of freelancers who wanted to make good money while also making slightly better-than-average moral choices. [PAWN_pronoun] called it the Ashmarines.&lt;br /&gt;
&lt;br /&gt;
To avoid the core worlds' military forces, [PAWN_pronoun] moved his company to the rim worlds. There, [PAWN_pronoun] established bases and communities. In ruling, [PAWN_pronoun] maintained a form of order among the raiders and madmen of deep space.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|7}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Animals{{br}}Mining{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mercenary pilot{{br}}(Mercenary)&lt;br /&gt;
| [PAWN_nameDef] convinced his squadron to abscond with their ships and make a course for the rim worlds. There they could fight for the causes they believed in.&lt;br /&gt;
&lt;br /&gt;
His men were loyal and fought hard, but their ideals soon faded away and their cause became that of the highest bidder.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|1}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mercenary{{br}}(Merc)&lt;br /&gt;
| Vas spent his teenage years as a mercenary, being hired to kill and maim others. He was tall, menacing, and frightening. He could instill fear into the hearts of any man who crossed him, and kill anyone he wanted.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mercenary{{br}}(Mercenary)&lt;br /&gt;
| After escaping a crew of rimworld slavers, Graham developed a lack of respect for life. He proceeded to sign on to a mercenary group where he developed skills using guns and survival techniques. Graham did dirty work where he found it, and traveled to many worlds.&lt;br /&gt;
&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|5}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mercenary{{br}}(Mercenary)&lt;br /&gt;
| After escaping his home planet, [PAWN_nameDef] fell in with a band of mercenaries. [PAWN_pronoun] fought alongside his brothers and sisters in arms for many years.&lt;br /&gt;
&lt;br /&gt;
One day, they were caught in a fight they couldn't win. Refusing to retreat, [PAWN_nameDef] was shot down by his enemies. [PAWN_pronoun] was alarmed to awake in a heap of corpses, mysteriously unharmed.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|6}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Microbiologist{{br}}(Biologist)&lt;br /&gt;
| A plague struck [PAWN_nameDef]'s native urbworld. [PAWN_nameDef] and other researchers revealed that the illness was a bioweapon, but the people turned on them, blaming them for the sickness.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] barely escaped his homeworld as it fell into chaos.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Midworld sailor{{br}}(Sailor)&lt;br /&gt;
| [PAWN_nameDef] joined his country's Royal Navy. After years as a non-commissioned officer, he eventually cracked and used the skills he had acquired to start a mutiny on his ship.&lt;br /&gt;
&lt;br /&gt;
In the end, [PAWN_nameDef] was the leader of a large group of trained and dangerous pirates. He henceforth always had chefs to cook for him.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|4}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Military engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] worked as an engineer for a colonial military. [PAWN_pronoun] got to play with weapons, murder-drones, and other 'fun' stuff.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] specialized in repairing and modifying mechanoids' tools. Sometimes [PAWN_pronoun] tested them [PAWN_objective]self.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Military gunsmith{{br}}(Gunsmith)&lt;br /&gt;
| When [PAWN_possessive] world was thrown into conflict, [PAWN_nameDef] was conscripted along with many of [PAWN_possessive] peers into the war machine that tore across the planet.&lt;br /&gt;
&lt;br /&gt;
With [PAWN_possessive] particular expertise, [PAWN_pronoun] was lucky enough to find a position serving as small arms mechanic rather than on the front line.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{+|1}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Military inventor{{br}}(Inventor)&lt;br /&gt;
| Jackson, in a final act of rebellion, left his father's lab and joined the local Imperial military.&lt;br /&gt;
&lt;br /&gt;
He used his laboratory skills to design machines of war. At this he was one of the best on his planet.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Military officer{{br}}(Officer)&lt;br /&gt;
| Obsessed with interstellar travel, [PAWN_nameDef] left [PAWN_possessive] desolate life behind to join a military academy in hopes of becoming a pilot.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was trained in advanced combat and survival skills. While [PAWN_pronoun] excelled in [PAWN_possessive] studies, [PAWN_nameDef] was a loner and never cared about [PAWN_possessive] crewmates.&lt;br /&gt;
&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|8}}&amp;lt;/br&amp;gt;Social: {{--|3}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Militia soldier{{br}}(Soldier)&lt;br /&gt;
| [PAWN_nameDef] joined the militia forces and fought for rights and peace.&lt;br /&gt;
&lt;br /&gt;
After her homeworld was unexpectedly destroyed in the wars, she traveled great distances, seeking a refuge where she could build a new, free way of life.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mindwiped assassin{{br}}(Mindwipe)&lt;br /&gt;
| The corporation took and remade [PAWN_nameDef]. They trained [PAWN_objective] into an tool of destruction and subversion. [PAWN_pronoun] took to [PAWN_possessive] new life, finding satisfaction in the jobs they sent [PAWN_objective] on.&lt;br /&gt;
&lt;br /&gt;
When [PAWN_pronoun] learned that they planned on disposing of [PAWN_objective], [PAWN_nameDef] turned on his masters, killing several and fleeing the planet.&lt;br /&gt;
| Shooting: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Minister{{br}}(Minister)&lt;br /&gt;
| [PAWN_nameDef] managed to secure an important position in the government of a minor glitterworld. [PAWN_pronoun] got used to the opulence, while attempting to keep [PAWN_possessive] citizens content. [PAWN_pronoun] had ample time for pleasure and indulgence – though [PAWN_pronoun] never forgot how to do hard work.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Missionary{{br}}(Missionary)&lt;br /&gt;
| [PAWN_nameDef] decided to devote [PAWN_possessive] life to religious service. [PAWN_pronoun] made a vow of peace and spent several years preaching and serving food in soup kitchens for the homeless.&lt;br /&gt;
| Social: {{+|6}}&amp;lt;/br&amp;gt;Cooking: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mob henchman{{br}}(Henchman)&lt;br /&gt;
| After being &amp;quot;saved&amp;quot; from his home world by a slaver ship, [PAWN_nameDef] was sold to an urbworld crime lord, where he was used as a henchman. He specialized in low-tech beat-downs and intimidation.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|7}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Muffalo researcher{{br}}(Researcher)&lt;br /&gt;
| [PAWN_nameDef] specialized in studying and manipulating the genetic code of the muffalo.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] work left little time to develop an appreciation for the arts or other people's company.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mutinous captain{{br}}(Captain)&lt;br /&gt;
| [PAWN_nameDef] was taken to the stars by slavers after [PAWN_possessive] tribe was decimated in a raid. Over the years [PAWN_pronoun] learned the language of [PAWN_possessive] captors, eventually working for them as an interpreter and diplomat.&lt;br /&gt;
&lt;br /&gt;
The captain only learned of [PAWN_nameDef]'s true cunning when revenge was taken by form of mutiny.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|8}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=Backstories&amp;diff=63404</id>
		<title>Backstories</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=Backstories&amp;diff=63404"/>
		<updated>2019-05-08T12:50:38Z</updated>

		<summary type="html">&lt;p&gt;Mehni: Updated to reflect latest backstory data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&lt;br /&gt;
Backstories define the skills and restrictions of the [[colonist]] in question and may either enhance or impair the colonist's competence regarding specific [[skills]].&lt;br /&gt;
&lt;br /&gt;
All colonists will have a childhood backstory, but only colonists generated at age 20 or older will have an adulthood backstory. Teenage colonists that age naturally to 20 years old will not gain an adulthood backstory. Currently there are 36 childhood backstories and about 85 adult backstories. Several adult backstories are not available in the character creation phase, but can randomly appear on [[raider]]s and wanderers.&lt;br /&gt;
&lt;br /&gt;
It was possible to buy a DLC that allows the addition of a backstory or character into the game. As a result, some backstories are always together, in a colonist that always has the same name. This can have the unintended situation of the same person returning to life multiple times. There are 290 of such backstories, and they can be found here:&lt;br /&gt;
&lt;br /&gt;
* [[List of player created childhood backstories A through M]]&lt;br /&gt;
* [[List of player created childhood backstories N through Z]]&lt;br /&gt;
* [[List of player created adulthood backstories A through M]]&lt;br /&gt;
* [[List of player created adulthood backstories N through Z]]&lt;br /&gt;
&lt;br /&gt;
The wiki cannot display them all one a single page due to technical reasons.&lt;br /&gt;
&lt;br /&gt;
From Alpha 16 onward, backstories are translatable, though translated backstories only begin to appear in Alpha 17.&lt;br /&gt;
&lt;br /&gt;
==Backstory List==&lt;br /&gt;
=====Adult Backstories=====&lt;br /&gt;
{{:List of adulthood backstories}}&lt;br /&gt;
&lt;br /&gt;
=====Childhood Backstories=====&lt;br /&gt;
{{:List of childhood backstories}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;onlyinclude&amp;gt;&lt;br /&gt;
[[Category:Characters]]&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=List_of_adulthood_backstories&amp;diff=63403</id>
		<title>List of adulthood backstories</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=List_of_adulthood_backstories&amp;diff=63403"/>
		<updated>2019-05-08T12:49:33Z</updated>

		<summary type="html">&lt;p&gt;Mehni: The definitive list of backstories, sourced from build 2231. Script made. This is as they appear in the game.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;amp;larr; &amp;lt;small&amp;gt;[[Backstories]]&amp;lt;/small&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| {{STDT| sortable c_17}}&lt;br /&gt;
!Title &amp;lt;br/&amp;gt; (Short Title) !!Description !!Skill Modifications !!Incapable of !!Civil !!Raider !!Slave !!Trader !!Traveler !!Tribal&lt;br /&gt;
|-&lt;br /&gt;
! Actor{{br}}(Actor)&lt;br /&gt;
| [PAWN_nameDef] travelled [PAWN_possessive] homeworld with a company of actors, playing to packed theatres and loving audiences everywhere. [PAWN_pronoun] was a perfectionist, and made [PAWN_possessive] own props and costumes rather than use the ones [PAWN_pronoun] was given.&lt;br /&gt;
| Social: {{+|8}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Architect{{br}}(Architect)&lt;br /&gt;
| [PAWN_nameDef] designed and constructed buildings. On [PAWN_possessive] glitterworld home, most of the technical aspects of architecture were handled by an AI. This enabled [PAWN_objective] to push the artistic limits of the craft, but also meant [PAWN_pronoun] never had to get [PAWN_possessive] hands dirty at building sites.&lt;br /&gt;
| Construction: {{+|5}}&amp;lt;/br&amp;gt;Artistic: {{+|7}}&amp;lt;/br&amp;gt;Crafting: {{--|3}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Ascetic priest{{br}}(Priest)&lt;br /&gt;
| After taking a vow of silence, [PAWN_nameDef] joined a monastery on a peaceful backwater planet to spend [PAWN_possessive] days in quiet contemplation.{{br}}[PAWN_pronoun] found happiness growing vegetables in the garden and making cheese in the monastery cellars.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| Violent{{br}}Social{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Assassin{{br}}(Assassin)&lt;br /&gt;
| [PAWN_nameDef] was a professional assassin. [PAWN_pronoun] was cold, calculating, and made a good profit. In this business, an utter lack of empathy was an asset.&lt;br /&gt;
| Melee: {{+|10}}&amp;lt;/br&amp;gt;Shooting: {{+|10}}&lt;br /&gt;
| Intellectual{{br}}ManualDumb{{br}}ManualSkilled{{br}}Social{{br}}Caring{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bartender{{br}}(Barkeep)&lt;br /&gt;
| [PAWN_nameDef] worked as a bartender on a seedy space station. The job entailed one part drink mixing, one part diplomacy, and one part head-bashing.&lt;br /&gt;
| Social: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Biosphere manager{{br}}(Botanist)&lt;br /&gt;
| [PAWN_nameDef] lived on a peaceful glitterworld where all menial work was done by robots and people devoted themselves to leisure. [PAWN_pronoun] managed the plant and animal life of a sprawling park, where citizens came to admire the natural beauty.&lt;br /&gt;
| Shooting: {{--|4}}&amp;lt;/br&amp;gt;Animals: {{+|6}}&amp;lt;/br&amp;gt;Plants: {{+|6}}&lt;br /&gt;
| ManualDumb{{br}}Crafting{{br}}Cooking{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blacksmith{{br}}(Blacksmith)&lt;br /&gt;
| As a smith on a medieval world, [PAWN_nameDef] gained a reputation for the high quality of [PAWN_possessive] work. [PAWN_pronoun] wasn't bad at using the swords [PAWN_pronoun] forged either.&lt;br /&gt;
| Shooting: {{--|5}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|6}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bodyguard{{br}}(Bodyguard)&lt;br /&gt;
| [PAWN_nameDef] found work on a midworld, protecting whoever paid [PAWN_objective] from harm. [PAWN_pronoun] gained proficiency in many different combat forms, and was known for [PAWN_possessive] ruthlessness against those who crossed [PAWN_objective].&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Castaway{{br}}(Castaway)&lt;br /&gt;
| [PAWN_nameDef] was the only survivor of a ship crash on an unhabited animal world. For many years until [PAWN_possessive] rescue [PAWN_pronoun] scrounged an existence out of whatever [PAWN_pronoun] could find.{{br}}[PAWN_possessive] survival skills became razor-sharp, but spending so long alone severely dampened [PAWN_possessive] conversatial abilities.&lt;br /&gt;
| Melee: {{+|5}}&amp;lt;/br&amp;gt;Animals: {{+|3}}&amp;lt;/br&amp;gt;Construction: {{+|4}}&lt;br /&gt;
| Intellectual{{br}}Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cave tender{{br}}(Tender)&lt;br /&gt;
| While the others were out hunting and foraging, [PAWN_nameDef] would stay at home to cook and take care of the young and sick.&lt;br /&gt;
| Cooking: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Caveworld illuminator{{br}}(Illuminator)&lt;br /&gt;
| Among tunnel-dwellers, those with vision as strong as [PAWN_nameDef]’s are revered as sages. [PAWN_pronoun] would lead the way, marking spots to dig with bioluminescent fungus and warning others of impending danger.&lt;br /&gt;
| Mining: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Charity worker{{br}}(Altruist)&lt;br /&gt;
| Glitterworlds are havens of safety and comfort for those lucky enough to live there, but [PAWN_nameDef] could not ignore nearby planets where people suffered in poverty. [PAWN_pronoun] spent [PAWN_possessive] working life appealing for donations and supporting those in need.&lt;br /&gt;
| Social: {{+|6}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Civil servant{{br}}(Clerk)&lt;br /&gt;
| [PAWN_nameDef] worked as a low-ranking administrator for a moribund government bureaucracy. [PAWN_pronoun] is most at home filling out complicated paperwork and playing office politics.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Construction: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Colony settler{{br}}(Settler)&lt;br /&gt;
| [PAWN_nameDef] was a settler on a new colony world.{{br}}Such a life requires a jack-of-all trades at basic hands-on tasks.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Plants: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Con artist{{br}}(Con artist)&lt;br /&gt;
| [PAWN_nameDef] never created anything in [PAWN_possessive] life. [PAWN_pronoun] did, however, prove to be a natural at getting others to give [PAWN_objective] what they had created.&lt;br /&gt;
| Social: {{+|10}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Conceptual artist{{br}}(Artist)&lt;br /&gt;
| [PAWN_nameDef] was well-known in art circles on [PAWN_possessive] home world for [PAWN_possessive] unique and creative conceptual artworks.{{br}}Nobody was sure exactly what [PAWN_pronoun] was trying to communicate, but [PAWN_possessive] pieces were highly valued by collectors.&lt;br /&gt;
| Artistic: {{+|8}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Social{{br}}Caring{{br}}Hauling{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Construction engineer{{br}}(Builder)&lt;br /&gt;
| [PAWN_nameDef] was a construction worker on a midworld. [PAWN_pronoun] lead a team which built everything from office blocks to cathedrals.{{br}}[PAWN_possessive] busy job and numerous nearby fast-food outlets meant [PAWN_pronoun] never cooked for [PAWN_objective]self.&lt;br /&gt;
| Construction: {{+|8}}&amp;lt;/br&amp;gt;Plants: {{--|3}}&lt;br /&gt;
| Intellectual{{br}}Cooking{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Counselor{{br}}(Counselor)&lt;br /&gt;
| A terrifying trauma when [PAWN_nameDef] was a young adult caused [PAWN_objective] to develop a serious eating disorder. With counseling [PAWN_pronoun] learned to have a healthier relationship with food, and decided to put [PAWN_possessive] new skills to use helping others overcome their emotional problems.&lt;br /&gt;
| Social: {{+|9}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Courtesean{{br}}(Courtesean)&lt;br /&gt;
| [PAWN_nameDef] was used for [PAWN_possessive] body by hundreds of customers in brothels on several planets. [PAWN_pronoun] gained some mental marks and a special kind of street smarts.&lt;br /&gt;
| Social: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| ManualDumb{{br}}ManualSkilled{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Deep space miner{{br}}(Miner)&lt;br /&gt;
| [PAWN_nameDef] did the sweaty, grimy work of pulling metal out of asteroids on a deep space rig. [PAWN_pronoun] used [PAWN_possessive] hands-on industrial skills daily - and wasn't bad in a bar fight either.&lt;br /&gt;
| Mining: {{+|7}}&amp;lt;/br&amp;gt;Construction: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Defector{{br}}(Defector)&lt;br /&gt;
| Early in [PAWN_possessive] adulthood, [PAWN_nameDef] decided to leave the oppressive dictatorship where [PAWN_pronoun] lived. [PAWN_possessive] defection was not well-received, and agents were sent out after [PAWN_objective].{{br}}[PAWN_pronoun] spent years on the run, treating [PAWN_possessive] own wounds so no doctor could betray [PAWN_objective]. The ordeal made [PAWN_objective] bitter and untrusting.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Social: {{--|4}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Digger{{br}}(Digger)&lt;br /&gt;
| [PAWN_nameDef] and [PAWN_possessive] tribe carved their home deep into the side of a mountain. [PAWN_nameDef] feels most at home picking through rock and shoring up cave walls.&lt;br /&gt;
| Mining: {{+|5}}&amp;lt;/br&amp;gt;Construction: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Drifter{{br}}(Drifter)&lt;br /&gt;
| [PAWN_nameDef] never figured out what to do with [PAWN_possessive] life. [PAWN_pronoun] travelled often, taking up casual work wherever [PAWN_pronoun] found it.{{br}}[PAWN_pronoun] also occasionally worked on a novel that [PAWN_pronoun] knew would be a bestseller - just as soon as [PAWN_pronoun] could find a publisher who was interested.&lt;br /&gt;
| Cooking: {{+|3}}&amp;lt;/br&amp;gt;Construction: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{--|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Escaped convict{{br}}(Escapee)&lt;br /&gt;
| [PAWN_nameDef] denies involvement in the crimes that brought about [PAWN_possessive] incarceration in a brutal penal colony. [PAWN_pronoun] escaped by tunnelling beneath the perimeter using modified cutlery.&lt;br /&gt;
| Mining: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Evangelist{{br}}(Evangelist)&lt;br /&gt;
| As a youth, [PAWN_nameDef] experienced a religious awakening. [PAWN_pronoun] decided to spend the rest of [PAWN_possessive] life spreading the word of [PAWN_possessive] deity, the beauty of its culture, and its unusual medical tradition.&lt;br /&gt;
| Social: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Explosives expert{{br}}(Blaster)&lt;br /&gt;
| [PAWN_nameDef] was an explosive engineer employed in mines. [PAWN_pronoun] took [PAWN_possessive] job very seriously and was well-versed in the technicalities - so much so that [PAWN_pronoun] refused to demean [PAWN_objective]self by helping with the clean-up once [PAWN_possessive] carefully-calculated explosion was complete.&lt;br /&gt;
| Mining: {{+|5}}&amp;lt;/br&amp;gt;Intellectual: {{+|5}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Factory worker{{br}}(Worker)&lt;br /&gt;
| [PAWN_nameDef] did menial, unskilled work in an industrial-era factory. [PAWN_possessive] job also included caring for the mules and horses which transported goods around the city.&lt;br /&gt;
| Animals: {{+|3}}&amp;lt;/br&amp;gt;Construction: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Artistic{{br}}Cooking{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gardener{{br}}(Gardener)&lt;br /&gt;
| On industrial worlds, wealth concentrates in the hands of those who own the factories and sell the goods. [PAWN_nameDef] worked at the mansion of one such rich family, tending the lavish gardens as part of a team of servants.&lt;br /&gt;
| Plants: {{+|8}}&lt;br /&gt;
| Intellectual{{br}}Crafting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gatherer{{br}}(Gatherer)&lt;br /&gt;
| [PAWN_nameDef] is a master gatherer. [PAWN_pronoun] can find food in the most barren of places using [PAWN_possessive] deep knowledge of plants, roots, and berries.&lt;br /&gt;
| Plants: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Geologist{{br}}(Geologist)&lt;br /&gt;
| [PAWN_nameDef] worked with miners and cave-diggers, identifying rock types and natural formations.{{br}}During [PAWN_possessive] years underground [PAWN_pronoun] also gained experience repairing drilling machines and other technical equipment.&lt;br /&gt;
| Mining: {{+|8}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Glitterworld empath{{br}}(Empath)&lt;br /&gt;
| [PAWN_nameDef] had an amazing ability to relate to others and mediate conflict. [PAWN_pronoun] was selected to train as an empath. The training intensified [PAWN_possessive] natural abilities, but [PAWN_pronoun] became unable to harm others.&lt;br /&gt;
| Social: {{+|8}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Glitterworld officer{{br}}(Officer)&lt;br /&gt;
| Though glitterworlds are peaceful places, they often remain prepared for war. [PAWN_nameDef]'s unit rarely saw any real action.{{br}}Though [PAWN_pronoun] pursued [PAWN_possessive] artistic hobbies, [PAWN_possessive] subordinates preferred to entertain themselves by brawling, so [PAWN_nameDef] got good at breaking up fights.&lt;br /&gt;
| Melee: {{+|6}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Glitterworld surgeon{{br}}(Surgeon)&lt;br /&gt;
| [PAWN_nameDef] worked as a surgeon on a world mostly free of disease and human suffering.{{br}}[PAWN_possessive] job mostly involved elaborate and creative cosmetic surgeries. [PAWN_pronoun] has a good understanding of human biology, but never had to remove a cancer — or a bullet.&lt;br /&gt;
| Artistic: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Healer{{br}}(Healer)&lt;br /&gt;
| After [PAWN_possessive] tribe’s elder healer was killed in a raid, [PAWN_nameDef] took on the role. [PAWN_pronoun] spent [PAWN_possessive] days scrounging up herbs and mineral compounds from the nearby area to use in surprisingly effective remedies.&lt;br /&gt;
| Medicine: {{+|4}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Herbalist{{br}}(Herbalist)&lt;br /&gt;
| [PAWN_nameDef] lived in the forest near a village. Though many of the villagers feared [PAWN_objective], sick villagers would come to [PAWN_objective] to purchase salves and poultices made from the herbs [PAWN_pronoun] grew in [PAWN_possessive] garden. [PAWN_pronoun] was happy to help them — for a price.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hermit{{br}}(Hermit)&lt;br /&gt;
| Worn out by the pressures of social interaction, [PAWN_nameDef] left [PAWN_possessive] crowded midworld city to live a simple life in the wilderness. There, [PAWN_pronoun] spent [PAWN_possessive] days alone, tending [PAWN_possessive] garden and crafting the simple tools [PAWN_pronoun] needed to survive.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&amp;lt;/br&amp;gt;Construction: {{+|1}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hiveworld drone{{br}}(Drone)&lt;br /&gt;
| [PAWN_nameDef] worked as a mindless construction drone in a massive hiveworld civilization. Though [PAWN_pronoun] is now freed from the brutal social experiments to which [PAWN_pronoun] was subjected, [PAWN_pronoun] remains incapable of creative thought and leadership.&lt;br /&gt;
| Construction: {{+|5}}&amp;lt;/br&amp;gt;Mining: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Artistic{{br}}Intellectual{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! House servant{{br}}(Servant)&lt;br /&gt;
| Early in [PAWN_possessive] adulthood, [PAWN_nameDef] was kidnapped and sold to wealthy aristocrats as a domestic servant.{{br}}[PAWN_pronoun] got to know the kitchens and basements of [PAWN_possessive] master's mansion well, but never did any work outside.&lt;br /&gt;
| Cooking: {{+|4}}&amp;lt;/br&amp;gt;Plants: {{--|3}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Housemate{{br}}(Housemate)&lt;br /&gt;
| As an adult, [PAWN_nameDef] kept house and cared for children while [PAWN_possessive] spouse worked.&lt;br /&gt;
| Cooking: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Human computer{{br}}(Computer)&lt;br /&gt;
| [PAWN_nameDef] turned out to have an excellent memory and a gift for performing complex calculations in [PAWN_possessive] head. A midworld dictator decided to employ [PAWN_nameDef] to keep track of [PAWN_possessive] state's finances and expenditure, since electrical computers were too susceptible to hacking.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|7}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Illegal shipwright{{br}}(Shipwright)&lt;br /&gt;
| There is a law that says that you're not allowed to put terawatt-range grasers on a cargo scow. Especially if you hide them under what looks like a communications dish for better ambush potential. [PAWN_nameDef] discovered that there is great profit to be made, however, from those who are uninterested in these laws.&lt;br /&gt;
| Construction: {{+|7}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Inventor{{br}}(Inventor)&lt;br /&gt;
| On [PAWN_possessive] homeworld, [PAWN_nameDef] worked as a moderately successful inventor. [PAWN_pronoun] developed several minor technologies.&lt;br /&gt;
| Crafting: {{+|5}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Jailbird{{br}}(Jailbird)&lt;br /&gt;
| [PAWN_nameDef] spent most of [PAWN_possessive] life in prisons, where [PAWN_pronoun] was put to work in the kitchens. [PAWN_pronoun] had a habit of getting into fights, and developed an aggressive way of speaking.&lt;br /&gt;
| Melee: {{+|5}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&lt;br /&gt;
| Social{{br}}Caring{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Joywire artist{{br}}(Joywirer)&lt;br /&gt;
| [PAWN_nameDef] worked in an urbworld lab developing cutting-edge joywire software to maximize user pleasure.{{br}}When the local government imposed harsh restrictions on joywire manufacturing, [PAWN_pronoun] began selling [PAWN_possessive] products on the black market.&lt;br /&gt;
| Artistic: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Loner{{br}}(Loner)&lt;br /&gt;
| Loner never much liked the tribal council or the yearly festivals. [PAWN_pronoun] prefers the open plain and the lonely whistle of wind through the rocks.{{br}}[PAWN_pronoun] visits [PAWN_possessive] tribe from time to time, but for the most part [PAWN_pronoun] takes care of [PAWN_objective]self using [PAWN_possessive] own survival skills.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|5}}&amp;lt;/br&amp;gt;Construction: {{+|1}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Lore keeper{{br}}(Keeper)&lt;br /&gt;
| [PAWN_nameDef] was one of a long line of lore keepers in [PAWN_possessive] tribe. Every night around the fire, [PAWN_pronoun] would pass on ancient knowledge and helpful wisdom through stories.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Low-wage worker{{br}}(Grunt)&lt;br /&gt;
| [PAWN_nameDef] worked a variety of casual jobs to support [PAWN_possessive] family, gaining a set of basic hands-on skills.&lt;br /&gt;
| Cooking: {{+|4}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Luddite rebel{{br}}(Luddite)&lt;br /&gt;
| When the majority of people on [PAWN_possessive] world chose to give up their individuality and biological humanity to join together in an online hivemind, [PAWN_nameDef] joined a rebel faction that chose to forsake most technology.&lt;br /&gt;
| Melee: {{+|3}}&amp;lt;/br&amp;gt;Construction: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Crafting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Machine collector{{br}}(Collector)&lt;br /&gt;
| [PAWN_nameDef] was obsessed with old machines and arcane pieces of technology. [PAWN_pronoun] obtained them wherever [PAWN_pronoun] could, and loved taking them apart to see how they worked.{{br}}[PAWN_pronoun] had a habit of talking about [PAWN_possessive] collection long after people around [PAWN_objective] had stopped listening.&lt;br /&gt;
| Social: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|6}}&amp;lt;/br&amp;gt;Intellectual: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mafia boss{{br}}(Boss)&lt;br /&gt;
| [PAWN_nameDef] was a high-ranking member of an urbworld crime syndicate.{{br}}[PAWN_pronoun] bribed officials, maintained the loyalty of [PAWN_possessive] subordinates, and extracted overdue payments - by any means necessary.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|4}}&lt;br /&gt;
| ManualDumb{{br}}Caring{{br}}Cooking{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mathematician{{br}}(Math prof)&lt;br /&gt;
| [PAWN_nameDef] did mathematical research at a university.{{br}}[PAWN_pronoun] spent much of [PAWN_possessive] spare time immersed in shooting simulations, though [PAWN_pronoun] was frequently ridiculed by other players for [PAWN_possessive] terrible aim.&lt;br /&gt;
| Shooting: {{--|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|8}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval doctor{{br}}(Quack)&lt;br /&gt;
| [PAWN_nameDef] worked as a doctor on a medieval planet. [PAWN_pronoun] firmly believes that most ailments can be cured with a little bloodletting.{{br}}[PAWN_pronoun] was also a master anaesthetist, developing a specialty technique that involved a heavy blow to the head.&lt;br /&gt;
| Melee: {{+|6}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval farm oaf{{br}}(Oaf)&lt;br /&gt;
| Tilling, hoeing, guiding ox carts, pushing wheelbarrows. Digging ditches, planting seeds, predicting the harvest.{{br}}Medieval-level farmers aren't educated in the usual sense, but they know a lot about growing plants without technology. That said, such a life leaves one essentially incapable of participating in intellectual, technology-driven activities.&lt;br /&gt;
| Plants: {{+|8}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval lord{{br}}(Noble)&lt;br /&gt;
| [PAWN_nameDef] was a lord on a preindustrial planet. [PAWN_pronoun] went to parties, managed the underlings, and even learned some swordplay.{{br}}[PAWN_possessive] soft hands did not hold a work tool during that entire time. [PAWN_pronoun] considers manual labor to be beneath [PAWN_objective].&lt;br /&gt;
| Social: {{+|7}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&amp;lt;/br&amp;gt;Shooting: {{+|5}}&lt;br /&gt;
| ManualDumb{{br}}ManualSkilled{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval minstrel{{br}}(Minstrel)&lt;br /&gt;
| [PAWN_nameDef] was a traveling entertainer on a medieval world.{{br}}[PAWN_pronoun] could always be found telling stories or singing songs, and is capable of protecting [PAWN_objective]self from the dangers of the road. However, [PAWN_pronoun] was always conspicuously absent whenever there was hard labour to be done.&lt;br /&gt;
| Social: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| ManualSkilled{{br}}Hauling{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Message carrier{{br}}(Messenger)&lt;br /&gt;
| On a medieval world, the fastest way to send a message is to give it to somebody on a horse and hope they survive the journey. [PAWN_nameDef] was that somebody.&lt;br /&gt;
| Melee: {{+|3}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Midworld chef{{br}}(Chef)&lt;br /&gt;
| [PAWN_nameDef] ran a high-class midworld restaurant. [PAWN_pronoun] was famous among patrons for [PAWN_possessive] creative culinary specialties, and infamous among kitchen workers for [PAWN_possessive] casual disdain for grunt work.&lt;br /&gt;
| Cooking: {{+|6}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Military commissar{{br}}(Commissar)&lt;br /&gt;
| [PAWN_nameDef] was an internal spymaster in an Imperial army battalion. [PAWN_pronoun] made sure that the men were loyal, and did not fall back unless ordered. This made [PAWN_objective] unpopular, but [PAWN_pronoun] gained great skill at detecting the slightest dishonesty.&lt;br /&gt;
| Shooting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Model{{br}}(Model)&lt;br /&gt;
| [PAWN_nameDef] modelled clothes and jewellery for advertisers, and was also used as a physical blueprint for characters in virtual reality simulations.&lt;br /&gt;
| Social: {{+|5}}&amp;lt;/br&amp;gt;Artistic: {{+|6}}&lt;br /&gt;
| ManualDumb{{br}}Intellectual{{br}}ManualSkilled{{br}}Caring{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Muffalo shaman{{br}}(Shaman)&lt;br /&gt;
| Because of [PAWN_possessive] quiet wisdom and great strength, [PAWN_nameDef] became the spiritual leader for a nomadic tribe that followed the herds of roaming muffalo.&lt;br /&gt;
| Melee: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Navy scientist{{br}}(Scientist)&lt;br /&gt;
| Interstellar warfare is won by technology, so imperial navies are always on the peak of modern research. Even better, they have first access to archotechnological artifacts because they find them in space.{{br}}[PAWN_nameDef] worked in a navy lab.&lt;br /&gt;
| Intellectual: {{+|8}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Novelist{{br}}(Novelist)&lt;br /&gt;
| [PAWN_nameDef] lived on a glitterworld, penning wildly successful novels. [PAWN_pronoun] lived a carefree lifestyle, spending [PAWN_possessive] days writing and [PAWN_possessive] nights partying - and never did a day's manual labour in [PAWN_possessive] life.&lt;br /&gt;
| Construction: {{--|5}}&amp;lt;/br&amp;gt;Mining: {{--|5}}&amp;lt;/br&amp;gt;Artistic: {{+|8}}&lt;br /&gt;
| ManualDumb{{br}}Social{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Nurse{{br}}(Nurse)&lt;br /&gt;
| [PAWN_nameDef] worked in an industrial-era hospital, doing routine work such as changing bandages and taking temperatures.{{br}}It was a busy job, but [PAWN_pronoun] could always find time for a chat with a patient.&lt;br /&gt;
| Social: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|5}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Paramedic{{br}}(Paramedic)&lt;br /&gt;
| [PAWN_nameDef]'s job was to respond rapidly to medical emergencies. [PAWN_pronoun] is used to dealing with severe injuries with only limited medical supplies.{{br}}[PAWN_pronoun] treated so many gunshot wounds over the years that even seeing a gun made [PAWN_objective] uncomfortable.&lt;br /&gt;
| Shooting: {{--|5}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pit brawler{{br}}(Brawler)&lt;br /&gt;
| [PAWN_nameDef] was nine years old when [PAWN_pronoun] got in [PAWN_possessive] first fight. [PAWN_pronoun] won, but more important was the enjoyment of [PAWN_possessive] audience. Pit fighting turned out to be a lucrative career for those who could survive it. And it was even mostly legal.&lt;br /&gt;
| Melee: {{+|8}}&lt;br /&gt;
| Intellectual{{br}}Caring{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Psychiatric patient{{br}}(Patient)&lt;br /&gt;
| [PAWN_nameDef] spent most of [PAWN_possessive] adult life in an insane asylum. [PAWN_possessive] industrial homeworld had a poor understanding of mental illness, and [PAWN_pronoun] was treated more like an animal than a person.{{br}}Though [PAWN_pronoun] eventually recovered and was released, [PAWN_possessive] experience dampened many of [PAWN_possessive] basic life skills.&lt;br /&gt;
| Cooking: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{--|2}}&lt;br /&gt;
| Social{{br}}Caring{{br}}Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Ranch owner{{br}}(Rancher)&lt;br /&gt;
| [PAWN_nameDef] owned and operated a successful ranch where [PAWN_pronoun] raised animals for meat and wool.{{br}}[PAWN_pronoun] refused to do any dumb labour [PAWN_pronoun] could pay someone else to do for [PAWN_objective].&lt;br /&gt;
| Animals: {{+|8}}&amp;lt;/br&amp;gt;Cooking: {{--|4}}&amp;lt;/br&amp;gt;Mining: {{--|4}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Recruiter{{br}}(Recruiter)&lt;br /&gt;
| [PAWN_nameDef] was part of an revered order of martial artists, infamous both for their skill in combat and for their practice of refusing to treat their wounded.{{br}}[PAWN_pronoun] travelled [PAWN_possessive] homeworld, judging the young people [PAWN_pronoun] met to determine if they might be suitable for training.&lt;br /&gt;
| Melee: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|5}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sailor{{br}}(Sailor)&lt;br /&gt;
| [PAWN_nameDef] traversed the oceans on journeys of exploration, seeking out plant and animal specimens from exotic places, and occasionally fending off pirates. [PAWN_pronoun] loved the sea so much [PAWN_pronoun] refused to do all but the barest minimum of work on land, except to sell the treasures [PAWN_pronoun] collected.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| ManualSkilled{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Scout{{br}}(Scout)&lt;br /&gt;
| Since [PAWN_possessive] tribe has made contact with local outlanders, [PAWN_nameDef] has contracted [PAWN_possessive] services out as a guide to the local area. Frequent contact with ancient relics has made [PAWN_objective] fairly comfortable with the old technology.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Sculptor{{br}}(Sculptor)&lt;br /&gt;
| [PAWN_nameDef] started off sculpting person-sized chunks of stone, but [PAWN_pronoun] soon began to think bigger. With the help of mining robots, [PAWN_pronoun] learned how to carve huge monuments out of cliffsides. Soon the nature parks of the glitterworld where [PAWN_pronoun] lived were full of giant rock figures.&lt;br /&gt;
| Plants: {{--|4}}&amp;lt;/br&amp;gt;Mining: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|9}}&lt;br /&gt;
| ManualDumb{{br}}Crafting{{br}}Cooking{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sheriff{{br}}(Sheriff)&lt;br /&gt;
| [PAWN_nameDef] was the law enforcer in an isolated industrial town. [PAWN_pronoun] dealt with petty crime, dispute resolution, and the occasional drunken saloon shootout.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Space marine{{br}}(Marine)&lt;br /&gt;
| [PAWN_nameDef] was a warrior in an Imperial navy. [PAWN_possessive] job was to punch into enemy starships, gun down the crew, and capture the ship intact. And [PAWN_pronoun] was good at it.&lt;br /&gt;
| Melee: {{+|5}}&amp;lt;/br&amp;gt;Shooting: {{+|7}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Space pirate{{br}}(Pirate)&lt;br /&gt;
| Piracy appears everywhere that governments are weak and society spread thin. [PAWN_nameDef] was part of this age-old part of human existence, extorting and smashing peaceful trade ships for profit.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Starship janitor{{br}}(Janitor)&lt;br /&gt;
| While other passengers pass the years between star systems in cryptosleep sarcophagi, [PAWN_nameDef] had to wake up at periodic intervals to perform inspections, check the navigation systems, and to oil the mechanoids.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Tactician{{br}}(Tactician)&lt;br /&gt;
| [PAWN_nameDef] joined the space navy in an unstable system, fraught with large-scale interplanetary wars. [PAWN_pronoun] turned out to have a sharp mind for battle, and became adept at commanding large armies to great effect.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Taster{{br}}(Taster)&lt;br /&gt;
| As the taster for a medieval king, any dish served at the royal table had to be sampled first by [PAWN_nameDef]. [PAWN_pronoun] lived a decadent lifestyle at court, getting fat and doing very little work.&lt;br /&gt;
| Cooking: {{+|7}}&amp;lt;/br&amp;gt;Construction: {{--|4}}&amp;lt;/br&amp;gt;Crafting: {{--|4}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Taxonomist{{br}}(Taxonomist)&lt;br /&gt;
| [PAWN_nameDef] travelled between star systems, studying and classifying the plant and animal life [PAWN_pronoun] found in the hopes of creating a complete catalogue.&lt;br /&gt;
| Animals: {{+|5}}&amp;lt;/br&amp;gt;Plants: {{+|5}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Teacher{{br}}(Teacher)&lt;br /&gt;
| [PAWN_nameDef] was educated in the liberal arts and taught at a public school. [PAWN_pronoun] was widely knowledgeable and well-liked by [PAWN_possessive] students.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Torturer{{br}}(Torturer)&lt;br /&gt;
| Working for a tyrannical monarch on a medieval world, [PAWN_nameDef] earned a reputation as an expert in 'persuasion.' Any prisoner who went down into the dungeons left with no secrets - and with [PAWN_nameDef]'s smile scarred permanently into their nightmares.&lt;br /&gt;
| Melee: {{+|6}}&lt;br /&gt;
| Social{{br}}Caring{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Urbworld entrepreneur{{br}}(Entrepreneur)&lt;br /&gt;
| In the urbworlds, most suffer. But someone has to run the corporations.{{br}}[PAWN_nameDef] learned the skills of the trade - greasing palms and technical analysis. [PAWN_pronoun] is a sociointellectual machine.&lt;br /&gt;
| Social: {{+|6}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Veterinarian{{br}}(Vet)&lt;br /&gt;
| [PAWN_nameDef] treated sick and injured animals for a living. Seeing their suffering affected [PAWN_possessive] stance on the practice of eating meat, and for many years [PAWN_pronoun] lived as a vegetarian, rejecting the meat-loving culinary tradition of [PAWN_possessive] homeworld.&lt;br /&gt;
| Animals: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{--|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! VR designer{{br}}(Game dev)&lt;br /&gt;
| [PAWN_nameDef] designed virtual reality simulations for glitterworld citizens. [PAWN_pronoun] paid great attention to the details of [PAWN_possessive] worlds, including learning all [PAWN_pronoun] could about plant life to make [PAWN_possessive] landscapes more realistic.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Plants: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|5}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Warrior{{br}}(Warrior)&lt;br /&gt;
| [PAWN_nameDef] was a fearsome warrior, proficient with many weapons. [PAWN_pronoun] participated in many battles.&lt;br /&gt;
| Melee: {{+|6}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Weaver{{br}}(Weaver)&lt;br /&gt;
| [PAWN_nameDef] was an expert at working muffalo wool, plant fibres and natural dyes into beautiful clothing for [PAWN_possessive] kin. [PAWN_possessive] beautiful handicrafts were traded frequently between local tribes.&lt;br /&gt;
| Crafting: {{+|5}}&amp;lt;/br&amp;gt;Plants: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=List_of_childhood_backstories&amp;diff=63402</id>
		<title>List of childhood backstories</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=List_of_childhood_backstories&amp;diff=63402"/>
		<updated>2019-05-08T12:43:17Z</updated>

		<summary type="html">&lt;p&gt;Mehni: The definitive list of backstories, sourced from build 2231. Script made. This is as they appear in the game.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;amp;larr; &amp;lt;small&amp;gt;[[Backstories]]&amp;lt;/small&amp;gt;{{br}}&lt;br /&gt;
Note: these do not include the player-created backstories. Those can be found here:&lt;br /&gt;
* [[List of player created childhood backstories A through M]]&lt;br /&gt;
* [[List of player created childhood backstories N through Z]]&lt;br /&gt;
because the wiki can't display a page that large.&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| {{STDT| sortable c_17}}&lt;br /&gt;
!Title &amp;lt;br/&amp;gt; (Short Title) !!Description !!Skill Modifications !!Incapable of !!Civil !!Raider !!Slave !!Trader !!Traveler !!Tribal&lt;br /&gt;
|-&lt;br /&gt;
! Abandoned child{{br}}(Abandoned)&lt;br /&gt;
| [PAWN_nameDef] was born sickly. Thinking that [PAWN_pronoun] would only burden the tribe, [PAWN_possessive] parents left [PAWN_objective] out in the elements. Somehow, [PAWN_pronoun] survived.&lt;br /&gt;
| Melee: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Apocalypse survivor{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef] was born during a time of unrest on [PAWN_possessive] homeworld, as climate change threatened mass starvation and flooding. As [PAWN_pronoun] grew up the situation worsened - billions died and peaceful states descended into anarchy. [PAWN_nameDef] and [PAWN_possessive] parents did whatever they had to to survive.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cave child{{br}}(Cave child)&lt;br /&gt;
| [PAWN_nameDef] grew up in a large and intricate cave complex that extended deep into a mountainside. [PAWN_pronoun] helped the adults maintain and improve the deep caves.&lt;br /&gt;
| Mining: {{+|3}}&amp;lt;/br&amp;gt;Construction: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Caveworld tender{{br}}(Cave kid)&lt;br /&gt;
| [PAWN_nameDef] grew up in cave complex deep beneath the surface of an inhospitable world. [PAWN_pronoun] worked with the other children tending the tribe’s fungus crops.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caveworld tunneler{{br}}(Tunneler)&lt;br /&gt;
| [PAWN_nameDef] worked as a digger in the massive underground cave complex.{{br}}[PAWN_pronoun] knows rock so well that [PAWN_pronoun] can almost navigate caves by smell.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Mining: {{+|6}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&lt;br /&gt;
| Intellectual{{br}}Crafting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child spy{{br}}(Spy)&lt;br /&gt;
| Children are often presumed innocent, and can be ideal as spies. [PAWN_nameDef] was trained in the art of infiltration and information-gathering when [PAWN_pronoun] was just nine years old.{{br}}[PAWN_possessive] years behind enemy lines and the war-torn nature of [PAWN_possessive] homeworld meant [PAWN_pronoun] had limited opportunity for education.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Intellectual: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child star{{br}}(Star)&lt;br /&gt;
| [PAWN_nameDef] was well-known throughout [PAWN_possessive] homeworld as a child actor in films and TV shows. [PAWN_possessive] fame put [PAWN_objective] in contact with many different kinds of people, but also tended to get in the way of [PAWN_possessive] education.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Coma child{{br}}(Coma child)&lt;br /&gt;
| A childhood accident put [PAWN_nameDef] into a coma. [PAWN_pronoun] didn’t wake up until [PAWN_pronoun] was in [PAWN_possessive] late teens. [PAWN_possessive] body never recovered from the years of inactivity, but people tend to take pity on [PAWN_objective] when they hear [PAWN_possessive] story.&lt;br /&gt;
| Social: {{+|4}}&amp;lt;/br&amp;gt;Construction: {{--|2}}&amp;lt;/br&amp;gt;Mining: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Convent child{{br}}(Illicit)&lt;br /&gt;
| The child of an illicit affair, [PAWN_nameDef] was bought up by nuns in a medieval convent. [PAWN_pronoun] learned the value of hard work and submission, but was taught that technology is heretical.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&lt;br /&gt;
| Intellectual{{br}}Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cult child{{br}}(Cult kid)&lt;br /&gt;
| [PAWN_nameDef] was born into a powerful cult which shunned advanced technology and believed that all illness could be cured by cleansing the soul through sacred art.{{br}}After [PAWN_possessive] first glimpse of the outside world, [PAWN_pronoun] decided to run away.&lt;br /&gt;
| Medicine: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|5}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Fire keeper{{br}}(Firekeep)&lt;br /&gt;
| [PAWN_nameDef] was responsible for keeping the tribe’s fire going. [PAWN_pronoun] took this responsibility very seriously.&lt;br /&gt;
| Crafting: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Frightened child{{br}}(Scared)&lt;br /&gt;
| [PAWN_nameDef] grew up with a laundry list of phobias and neuroses. [PAWN_pronoun] feared, among other things, doctors and foodborne pathogens.{{br}}As a result, [PAWN_pronoun] learned to cook and care for [PAWN_objective]self, but many of [PAWN_possessive] fears dog [PAWN_objective] in adulthood.&lt;br /&gt;
| Medicine: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Herder{{br}}(Herder)&lt;br /&gt;
| As a child, [PAWN_nameDef] tended the tribe’s muffalo herds, keeping them safe from predators and treating the sick. It was quiet work, but [PAWN_pronoun] enjoyed being away from people.&lt;br /&gt;
| Medicine: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Industrial orphan{{br}}(Orphan)&lt;br /&gt;
| [PAWN_nameDef] never knew [PAWN_possessive] parents. [PAWN_possessive] earliest memories were of drudgery in the mines and workhouses of [PAWN_possessive] industrial world.{{br}}Because of this, [PAWN_pronoun] never received a proper education.&lt;br /&gt;
| Crafting: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medical assistant{{br}}(Medic)&lt;br /&gt;
| [PAWN_nameDef] was born during a catastrophic war in which both sides used napalm extensively. [PAWN_pronoun] grew up helping [PAWN_possessive] parents in an infirmary, treating the cascade of horrific burns from the battlefields. [PAWN_pronoun] was left with a lifelong fear of fire.&lt;br /&gt;
| Medicine: {{+|5}}&lt;br /&gt;
| Firefighting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval lordling{{br}}(Lordling)&lt;br /&gt;
| [PAWN_nameDef] was a minor noble in an old kingdom on a medieval world. [PAWN_pronoun] grew up in a manor made of stone, served by bowing lowerclassmen.{{br}}Such a life teaches no technical skills and instils a lifelong aversion to manual labor - but [PAWN_nameDef] learned early the ways of social manipulation.&lt;br /&gt;
| Social: {{+|4}}&amp;lt;/br&amp;gt;Construction: {{--|1}}&amp;lt;/br&amp;gt;Mining: {{--|1}}&amp;lt;/br&amp;gt;Plants: {{--|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval slave{{br}}(Slave)&lt;br /&gt;
| [PAWN_nameDef] grew up pulling carts and digging holes on a medieval world. Simple manual labor is [PAWN_possessive] oldest companion - along with the master's lash.{{br}}[PAWN_pronoun] didn't learn to read until age nine.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Construction: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Music lover{{br}}(Musician)&lt;br /&gt;
| As a child, [PAWN_nameDef] had a talent for playing musical instruments and singing. [PAWN_pronoun] was given expert training and loved to perform in recitals and concerts, though the lavish praise [PAWN_pronoun] received made [PAWN_objective] a little self-obsessed.&lt;br /&gt;
| Social: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mute{{br}}(Mute)&lt;br /&gt;
| [PAWN_nameDef] was greatly affected by a traumatic event early in [PAWN_possessive] life. For many years [PAWN_pronoun] refused to speak to people, preferring instead to play with [PAWN_possessive] household's numerous pets.&lt;br /&gt;
| Animals: {{+|5}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Organ farm{{br}}(Organ farm)&lt;br /&gt;
| [PAWN_nameDef] was raised in an illegal underground organ farm. [PAWN_possessive] body was used to grow organic implants for wounded mercenaries. Though [PAWN_possessive] upbringing has left [PAWN_objective] haunted, it has also given [PAWN_objective] a unique understanding of human biology.&lt;br /&gt;
| Medicine: {{+|5}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pyromaniac{{br}}(Pyro)&lt;br /&gt;
| From an early age, [PAWN_nameDef] had an unhealthy fascination with fire. [PAWN_pronoun] would set refuse heaps ablaze and become so entranced by the flames [PAWN_pronoun] would absent-mindedly burn [PAWN_objective]self.{{br}}One day while playing with matches, [PAWN_pronoun] carelessly burned down [PAWN_possessive] home.&lt;br /&gt;
| Social: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| Firefighting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Reclusive child{{br}}(Reclusive)&lt;br /&gt;
| [PAWN_nameDef] didn’t learn to speak until [PAWN_pronoun] was nearly 5 years old, and, even then, [PAWN_pronoun] preferred to keep to [PAWN_objective]self. When [PAWN_pronoun] was in [PAWN_possessive] early teens, [PAWN_pronoun] made a habit of wandering off from the village to live in the wilderness for weeks at a time.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Scavenger{{br}}(Scavenger)&lt;br /&gt;
| [PAWN_nameDef] spent [PAWN_possessive] childhood escaping grunt work to go digging through wrecks and ruins for treasures. [PAWN_possessive] natural curiosity got [PAWN_objective] into a lot of trouble, but it also yielded many interesting finds.&lt;br /&gt;
| Mining: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Scout{{br}}(Scout)&lt;br /&gt;
| Born to colonial administrators from a small imperial power, [PAWN_nameDef] was enrolled in a youth program that taught military scouting skills.{{br}}[PAWN_pronoun] learned to survive in the wilderness, to obey, and not to ask questions.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&amp;lt;/br&amp;gt;Construction: {{+|1}}&lt;br /&gt;
| Artistic{{br}}Intellectual{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Shelter child{{br}}(Shelterkid)&lt;br /&gt;
| [PAWN_nameDef] grew up in a shelter deep beneath a toxic world. [PAWN_pronoun] received a comprehensive education, but had no opportunity to do physical labour.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Construction: {{--|2}}&amp;lt;/br&amp;gt;Mining: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Shopkeeper{{br}}(Shopkeep)&lt;br /&gt;
| [PAWN_nameDef]'s mother was often ill, and it fell to [PAWN_objective] to run the store which was their only source of income. [PAWN_pronoun] learned a little about the exotic artifacts which [PAWN_pronoun] sold, and a lot about the art of the deal.&lt;br /&gt;
| Social: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sickly child{{br}}(Patient)&lt;br /&gt;
| As a child, [PAWN_nameDef] suffered from a rare disease. Quarantined in a research hospital, [PAWN_pronoun] had minimal human contact and got little physical exercise. In the sterile hospital environment, however, [PAWN_pronoun] became very familiar with science and medicine.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Construction: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sole survivor{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef]’s entire tribe was wiped out in a raid. Though [PAWN_pronoun] was adopted by another group, [PAWN_pronoun] was emotionally scarred, and preferred to stay near home, cooking and tending crops.&lt;br /&gt;
| Plants: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Story writer{{br}}(Writer)&lt;br /&gt;
| As a child, [PAWN_nameDef] was addicted to reading. [PAWN_pronoun] would spend all day in [PAWN_possessive] local library with [PAWN_possessive] nose in a book. When budget cuts forced the library to close, [PAWN_nameDef] was distraught. [PAWN_pronoun] decided to fill the gap by writing [PAWN_possessive] own stories instead.&lt;br /&gt;
| Artistic: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Test subject{{br}}(Testee)&lt;br /&gt;
| On the most corrupt urbworlds, scientists without a moral compass commit unspeakable atrocities in the name of research. [PAWN_nameDef] was kept alone in a sealed facility from birth and subjected to a variety of behavioural experiments in an attempt to turn [PAWN_objective] into a perfect super-soldier.&lt;br /&gt;
| Shooting: {{+|4}}&lt;br /&gt;
| Social{{br}}Caring{{br}}Firefighting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Tribe child{{br}}(Tribal)&lt;br /&gt;
| [PAWN_nameDef] grew up in the tribe, running around the village, moving with the muffalo herds, learning essential skills from [PAWN_possessive] parents.{{br}}[PAWN_pronoun] never learned to read and never saw a machine that wasn't an ancient ruin.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Urbworld urchin{{br}}(Urchin)&lt;br /&gt;
| The urbworlds - ancient and deep industrial cityscapes bursting with humanity and poison. [PAWN_nameDef] grew up in the dark, unwanted reaches of such a place. [PAWN_pronoun] had to fight for every scrap of food.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Vatgrown soldier{{br}}(Vatgrown)&lt;br /&gt;
| [PAWN_nameDef] wasn't made as a person, but as an instrument of destruction. Grown in a bioweapons facility and taught combat during [PAWN_possessive] accelerated growth, [PAWN_nameDef] still has a proclivity for combat of all kinds and an aversion to human contact.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&lt;br /&gt;
| Social{{br}}Caring{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Vengeful child{{br}}(Vengeful)&lt;br /&gt;
| As a child, [PAWN_nameDef] returned to [PAWN_possessive] village to find that it had been wiped out by bandits. [PAWN_pronoun] swore revenge on the attackers and began a violent rampage across the wilderness.&lt;br /&gt;
| Melee: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! War refugee{{br}}(Refugee)&lt;br /&gt;
| War broke out in [PAWN_nameDef]'s home when [PAWN_pronoun] was a baby. [PAWN_possessive] parents fled with [PAWN_objective], seeking safety wherever they could find it. [PAWN_nameDef]'s earliest memories are of being taught how to defend [PAWN_objective]self.{{br}}The violence and destruction [PAWN_pronoun] witnessed left [PAWN_objective] scarred for life.&lt;br /&gt;
| Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Wreckage explorer{{br}}(Explorer)&lt;br /&gt;
| Two generations before [PAWN_nameDef] was born, an apocalyptic war dragged [PAWN_possessive] home planet into anarchy. [PAWN_nameDef] was tasked with watching [PAWN_possessive] tribe's herds, but often shirked [PAWN_possessive] duties to go exploring the crashed warships scattered around the planet.&lt;br /&gt;
| Animals: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=List_of_player_created_childhood_backstories_N_through_Z&amp;diff=63401</id>
		<title>List of player created childhood backstories N through Z</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=List_of_player_created_childhood_backstories_N_through_Z&amp;diff=63401"/>
		<updated>2019-05-08T12:37:07Z</updated>

		<summary type="html">&lt;p&gt;Mehni: The definitive list of backstories, sourced from build 2231. Script made. This is as they appear in the game.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;amp;larr; &amp;lt;small&amp;gt;[[List of childhood backstories]]&amp;lt;/small&amp;gt;{{br}}&lt;br /&gt;
As there are more backstories than the wiki can display at once, this page is split into multiple parts.{{br}}&lt;br /&gt;
See also [[List of childhood backstories]] and [[List of player created childhood backstories A through M]].{{br}}&lt;br /&gt;
Lack of spawn categories is not a mistake; these backstories won't appear naturally. They are tied to their corresponding [[List of adulthood backstories|adult backstories]].{{br}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| {{STDT| sortable c_17}}&lt;br /&gt;
!Title &amp;lt;br/&amp;gt; (Short Title) !!Description !!Skill Modifications !!Incapable of !!Civil !!Raider !!Slave !!Trader !!Traveler !!Tribal&lt;br /&gt;
|-&lt;br /&gt;
! Naturalist{{br}}(Naturalist)&lt;br /&gt;
| Mitch grew up on a backwater planet with minimal education. He had to hunt and grow food to survive.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] family's home was frequently raided for food by scavengers. This made Mitch very suspicious and slow to trust anyone he doesn't know.&lt;br /&gt;
| Plants: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Navy pathfinder{{br}}(Pathfinder)&lt;br /&gt;
| [PAWN_nameDef] was raised and trained by a group of military explorers dedicated to charting pathways through deep space and on remote planets.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Nerd{{br}}(Nerd)&lt;br /&gt;
| [PAWN_nameDef] was curious about everything. While other kids played tag in the suburbs of their industrial city, [PAWN_nameDef] read every book he could find about technology, robots, and weapons - whatever looked coolest.&lt;br /&gt;
&lt;br /&gt;
His strong French accent kept him from making real friends.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! New age duelist{{br}}(Duelist)&lt;br /&gt;
| [PAWN_nameDef] was fascinated with combat. [PAWN_possessive] parents traveled often, so [PAWN_pronoun] was able to sample many different fighting styles, from 76th-wave jujutsu to the infamous 'urbworld-style' karate.&lt;br /&gt;
&lt;br /&gt;
A polite child, most fighters accepted [PAWN_possessive] requests for training - but moving around often without finishing a tutelage made [PAWN_objective] lazy.&lt;br /&gt;
| Shooting: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Animals: {{--|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Noble ward{{br}}(Ward)&lt;br /&gt;
| [PAWN_nameDef] was adopted by a prominent noble family after being left on their doorstep by [PAWN_possessive] mother.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] quickly learned secrets that passed between the nobles like cheap wine - of worlds beyond her own, languages, cultures and technologies both new and old.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{--|1}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| ManualDumb{{br}}Firefighting{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Officer cadet{{br}}(Cadet)&lt;br /&gt;
| From a young age, Bashkire trained to be a leader of men. He enrolled in the Vanu Defense College when he was a boy and became proficient with a range of weapons and survival techniques.&lt;br /&gt;
| Plants: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|1}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Offworld recruit{{br}}(Recruit)&lt;br /&gt;
| [PAWN_nameDef] was born an raised in an offworld soldier growth facility. From a very young age, [PAWN_pronoun] was taught close-quarters combat tactics, aggression, and how to survive on distant planets.&lt;br /&gt;
&lt;br /&gt;
One of the best, [PAWN_nameDef] was eventually chose to enter the orbital-deployment shock troop corps.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Optimistic child{{br}}(Optimistic)&lt;br /&gt;
| Kees was blessed with loving parents and a pleasant midworld life. He was an  optimistic and sociable kid who loved making friends and listening to their stories. His imagination would run wild with ideas and questions.&lt;br /&gt;
| Social: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Orphan of war{{br}}(Orphan)&lt;br /&gt;
| [PAWN_nameDef] lost his family and home early in life. His life became emotionally hollow, but his painful memories drove him to survive.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] took several jobs, but never achieved more than a basic education.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|3}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Orphan{{br}}(Orphan)&lt;br /&gt;
| Born in a brothel on a harsh world, [PAWN_nameDef] never really had a childhood. [PAWN_pronoun] did odd jobs to survive, and became distant from others.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Social{{br}}Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Orphan{{br}}(Orphan)&lt;br /&gt;
| Born on a deep space station, [PAWN_nameDef] was orphaned at a young age. In the orphanage, he stood up for the weaker kids and fought off the bullies.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Crafting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Orphan{{br}}(Orphan)&lt;br /&gt;
| Left alone in the world without parents, Kevin did the best he could to adapt.&lt;br /&gt;
&lt;br /&gt;
Having to take care both of himself and younger kids at the orphanage, he learned a lot about humans and how to interact with them.&lt;br /&gt;
| Social: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pampered{{br}}(Pampered)&lt;br /&gt;
| Born on a decadent glitterworld, [PAWN_nameDef] was given every expensive toy.&lt;br /&gt;
&lt;br /&gt;
This pampered lifestyle caused [PAWN_objective] to miss many basic life lessons. [PAWN_pronoun] developed a special aversion to cooking, and always ordered the staff to do the kitchen work.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{--|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pet keeper{{br}}(Pet keeper)&lt;br /&gt;
| [PAWN_nameDef] spent most of [PAWN_possessive] childhood tending the animals [PAWN_pronoun] had bought or rescued.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] saw beauty in natural things more than fabricated objects, and chose the company of [PAWN_possessive] animals over that of [PAWN_possessive] peers.&lt;br /&gt;
| Medicine: {{+|1}}&amp;lt;/br&amp;gt;Animals: {{+|6}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Philosopher{{br}}(Thinker)&lt;br /&gt;
| [PAWN_nameDef] was a student on a glitterworld. [PAWN_pronoun] had a hard time in school, since the other kids thought [PAWN_objective] rather strange.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] always maintained a distance from these events, being continuously surprised by the many interesting and awkward ways life can go.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pickpocket{{br}}(Pickpocket)&lt;br /&gt;
| Orphaned and abandoned on the tumultuous streets of his polluted, teeming homeworld, [PAWN_nameDef] survived by deft hand and fleet foot. A natural born thief and trickster, [PAWN_pronoun] rose to prominence early, running the notorious and violent urchin gang 'Doomben Rats'.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pickpocket{{br}}(Thief)&lt;br /&gt;
| [PAWN_nameDef] witnessed [PAWN_possessive] parents' murder at a young age. With no guidance, [PAWN_pronoun] had to fend for [PAWN_objective]self any way possible. Joining a small group of misfits [PAWN_pronoun] did whatever was necessary to survive.&lt;br /&gt;
| Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|1}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pilot fan{{br}}(Pilot fan)&lt;br /&gt;
| [PAWN_nameDef]'s father was a starfighter pilot, and [PAWN_pronoun] always idolized the old man.&lt;br /&gt;
&lt;br /&gt;
From a young age, [PAWN_pronoun] collected pilot memorabilia and studied pilot books, preparing to join the deep space navy and follow in [PAWN_possessive] father's footsteps.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pit gladiator{{br}}(Gladiator)&lt;br /&gt;
| [PAWN_nameDef] was enslaved as a child and forced to fight creatures and other people in an underground fighting arena.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] showed an affinity for the sport, and eventually bought his own freedom. However, his time in the pits never brought him much intellectual stimulation.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pizza lover{{br}}(Pizza kid)&lt;br /&gt;
| [PAWN_nameDef] loved boomrat pizza intensely. Rarely eating anything else, he was prone to bad health and low oxygen uptake.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] loved bashing in the skulls of random creatures to see what was inside.&lt;br /&gt;
| Melee: {{+|5}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Plague child{{br}}(Child)&lt;br /&gt;
| Born on a world wracked by plague, both of [PAWN_nameDef]'s parents were doctors. &lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] was raised in reverse-quarantine, under the Hippocratic oath. [PAWN_pronoun] experienced little social interaction. However, [PAWN_pronoun] gained a lot of medical experience assisting in treatments.&lt;br /&gt;
| Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|5}}&lt;br /&gt;
| Violent{{br}}Animals{{br}}Artistic{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Plague prodigy{{br}}(Prodigy)&lt;br /&gt;
| [PAWN_nameDef]'s childhood was cut short when a mysterious plague hit his homeworld.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] watched his friends die, and his compassion for humanity died with them. In its place a new thirst for knowledge emerged.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Plague survivor{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef] watched as a mysterious plague spread through [PAWN_possessive] town, killing [PAWN_possessive] family and friends.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned some medicine from watching the plague doctors, but was mentally scarred by the ordeal.&lt;br /&gt;
| Social: {{--|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Poor kid{{br}}(Poor kid)&lt;br /&gt;
| Abandoned by his parents, [PAWN_nameDef] learned how to survive by himself before he was ten years old.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|1}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Power-mad scholar{{br}}(Scholar)&lt;br /&gt;
| &amp;quot;Knowledge is power.&amp;quot; These words sparked something within [PAWN_nameDef], and came to form his core drive. When not entombed within libraries, [PAWN_pronoun] would take things apart to see first-hand how they worked, with little regard for the border between mechanical and organic.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Privileged child{{br}}(Privileged)&lt;br /&gt;
| Born to an upper-class family, [PAWN_nameDef] grew up with all the best things - the best education, the best social contacts, and of course the best technology money could buy.&lt;br /&gt;
&lt;br /&gt;
Unfortunately, living in such decadence left [PAWN_nameDef] rather spoiled when it came to labor.&lt;br /&gt;
| Social: {{+|3}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Privileged prodigy{{br}}(Prodigy)&lt;br /&gt;
| [PAWN_nameDef] was recognized as gifted early in his glitterworld upbringing. Luckily, [PAWN_possessive] family was in a position to cultivate that genius through advanced education. [PAWN_possessive] training included science, leadership, and the arts.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}Violent{{br}}Hauling{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Prodigal student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] was a faithful student, and was dedicated to learning anything and everything he could about humanity and its creations.&lt;br /&gt;
&lt;br /&gt;
While [PAWN_pronoun] was shunned as a nerd, [PAWN_pronoun] didn't mind. [PAWN_pronoun] hoped for a brighter future.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Professional gamer{{br}}(Pro gamer)&lt;br /&gt;
| [PAWN_nameDef] was obsessed with video games since his hands were big enough to grip a joystick.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] achieved middling finishes in several local tournaments during the 16-bit era. Nobody noticed when he retired early in his teenage years.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Project subject{{br}}(Subject)&lt;br /&gt;
| [PAWN_nameDef] was picked by government agents for the mysterious &amp;quot;Frame Project&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Due to memory blockages, however, he remembers very little about this project or its true agenda - only that there were few survivors.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Psychology student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] researched new religions and traditions and often dreamt of distant stars. &lt;br /&gt;
&lt;br /&gt;
His dreams prompted him to ask what lay beyond the lights in the sky.&lt;br /&gt;
| Social: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Punk{{br}}(Punk)&lt;br /&gt;
| [PAWN_nameDef] spent his childhood selling knockoff cigarettes to 15-year-olds. The cigarettes were often full of grass clippings.&lt;br /&gt;
| Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pyro assistant{{br}}(Assistant)&lt;br /&gt;
| On an industrial world, [PAWN_nameDef] learned early that if [PAWN_pronoun] wanted to eat, [PAWN_pronoun] had to work. So work [PAWN_pronoun] did. Kids fit in places adults can't, and where [PAWN_pronoun] was from, the safety laws were quite flexible.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was always a bit of a pyromaniac, and was banned from the kitchen after an unfortunate incident.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Cooking{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Quiet nerd{{br}}(Nerd)&lt;br /&gt;
| [PAWN_nameDef] was raised by doting parents on a midworld. Instead of playing with other children, [PAWN_pronoun] read books voraciously.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was not particularly rugged, and struggled with physical labor.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Ranger child{{br}}(Ranger kid)&lt;br /&gt;
| [PAWN_nameDef] was raised in a forest. [PAWN_possessive] father taught [PAWN_objective] to hunt and live off the land, so that [PAWN_pronoun] could live without the need of others when father died.&lt;br /&gt;
&lt;br /&gt;
Accustomed to manual labor and with an intuitive mind, [PAWN_nameDef] could survive weeks alone.&lt;br /&gt;
| Mining: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Firefighting{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Rebel child{{br}}(Rebel)&lt;br /&gt;
| [PAWN_nameDef] was born under authoritarian rule. Despite intense oppression from family and community, she never gave up fighting for her dignity and her freedom.&lt;br /&gt;
&lt;br /&gt;
She was often put into hopeless situations where even family would try to terrorize her into propriety. She learned to trust no one.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Rebel slave{{br}}(Rebel)&lt;br /&gt;
| [PAWN_nameDef] was born into corporate slavery and raised to perform menial tasks for minimum pay. [PAWN_pronoun] was just another cog in the machine. &lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] found his freedom by joining a rebel organization whose goal was to break free from their corporate masters.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Plants: {{+|1}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Rebel student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] grew up in a modest but privileged family who encouraged him to play chess and shoot skeet at a young age.&lt;br /&gt;
&lt;br /&gt;
As a bored student, [PAWN_pronoun] found joy in challenging his teachers about the contradictions between his planet's official values and their government's policies.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Rebel writer{{br}}(Writer)&lt;br /&gt;
| Early on, [PAWN_nameDef] developed a talent for writing. [PAWN_pronoun] was soon writing a popular online journal - anonymously, to hide [PAWN_possessive] age - on topics ranging from bioethics to political theory and xenosociology.&lt;br /&gt;
| Intellectual: {{+|7}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Reclusive prodigy{{br}}(Prodigy)&lt;br /&gt;
| Growing up on a flourishing glitterworld afforded Holly the chance to fully devote herself to her studies.&lt;br /&gt;
&lt;br /&gt;
Having taken a keen interest in genetic modification and neural augmentation from a young age, she had little time (or desire) for a regular childhood.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Re-educated youth{{br}}(Reeducated)&lt;br /&gt;
| [PAWN_nameDef] lived on a midworld where the government cared about the youth. &lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was one of the many children who were taken from their parents and forced into the new education programs.&lt;br /&gt;
| Social: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Rich boy{{br}}(Rich boy)&lt;br /&gt;
| [PAWN_nameDef] grew up on a midworld with loving parents, a cute pet and a lot of money - but no friends.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was always told by his father that 'those peasants just want your money'. So, [PAWN_pronoun] spent most of his time alone, or fighting other kids.&lt;br /&gt;
| Melee: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| Caring{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Ritual child{{br}}(Sacrifice)&lt;br /&gt;
| Born with a special mark on [PAWN_possessive] neck, [PAWN_nameDef]'s tribe chose to sacrifice [PAWN_objective] in a blood ritual. They left [PAWN_objective] in the forest to die. A pack of arctic wolves found and adopted [PAWN_objective].&lt;br /&gt;
&lt;br /&gt;
Over time, [PAWN_pronoun] learned to make tools to hunt with the pack.&lt;br /&gt;
| Intellectual: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Scavenger{{br}}(Scavenger)&lt;br /&gt;
| [PAWN_nameDef] grew up in one of the few remaining cities on a world ravaged by nuclear war.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned to survive on [PAWN_possessive] own in this post-apocalyptic wasteland by scavenging for technology and supplies.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Schoolyard outcast{{br}}(Outcast)&lt;br /&gt;
| [PAWN_nameDef] had a modest but proper upbringing. Despite a good family background and plenty of support, [PAWN_pronoun] struggled to make friends and was often bullied. [PAWN_pronoun] learned to work or play alone, and avoided socializing to avoid conflict.&lt;br /&gt;
&lt;br /&gt;
When conflict did arise, [PAWN_nameDef] would retaliate violently.  &lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Science prodigy{{br}}(Prodigy)&lt;br /&gt;
| [PAWN_nameDef] was top of her class in chemistry, physics, exobiology, astronomy and opera.&lt;br /&gt;
&lt;br /&gt;
An unfortunate lab accident left her with a deathly fear of fire.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Violent{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Scout{{br}}(Scout)&lt;br /&gt;
| Nate loved being outdoors. His parents enrolled him in a program that taught military scouting skills. He thrived when he was left alone in the wilderness.&lt;br /&gt;
&lt;br /&gt;
Due to this upbringing, however, [PAWN_nameDef] did not learn the basic technological skills that are taken for granted by many others.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Scrounger{{br}}(Scrounger)&lt;br /&gt;
| [PAWN_nameDef] would dive into junk mounds in search for valuables and items of interest.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was never bothered by the stink, or dangers that could leave [PAWN_objective] wounded for weeks.&lt;br /&gt;
| Mining: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sentimental child{{br}}(Nice kid)&lt;br /&gt;
| [PAWN_nameDef] was a nice child. When anybody had a problem, [PAWN_pronoun] tried to fix it. But, being a child, [PAWN_pronoun] did not always succeed. This hurt his sensitive soul.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] dreamed of being a soldier who fights raiders and aliens.&lt;br /&gt;
| Social: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Ship child{{br}}(Ship child)&lt;br /&gt;
| [PAWN_nameDef]'s family were space traders. One day, [PAWN_nameDef]'s cryptosleep pod failed in transit. [PAWN_pronoun] had to spend years awake on the ship as the other slept.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] filled [PAWN_possessive] days creating beautiful contraptions from the ship's cargo - but [PAWN_pronoun] didn't learn a lot of basic planetary living skills.&lt;br /&gt;
| Melee: {{--|3}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Animals{{br}}Cooking{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Ship technician{{br}}(Technician)&lt;br /&gt;
| [PAWN_nameDef] was an apprentice technician on trade ships plying their routes between the stations and planets of her home system. In this job, she learned to fix and improve many machines.&lt;br /&gt;
&lt;br /&gt;
Sometimes, her ship was assigned to short exploratory jaunts into dangerous regions of space.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Plants: {{--|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Shooting coma{{br}}(Coma child)&lt;br /&gt;
| Nebulys fell into a coma at a young age and spent years dreaming about shooting. When he awoke, he was useless at most tasks - but he could aim pretty well.&lt;br /&gt;
| Shooting: {{+|8}}&lt;br /&gt;
| Intellectual{{br}}ManualDumb{{br}}ManualSkilled{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sickly liar{{br}}(Liar)&lt;br /&gt;
| It is not uncommon for a sickly child to be cast away. What is uncommon is for that child to survive and even thrive with such a weak body.&lt;br /&gt;
&lt;br /&gt;
Using his quick wit and silver tongue, Lynn was able to get out of almost any situation - most of the time at the cost others around him.&lt;br /&gt;
| Construction: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{+|6}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Slave farmer{{br}}(Slave)&lt;br /&gt;
| Abandoned as a little girl, [PAWN_nameDef] was found by a farmer. Being infertile himself, the farmer kept her as a slave. The constant beatings left her scarred and unable to handle violence. After many years, she ran away.&lt;br /&gt;
| Plants: {{+|4}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Small town kid{{br}}(Town kid)&lt;br /&gt;
| [PAWN_nameDef] grew up in an isolated midworld village, surrounded by opticows and countryside.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] parents taught [PAWN_objective] a wide range of useful domestic skills, but a peaceful and secure childhood left [PAWN_objective] with little understanding of the harder parts of life.&lt;br /&gt;
| Construction: {{--|3}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Animals: {{+|3}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Social pariah{{br}}(Pariah)&lt;br /&gt;
| [PAWN_nameDef]'s family never fit in. They were oddballs who couldn't conform to their regimented society. Because of this, they were forced into cryptosleep and sent to different rimworlds, never to see each other again.&lt;br /&gt;
| Crafting: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Soldier experiment{{br}}(Experiment)&lt;br /&gt;
| [PAWN_nameDef] grew up believing [PAWN_pronoun] was a normal, albeit slightly sheltered child.&lt;br /&gt;
&lt;br /&gt;
In truth, [PAWN_pronoun] was part of an elaborate experiment. Researchers were conditioning [PAWN_objective] using social interactions and mechanite injections to try to produce an elite soldier.&lt;br /&gt;
&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sole survivor{{br}}(Survivor)&lt;br /&gt;
| Hawke's entire tribe was wiped out by a mysterious disease.&lt;br /&gt;
&lt;br /&gt;
Found alone and adopted by another band, he never became close with the other tribe members. He preferred to stay away from his new home, wandering the woods and tending the animals.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Son of a huntress{{br}}(Hunter)&lt;br /&gt;
| In the mountains of the planet Ticonderoga, Jon was raised by his tribal mother. She taught him survival skills - trapping, tracking, shooting, skinning, cooking and healing.&lt;br /&gt;
&lt;br /&gt;
His departed father had left behind an old bolt-action rifle, and Jon practiced with it every chance he got.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Space cadet{{br}}(Cadet)&lt;br /&gt;
| Growing up on a rural farm-world leaves little opportunity for excitement and adventure, so when the Royal Fleet began a recruiting program on his home planet, Jake threw down his hoe and cattle prod to took up arms for the crown.&lt;br /&gt;
&lt;br /&gt;
He served on the interplanetary super-destroyer HMS Thunder-Child.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Space fanboy{{br}}(Fanboy)&lt;br /&gt;
| [PAWN_nameDef] dreamed of space travel. He built his own pretend spaceship from an old police box and went to see the great unknown.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Space nerd{{br}}(Space nerd)&lt;br /&gt;
| [PAWN_nameDef] just wanted to be cool like [PAWN_possessive] favorite superhero All-Might. [PAWN_pronoun] dreamed of going on space adventures and exploring new worlds. [PAWN_pronoun] also dreamed of chocolate... space chocolate.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Space smuggler{{br}}(Smuggler)&lt;br /&gt;
| Tater's parents used him to help smuggle contraband between a cluster of rim worlds.&lt;br /&gt;
&lt;br /&gt;
Aided by his small size, Tater became very adept at carrying out his parents' missions, learning weaponry, negotiations, and most of all smuggling.&lt;br /&gt;
| Plants: {{--|2}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Spacer orphan{{br}}(Orphan)&lt;br /&gt;
| Born among stars to a spacefaring family, the [PAWN_nameDef] was the only survivor when [PAWN_possessive] family's ship was destroyed.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was forced to find a way to survive, and seek the joy of knowing another family.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Speeder racer{{br}}(Racer)&lt;br /&gt;
| [PAWN_nameDef] was the son of a fern farmer in the towering forests of Khalderia.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] found [PAWN_possessive] first love in speeder racing, zipping in and out of the massive canopies and gorgeous vistas of his homeworld. The seedy underworld of racing also forced [PAWN_objective] to learn to defend [PAWN_objective]self with a quick word or a quicker shot.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Spoiled brat{{br}}(Brat)&lt;br /&gt;
| Born in a rich family, [PAWN_nameDef] was given everything, and never developed basic work ethic or the foundations of a non-dependent personality.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was expected to become one of the best doctors in the world.&lt;br /&gt;
| Medicine: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}ManualSkilled{{br}}Social{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Spoiled child{{br}}(Spoiled)&lt;br /&gt;
| [PAWN_nameDef] grew up the child of an industrious colony manager. In this position, most manual and dangerous tasks were forbidden by [PAWN_possessive] parents, but on the rim everyone has to dirty their hands.&lt;br /&gt;
| Construction: {{--|2}}&amp;lt;/br&amp;gt;Plants: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{--|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Spoiled child{{br}}(Spoiled)&lt;br /&gt;
| [PAWN_nameDef] was the child of an industrious space engineer. [PAWN_possessive] parents forbade most manual and dangerous tasks, so [PAWN_pronoun] learned art and music instead.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] loved animals, but [PAWN_possessive] parents never let [PAWN_objective] have a pet - though [PAWN_pronoun] played with other people's pets a lot.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|3}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Stableboy{{br}}(Stableboy)&lt;br /&gt;
| [PAWN_nameDef] was a stableboy on a medieval planet, mucking dung almost every day to earn his keep.&lt;br /&gt;
&lt;br /&gt;
By the time [PAWN_pronoun] was exiting childhood, [PAWN_nameDef] had saved up enough money to pay a space trader to take [PAWN_objective] offworld.&lt;br /&gt;
| Mining: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Star squire{{br}}(Squire)&lt;br /&gt;
| Born on a medieval world, [PAWN_nameDef]'s first memory is of gazing up into the night's sky. &lt;br /&gt;
&lt;br /&gt;
Ever since, [PAWN_pronoun] dreamed of squiring for a knight amidst the star-filled heavens. [PAWN_possessive] focus on that vision left [PAWN_objective] somewhat single-minded.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| Animals{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Starforce cadet{{br}}(Cadet)&lt;br /&gt;
| Raised on Amen-Ti, glitterworld capital of the Star Empire, Sam Wissa had an easy childhood.&lt;br /&gt;
&lt;br /&gt;
As a youth, Sam decided that joining the Starforce would be his way of giving back to the Empire.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Station whelp{{br}}(Whelp)&lt;br /&gt;
| [PAWN_nameDef] spent his childhood as a penniless orphan living on a space station. He managed to scrape by doing filthy jobs and stealing. He became so violent due to poor treatment by his “betters” that he was banished from the station, just to be picked up by space pirates.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&lt;br /&gt;
| Caring{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Steamworld tinker{{br}}(Tinker)&lt;br /&gt;
| In the slums of a steamworld, [PAWN_nameDef] developed a fascination with machines and contraptions. [PAWN_pronoun] found [PAWN_pronoun] preferred their company to that of other people.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] remarkable dexterity earned [PAWN_objective] a steady stream of pocket change, and [PAWN_pronoun] spent every penny on spare parts and tools to play with.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Straggler{{br}}(Straggler)&lt;br /&gt;
| Despite being blessed with parental love, [PAWN_nameDef] hardly knew his parents.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was frequently left to his own devices which meant more time devoted to exploring his interests…and getting into trouble.&lt;br /&gt;
| Intellectual: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Street child{{br}}(Street)&lt;br /&gt;
| [PAWN_nameDef]'s drug addict mother died, leaving [PAWN_objective] an orphan at a young age. To stay alive, [PAWN_pronoun] resorted to theft, and when necessary, prostitution. When [PAWN_nameDef] was caught stealing from a church, the priestess saw a wounded but smart child, and took [PAWN_objective] in to give [PAWN_objective] a second chance at life.&lt;br /&gt;
| Social: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Street kid{{br}}(Street kid)&lt;br /&gt;
| Growing up on the streets of the a desert planet, [PAWN_nameDef]'s his only friend was a dog named Rest. The pair scraped by, finding just enough food to survive.&lt;br /&gt;
&lt;br /&gt;
When [PAWN_pronoun] was 13 years old, an interplanetary criminal group took [PAWN_objective] under their wing.&lt;br /&gt;
| Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Street peddler{{br}}(Peddler)&lt;br /&gt;
| Growing up on an industrial midworld where robberies and muggings weren't uncommon, [PAWN_nameDef] helped support his family by making small trinkets and novelties to sell to passers-by.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned early on that it wasn't always what [PAWN_pronoun] knew, but who [PAWN_pronoun] knew that would get [PAWN_objective] far in life.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Street urchin{{br}}(Grifter)&lt;br /&gt;
| After running away from home, [PAWN_nameDef] had to live on the streets.&lt;br /&gt;
&lt;br /&gt;
She grew up fast, and learned early that she had to figure out how to fool people into connecting with her.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Street urchin{{br}}(Street rat)&lt;br /&gt;
| Born to a poor family, Vonriel was a sickly child who never quite developed the strength of his siblings.&lt;br /&gt;
&lt;br /&gt;
His parents, unable to afford to provide for him and certain he couldn't pay his own way, threw him to the streets. He learned hard and fast how to survive by any means necessary.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Street urchin{{br}}(Urchin)&lt;br /&gt;
| Born to a poor family on an urbworld, [PAWN_nameDef] was abandoned on the streets at a young age.&lt;br /&gt;
&lt;br /&gt;
He learned to steal and kill to survive the ruthless streets, gaining skills in melee and ranged combat. There was little time for talk in his life.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Student engineer{{br}}(Engineer)&lt;br /&gt;
| A genius child, [PAWN_nameDef] was put in a special training program covering aerospace warfare and engineering.&lt;br /&gt;
&lt;br /&gt;
One day, he tried to befriend a squirrel by giving it a bracelet. The squirrel bit him, earning him the nickname “Squirrel Boy.”&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] came to believe that work involving manual labor is beneath [PAWN_objective].&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{--|2}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Student socialite{{br}}(Socialite)&lt;br /&gt;
| Matis learned politics in an elite training school for socially gifted students on Kalthas IV.&lt;br /&gt;
&lt;br /&gt;
While he was naturally adept at reading and manipulating people, he found no joy in it. He left the academy several years before graduation.&lt;br /&gt;
| Social: {{+|6}}&lt;br /&gt;
| ManualDumb{{br}}ManualSkilled{{br}}Caring{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] studied chemistry and quantum mechanics for entertainment.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was very good at convincing others to do his physical work, and made it a goal in life to avoid manual labor.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{--|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Cleaning{{br}}Hauling{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Super soldier{{br}}(Soldier)&lt;br /&gt;
| [PAWN_nameDef]'s government ran an experimental super-soldier development program. They kidnapped thousands of infants, conditioned their minds with drugs and machines, and trained them to fight.&lt;br /&gt;
&lt;br /&gt;
Most infants died, but [PAWN_nameDef] did not. He killed his first man at age six, and was fighting in field operations not long after.&lt;br /&gt;
| Plants: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Social{{br}}Animals{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Tech enthusiast{{br}}(Tech nerd)&lt;br /&gt;
| Michael had all the latest gadgets as a child. He spent all his time playing games with AIs instead of with other children. He always felt awkward around new people.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|3}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Tech scholar{{br}}(Scholar)&lt;br /&gt;
| [PAWN_nameDef] was a youth scholar of the world of science and technology.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] strived every day to expand his intellectual abilities.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Tech-head{{br}}(Tech-head)&lt;br /&gt;
| Standing on the ship hull with his father in an child-size EVA suit, [PAWN_nameDef] loved space from a young age.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was put in a Civil Academics Program. While pretending to be like [PAWN_possessive] father, [PAWN_pronoun] spent [PAWN_possessive] time taking care of plants in [PAWN_possessive] messy room. [PAWN_possessive] nickname was given for [PAWN_possessive] love of circles. &lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Social: {{--|1}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Technical kid{{br}}(Tech kid)&lt;br /&gt;
| [PAWN_nameDef] loved nothing more then to forget the world around [PAWN_objective] and focus on the task at hand.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Test subject{{br}}(Subject)&lt;br /&gt;
| Test subject #11,529,914 of experiment #56,048 spent her childhood in white rooms performing mental and physical tests.&lt;br /&gt;
&lt;br /&gt;
Her only companion was a voice that called itself Mother. Mother rewarded success with praise - and failure with harsh punishment.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|1}}&lt;br /&gt;
| Social{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Tinkerer{{br}}(Tinkerer)&lt;br /&gt;
| [PAWN_nameDef] grew up on a scrap-heap of a planet - the garbage dump of other planets in the system. He learned to make new machines from the dead parts of old ones. With some friends, he eventually escaped on a salvaged and repaired ship.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Tinkerer{{br}}(Tinkerer)&lt;br /&gt;
| [PAWN_nameDef] spent [PAWN_possessive] spare time creating things from his imagination out of scrap metal and discarded machinery.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] created simple robots and small tools, for both for fun and for utility.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Toxic child{{br}}(Toxic)&lt;br /&gt;
| Growing up on a an Industrial planet, [PAWN_nameDef] started working in a chemical plant at age of six. Years of exposure to industrial toxins left him mentally scarred.&lt;br /&gt;
&lt;br /&gt;
He eventually blew up the facility and escaped the planet in a stolen cargo ship.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Firefighting{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Traders' child{{br}}(Trader)&lt;br /&gt;
| [PAWN_nameDef] grew up in a family of nomadic traders, making a living from selling and buying goods on many worlds.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] learned the customs and methods of trade of many cultures by participating in his parents' business.&lt;br /&gt;
| Construction: {{--|2}}&amp;lt;/br&amp;gt;Plants: {{--|1}}&amp;lt;/br&amp;gt;Social: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Tragic loner{{br}}(Loner)&lt;br /&gt;
| [PAWN_nameDef] was involved in a traumatic accident that resulted in [PAWN_objective] killing [PAWN_possessive] own family.&lt;br /&gt;
&lt;br /&gt;
Cast out from society, [PAWN_pronoun] was left with only [PAWN_possessive] animal companions and several engineering textbooks to keep [PAWN_objective] company. &lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&amp;lt;/br&amp;gt;Animals: {{+|2}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Trainee alchemist{{br}}(Alchemist)&lt;br /&gt;
| [PAWN_nameDef] grew up on a medieval world. He learned the basics of alchemy and medicine in one the few monastic schools on his planet.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Transfer student{{br}}(Student)&lt;br /&gt;
| A midworld child, [PAWN_nameDef]'s wealthy parents sent [PAWN_objective] to a nearby glitterworld to receive a better education.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] was a talented student. However, due to his family's wealth, [PAWN_pronoun] never had to do dumb labor.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Traumatized youth{{br}}(Trauma)&lt;br /&gt;
| [PAWN_nameDef] lived on a pleasant midworld.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] prosthophobe mother fell sick with heart disease. In desperation, [PAWN_nameDef]'s father abducted innocent people and harvested their hearts. [PAWN_nameDef]'s father was arrested, but the child remained scarred from the experience.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Tribal thunderer{{br}}(Thunderer)&lt;br /&gt;
| Years ago, [PAWN_nameDef]'s tribe stumbled upon an abandoned gun vault. Believing the weapons to be sacred gifts, the shaman would select a child born under superstitious circumstances and assign them the honour of bearing one to defend the village. [PAWN_nameDef] is such a child.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Artistic{{br}}Crafting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Turtle herder{{br}}(Herder)&lt;br /&gt;
| Born to settler folk, [PAWN_nameDef]'s family' had a beloved herd of turtles, who protected them by absorbing shots from raiders.&lt;br /&gt;
&lt;br /&gt;
At a young age, [PAWN_pronoun] was entrusted with the turtles. [PAWN_pronoun] bred them, successfully - too successfully. The massive turtle herds consumed every food source and destroyed the local ecosystem.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|1}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&amp;lt;/br&amp;gt;Animals: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Upper urbworlder{{br}}(High urber)&lt;br /&gt;
| [PAWN_nameDef] had a privileged childhood on a major urbworld. Living in an apartment far above the dense poverty of the city, [PAWN_pronoun] spent most of [PAWN_possessive] time reading or drawing the cityscape he saw through [PAWN_possessive] window.&lt;br /&gt;
| Construction: {{--|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Urbworld army brat{{br}}(Army brat)&lt;br /&gt;
| [PAWN_nameDef] grew up on an urbworld military base. [PAWN_pronoun] was too young to fight, but [PAWN_pronoun] learned to make [PAWN_objective]self useful in other ways.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] became familiar with guns and military equipment, but never really got in touch with the natural world.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Plants: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Urbworld criminal{{br}}(Criminal)&lt;br /&gt;
| Born into bad circumstance on an overpopulated urbworld, Vladimir turned to small-time crime as a way to avoid starvation and hypothermia.&lt;br /&gt;
&lt;br /&gt;
Robbery and murder were daily activities for him. Vladimir learned that surviving was winning.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Urbworld hooligan{{br}}(Hooligan)&lt;br /&gt;
| [PAWN_nameDef] grew up in a dangerous urbworld. He quickly learned how to get his daily meal - by crime. Such means left little to no space for cooking and growing activities.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{--|3}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Urbworld urchin{{br}}(Urchin)&lt;br /&gt;
| Abandoned among the filthy concrete spires, [PAWN_nameDef] never knew [PAWN_possessive] parents. [PAWN_pronoun] never received formal education, and often resorted to doing menial labor in exchange for food. Sometimes [PAWN_pronoun] lied, cheated, and stole to survive.&lt;br /&gt;
| Mining: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| Artistic{{br}}Crafting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Urbworld urchin{{br}}(Urchin)&lt;br /&gt;
| Meredith was born in the darkest slums of her urban homeworld. Neglected by her mother, she learned to survive on her own, battling for every scrap of food she saw.&lt;br /&gt;
&lt;br /&gt;
Eventually, as her talents exceeded her peers, she ascended from the depths to the surface streets and left her mother behind.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Vatgrown assassin{{br}}(Clone)&lt;br /&gt;
| Vas was not made as a man, but a cold hearted assassin. He was bio-engineered by scientists, and trained as a killer. He was bred to have no emotion, no feelings, and no care for who lives, and who dies. &lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}Cooking{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Vatgrown medic{{br}}(Medic)&lt;br /&gt;
| Raised to be a combat medic, [PAWN_nameDef] was trained in firearms as well as medicine. His favorite phrase when coming upon a wounded soldier was &amp;quot;Life or death?&amp;quot; Most chose life.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}Crafting{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Vatgrown scientist{{br}}(Scientist)&lt;br /&gt;
| [PAWN_nameDef] was grown to be a perfect scientist, with a mind perfectly tuned for physics and chemistry.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] creators used [PAWN_objective] as a teaching aid on mind design, hoping [PAWN_pronoun] would eventually grow to be a great mind and continue their research.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Vatgrown slavegirl{{br}}(Slave girl)&lt;br /&gt;
| Emmie was vat-grown as a slave in an illegal urbworld laboratory. As a young child, she was taught only to cook, clean and serve her masters. For most of her childhood, she knew nothing else.&lt;br /&gt;
| Cooking: {{+|5}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&lt;br /&gt;
| Intellectual{{br}}Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Video gamer{{br}}(Gamer)&lt;br /&gt;
| [PAWN_nameDef] grew up on a midworld, mostly locked in [PAWN_possessive] room, playing video games. [PAWN_pronoun] was warm-hearted, with a deep fondness for animals.&lt;br /&gt;
&lt;br /&gt;
As [PAWN_pronoun] grew up, [PAWN_pronoun] turned to drugs to enhance his reality. During these trying times [PAWN_pronoun] found passion and refuge in the gym.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Video gamer{{br}}(Gamer)&lt;br /&gt;
| Ryan was raised in a glitterworld. Everything he wanted came to him. In school he was a social butterfly. At home, he spent his time looking up the newest gadgets and playing his favourite video games.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Vidtube star{{br}}(Vidtuber)&lt;br /&gt;
| [PAWN_nameDef]'s hobby was making videos for the popular video sharing service Vidtube. [PAWN_pronoun] made everything from video game reviews to pasta cooking guides.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] gained a over a million followers.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Voyager child{{br}}(Voyager)&lt;br /&gt;
| [PAWN_nameDef] was raised on an R&amp;amp;D starship, and spent most of [PAWN_possessive] childhood travelling through the void.&lt;br /&gt;
&lt;br /&gt;
Approaching a mysterious planetoid, the ship was severely damaged. [PAWN_possessive] next memory is of the ship heading out of orbit, fully repaired. [PAWN_pronoun] soon developed an unnatural gift for technological research.&lt;br /&gt;
| Intellectual: {{+|4}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! VR addict{{br}}(VR addict)&lt;br /&gt;
| Douglas was a VR head - someone who is permanently jacked into the virtual gaming universe by his spinal plug. He moved through his daily tasks barely aware of the physical reality around him. This left him nearly unable to socialize.&lt;br /&gt;
&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Artistic: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! War child{{br}}(War child)&lt;br /&gt;
| Mushinto's parents were drafted into a civil war in his home country. Growing up surrounded by fighting and death, he became well-accustomed to tragedy and tough as nails. His expressive side, however, never developed.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! War refugee{{br}}(Refugee)&lt;br /&gt;
| A war broke on out [PAWN_nameDef]'s home planet.&lt;br /&gt;
&lt;br /&gt;
Gathering what little food and belongings they could, [PAWN_nameDef] and his father stole a ship and escaped into space.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&amp;lt;/br&amp;gt;Cooking: {{--|3}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Wasteland wanderer{{br}}(Wanderer)&lt;br /&gt;
| Born into a wealthy family on a desert world, [PAWN_nameDef] was cast out after a hired attack squad destroyed his ancestral home.&lt;br /&gt;
&lt;br /&gt;
The boy managed to hide in a cooling duct beneath his family's villa. Vowing revenge against the killers and whomever had hired them, Lucas struck out into the wasteland, alone.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Wealthy student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] was born on a wealthy glitterworld. [PAWN_pronoun] studied at the Caspian school of Engineering, and excelled in mathematics and computer programming.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] grew up in clean, sterile environments. [PAWN_pronoun] never saw a farm or livestock.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{--|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{--|2}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Animals{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Wild child{{br}}(Wild child)&lt;br /&gt;
| [PAWN_nameDef] was abandoned on a toxic world overgrown with hostile plant life. [PAWN_pronoun] became accustomed early to the cold burn of loneliness.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned to fight, but ate his food raw and uncooked.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|6}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Cooking: {{--|3}}&lt;br /&gt;
| Intellectual{{br}}Caring{{br}}Artistic{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Winerunner{{br}}(Winerunner)&lt;br /&gt;
| Abandoned by his parents, [PAWN_nameDef] was raised by the monks of the Novo Mosteiro dos Jerónimos monastery on Aracena VI.&lt;br /&gt;
&lt;br /&gt;
The monks taught him discipline and hard work. In return, [PAWN_pronoun] would go into the city and 'acquire' exotic wines for the monks' nightly tastings.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Wolf pack member{{br}}(Feral)&lt;br /&gt;
| [PAWN_nameDef] was discarded by [PAWN_possessive] family. Raised by wolves, [PAWN_pronoun] ran, hunted, and defended [PAWN_possessive] pack.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned to fight efficiently by tooth and claw. [PAWN_pronoun] also learned brutally effective primal hunting strategies.&lt;br /&gt;
| Melee: {{+|8}}&amp;lt;/br&amp;gt;Social: {{--|3}}&lt;br /&gt;
| Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Work camp slave{{br}}(Slave)&lt;br /&gt;
| [PAWN_nameDef] grew up as a slave to a particularly nasty noble family on a medieval world. &lt;br /&gt;
&lt;br /&gt;
While he received no formal education, the harsh labor regimen made his body strong.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! World slider{{br}}(Slider)&lt;br /&gt;
| [PAWN_nameDef] was raised by a world-hopping band of criminals. [PAWN_pronoun] learned not to leave evidence of his presence in case the group had to leave in a hurry. [PAWN_pronoun] also learned about medicine and hand-to-hand combat from his fellow criminals.&lt;br /&gt;
| Construction: {{--|2}}&amp;lt;/br&amp;gt;Plants: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Young master{{br}}(Master)&lt;br /&gt;
| Born to two medics, [PAWN_nameDef] longed for power. [PAWN_possessive] keen intellect and charisma helped [PAWN_objective] gain the respect of [PAWN_possessive] peers.&lt;br /&gt;
&lt;br /&gt;
Deciding that the best way to gain power was to climb the ranks of the imperial military, [PAWN_pronoun] joined at the youngest possible age.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Young pirate{{br}}(Pirate)&lt;br /&gt;
| [PAWN_nameDef] was born to pirates, in a dirty metal room that smelled of motor oil.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was never exactly taught anything, but [PAWN_pronoun] still learned the ways of survival, barter, and combat.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Young psychologist{{br}}(Psych)&lt;br /&gt;
| [PAWN_nameDef] was born and raised on a poor midworld, in the front passenger seat of [PAWN_possessive] mother's cab.&lt;br /&gt;
&lt;br /&gt;
Watching pedestrians and listening to the taxi passengers all day long, [PAWN_pronoun] soon became very good at figuring out someone's real purpose.&lt;br /&gt;
| Social: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Youth delinquent{{br}}(Delinquent)&lt;br /&gt;
| [PAWN_nameDef] was the only child of celebrity sommeliers. Her parents expected her to take up the family profession, but after her third admission to a youth detention center, this career path became unlikely.&lt;br /&gt;
&lt;br /&gt;
While in detention, [PAWN_nameDef] became skilled at making shanks and developed an interest in orinthology.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Social: {{--|1}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Youth soldier{{br}}(Soldier)&lt;br /&gt;
| [PAWN_nameDef] was born into a long line of soldiers. He followed that heritage, joining a military training program.&lt;br /&gt;
&lt;br /&gt;
He excelled in all physical training programs in his Marine course, and even passed most of the intellectual exams. While he was never particularly bright or nimble, [PAWN_nameDef] learned the value of hard work and suffering.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| Hauling{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Youth soldier{{br}}(Soldier)&lt;br /&gt;
| Born to a long line of soldiers, [PAWN_nameDef] joined a military training program.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] excelled in physical training, and even passed most of the intellectual exams. While [PAWN_pronoun] was never particularly bright or nimble, [PAWN_nameDef] learned the value of hard work and suffering.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=List_of_player_created_childhood_backstories_A_through_M&amp;diff=63400</id>
		<title>List of player created childhood backstories A through M</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=List_of_player_created_childhood_backstories_A_through_M&amp;diff=63400"/>
		<updated>2019-05-08T12:34:42Z</updated>

		<summary type="html">&lt;p&gt;Mehni: The definitive list of backstories, sourced from build 2231. Script made. This is as they appear in the game.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;amp;larr; &amp;lt;small&amp;gt;[[List of childhood backstories]]&amp;lt;/small&amp;gt;{{br}}&lt;br /&gt;
As there are more backstories than the wiki can display at once, this page is split into multiple parts.{{br}}&lt;br /&gt;
See also [[List of childhood backstories]] and [[List of player created childhood backstories N through Z]].{{br}}&lt;br /&gt;
Lack of spawn categories is not a mistake; these backstories won't appear naturally. They are tied to their corresponding [[List of adulthood backstories|adult backstory]].{{br}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| {{STDT| sortable c_17}}&lt;br /&gt;
!Title &amp;lt;br/&amp;gt; (Short Title) !!Description !!Skill Modifications !!Incapable of !!Civil !!Raider !!Slave !!Trader !!Traveler !!Tribal&lt;br /&gt;
|-&lt;br /&gt;
! Abandoned child{{br}}(Abandoned)&lt;br /&gt;
| [PAWN_nameDef] was a quick witted, funny child. One day, [PAWN_pronoun] wandered off on [PAWN_possessive] wealthy genetic parents, and was ultimately lost in a supposedly unused ore warehouse. Due to cloning technology, [PAWN_possessive] parents decided that the time looking for [PAWN_objective] was better spent on just cloning a better son.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|1}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Abandoned orphan{{br}}(Orphan)&lt;br /&gt;
| Abandoned at birth, young [PAWN_nameDef] started [PAWN_possessive] life in an orphanage.&lt;br /&gt;
&lt;br /&gt;
A rascal and a scoundrel, [PAWN_pronoun] became a clever troublemaker.&lt;br /&gt;
| Plants: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Abductee{{br}}(Abductee)&lt;br /&gt;
| [PAWN_nameDef] was abducted at a young age and forced to do menial labor on a pirate ship.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Abductee{{br}}(Abductee)&lt;br /&gt;
| [PAWN_nameDef] was abducted by xenohumans when [PAWN_pronoun] was still a baby. They experimented on [PAWN_objective] to understand his genetic structure.&lt;br /&gt;
&lt;br /&gt;
As [PAWN_pronoun] grew up, [PAWN_nameDef] grew a little bit too big and strong for his captors and eventually escaped.&lt;br /&gt;
&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Academy student {{br}}(Student )&lt;br /&gt;
| [PAWN_nameDef] went to school like a good space cadet would. He was very tall and was known for his good looks.&lt;br /&gt;
&lt;br /&gt;
Though he worried more about his hairstyle than his grades, he still somehow passed the final exams.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Accursed child{{br}}(Cursed)&lt;br /&gt;
| [PAWN_nameDef] was born at the peak of a lunar eclipse. The elders declared [PAWN_objective] a child of darkness brought [PAWN_objective] under their care.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] entire childhood was spent studying the lore and rituals of [PAWN_possessive] people - until the day of calling.&lt;br /&gt;
| Construction: {{--|1}}&amp;lt;/br&amp;gt;Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| Firefighting{{br}}Cleaning{{br}}Hauling{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Adventuring child{{br}}(Adventurer)&lt;br /&gt;
| Axle was raised to become an engineer. For years, he planned to stow away on a cargo ship and start a new, more adventuresome life.&lt;br /&gt;
&lt;br /&gt;
One night, after his parents fell asleep, he managed to sneak on board a cargo ship just before it left port.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Adventurous youth{{br}}(Adventurer)&lt;br /&gt;
| [PAWN_nameDef] explored all around [PAWN_possessive] family's large estate, uncovering little natural wonders hidden in nearby catacombs, rivers, and caves.&lt;br /&gt;
&lt;br /&gt;
During his teenage years, [PAWN_nameDef] made numerous enemies&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Amateur astronomer{{br}}(Astronomer)&lt;br /&gt;
| [PAWN_nameDef] was fascinated with astronomy. [PAWN_pronoun] would spend hours gazing at planets and nebulae through his telescope.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] is credited with discovering a small comet that would, years later, strike a nearby moon and disrupt the mining operations there.&lt;br /&gt;
| Intellectual: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Amateur botanist{{br}}(Botanist)&lt;br /&gt;
| Spending many summers crawling through dirt, Christian found he had quite the green thumb. Instead of learning to cook the food he grew, he just grew more and more.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Amateur engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] grew up in a family with a military and engineering background. [PAWN_pronoun] wanted to join the army but his father didn't like the idea, so [PAWN_possessive] interest turned to great flying machines and works of engineering. [PAWN_pronoun] secretly hoped that this would one day lead him to a life of galactic exploration.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|1}}&lt;br /&gt;
| Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Angry student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] trained towards [PAWN_possessive] dream of working for his hometown's local council.&lt;br /&gt;
&lt;br /&gt;
For reasons he never quite understood, [PAWN_pronoun] was bullied relentlessly by his classmates. [PAWN_pronoun] chose to repress his rage.&lt;br /&gt;
| Intellectual: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Animal caretaker{{br}}(Caretaker)&lt;br /&gt;
| Born on a medieval farm, [PAWN_nameDef] was tasked with caring for domestic animals. [PAWN_pronoun] grew to love them.&lt;br /&gt;
&lt;br /&gt;
With time, [PAWN_pronoun] learned to tame wild animals. [PAWN_pronoun] dreamed of one day meeting a thrumbo and taming it.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Animal lab tech{{br}}(Lab tech)&lt;br /&gt;
| [PAWN_nameDef] worked as a technician in a lab studying animals.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] spent [PAWN_possessive] days taking care of the animals and cleaning up after them. [PAWN_pronoun] dreamed of having [PAWN_possessive] own lab one day.&lt;br /&gt;
| Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|3}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Antisocial child{{br}}(Antisocial)&lt;br /&gt;
| [PAWN_nameDef] lacked typical social skills, and avoided social interaction.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] gained satisfaction only from steady work. [PAWN_pronoun] especially disliked speaking with overly creative or outgoing individuals.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Apocalypse child {{br}}(Apocalypse)&lt;br /&gt;
| [PAWN_nameDef] spent his childhood on a post-apocalyptic world. He fought for survival from a young age, on a planet where trust did not exist.&lt;br /&gt;
&lt;br /&gt;
He told everyone that he had no luck.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Apprentice oracle{{br}}(Oracle)&lt;br /&gt;
| [PAWN_nameDef] was chosen at an early age by the village elders to keep the sacred rituals of the Oracle.&lt;br /&gt;
&lt;br /&gt;
An irrepressibly curious child, [PAWN_nameDef] caused a religious crisis for [PAWN_possessive] tribe when [PAWN_pronoun] accidentally flipped a switch to open the &amp;quot;tombs&amp;quot; of the Gods - cryptosleep caskets inhabited by some very confused ancestors.  &lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Apprentice smith{{br}}(Apprentice)&lt;br /&gt;
| [PAWN_nameDef] grew up helping in his father's smithy.&lt;br /&gt;
&lt;br /&gt;
They were some of the last smiths on the planet that to use traditional smithing methods. They even collect some materials themselves.&lt;br /&gt;
&lt;br /&gt;
Sometimes, after work, [PAWN_nameDef] would practice using the swords [PAWN_pronoun] forged.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artful dodger{{br}}(Dodger)&lt;br /&gt;
| Robin grew up on one of the urbworlds and had to fend for himself all his life. He never trusted anyone, relying on his persuasiveness and cunning to survive.&lt;br /&gt;
&lt;br /&gt;
He soon became skilled with firearms and knives as well as words.&lt;br /&gt;
| Shooting: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}Crafting{{br}}Cooking{{br}}Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artisan farmer{{br}}(Farmer)&lt;br /&gt;
| [PAWN_nameDef] grew up on a [PAWN_possessive] family's glitterworld farm. They were one of the last farms on the planet that preferred traditional farming methods to glitterworld technology.&lt;br /&gt;
| Plants: {{+|7}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artistic weirdo{{br}}(Weirdo)&lt;br /&gt;
| [PAWN_nameDef] grew up in a house near a bustling midworld metropolis.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was talented at art and creative work, but often acted strangely, and thus had few friends.&lt;br /&gt;
| Cooking: {{+|1}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aspergers rebel{{br}}(Rebel)&lt;br /&gt;
| [PAWN_nameDef] grew up as a rebel on an formerly-advanced rimworld devastated by war.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] Aspergers syndrome meant he struggled with social situations and was incapable of caring, but [PAWN_pronoun] learned hard skills like research and shooting very quickly.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&lt;br /&gt;
| Caring{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aspiring engineer{{br}}(Tinkerer)&lt;br /&gt;
| [PAWN_nameDef] had a fascination with gadgets and gizmos. [PAWN_pronoun] took apart and put together almost anything [PAWN_pronoun] could find.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] got used to repairing toys brought to [PAWN_objective] by other children, and even fixed a few devices from [PAWN_possessive] elders.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aspiring physicist{{br}}(Student)&lt;br /&gt;
| The daughter of an engineer and doctor, [PAWN_nameDef]'s early life was intellectually rich. After visiting a physics lab, she decided she wanted to be a quantum physicist.&lt;br /&gt;
&lt;br /&gt;
Bitten by a camel, kicked off a horse, and chased by dogs, [PAWN_nameDef] developed a fear of animals.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}Animals{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aspiring pop idol{{br}}(Pop idol)&lt;br /&gt;
| Min was being trained in song and dance to become the next big pop idol. She grew up being taken care of by company handlers.&lt;br /&gt;
&lt;br /&gt;
She never knew manual labor, but learned a lot about music and social etiquette.&lt;br /&gt;
| Shooting: {{--|4}}&amp;lt;/br&amp;gt;Melee: {{--|4}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&lt;br /&gt;
| ManualDumb{{br}}Cleaning{{br}}Hauling{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Athlete{{br}}(Athlete)&lt;br /&gt;
| [PAWN_nameDef] was professional athlete at early age. Thanks to her skills, she was able to leave her homeworld and enroll in a glitterworld university of science and technology.&lt;br /&gt;
&lt;br /&gt;
Because of her demanding schedule and introverted nature, she became socially inept.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Awkward nerd{{br}}(Nerd)&lt;br /&gt;
| Always fascinated by machines, Dave spent his time studying robotics and holography. He preferred the company of his scientific creations to that of other people.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blackjack player{{br}}(Gambler)&lt;br /&gt;
| The only useful skill [PAWN_nameDef] learned from his tough military school was card counting. He amassed many enemies by cheating at casinos, becoming ever more edgy and violent as the threat of retaliation grew.&lt;br /&gt;
&lt;br /&gt;
When he was finally caught, they burned half his skin off. He'll never be able to face fire or violence again.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|4}}&lt;br /&gt;
| Violent{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blacksmith's son{{br}}(Blacksmith)&lt;br /&gt;
| [PAWN_nameDef]'s father owned the blacksmith shop in an run-down old city district. [PAWN_nameDef] would help his father whenever he could.&lt;br /&gt;
&lt;br /&gt;
Later, [PAWN_possessive] father took him as a blacksmith's apprentice and raised him as a man. [PAWN_nameDef] also to on shooting as a hobby.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blessed child{{br}}(Blessed)&lt;br /&gt;
| [PAWN_nameDef] was born under auspicious circumstances to a midworld spiritual group and held in reverence throughout [PAWN_possessive] childhood.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned to take care of the poor and give succor to the faithful from an early age.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bodyguard trainee{{br}}(Bodyguard)&lt;br /&gt;
| [PAWN_nameDef] was born into a famously skilled family of bodyguards. [PAWN_possessive] mothers Elena and Victoria forced [PAWN_objective] into many dangerous situations, training [PAWN_objective] to put [PAWN_possessive] client's well-being over [PAWN_possessive] own.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] was taught about many herbs and natural poisons to help [PAWN_objective] prevent clients from being poisoned.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bone collector{{br}}(Pupil)&lt;br /&gt;
| Born to a family of fortune hunters, [PAWN_nameDef] always had a passion for ancient history.&lt;br /&gt;
&lt;br /&gt;
Though never a tough or social boy, [PAWN_pronoun] loved to dig through history books as well as dirt piles.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{--|3}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bookworm{{br}}(Bookworm)&lt;br /&gt;
| [PAWN_nameDef] spent his youth in the library, reading every book he could about the technical marvels of space travel, the engineering ingenuity of the space-faring pioneers, and the horrible yet fascinating tales of the mechanoid races. He vowed that one day, he would see these things for himself.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Boy scout{{br}}(Scout)&lt;br /&gt;
| [PAWN_nameDef] was in a boy scout troop on a midworld.&lt;br /&gt;
&lt;br /&gt;
He learned many survival skills including how to thrive in the outdoors and how to tend to basic wounds.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Boy soldier{{br}}(Soldier)&lt;br /&gt;
| War may never change - but the cast of characters does.&lt;br /&gt;
&lt;br /&gt;
Born on a violent urbworld, [PAWN_nameDef] was trained from a young age to fight the wars of others, and became rather good at it. &lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Brothel gofer{{br}}(Gofer)&lt;br /&gt;
| Born on a steam-powered midworld wracked by a century of economic crises, [PAWN_nameDef] went to work at a young age. Scrounging, shoe-polishing, sewing - he did it all. But [PAWN_pronoun] was most known as a brothel gofer, delivering all manner of aphrodisiacs and chemicals to the girls' rooms.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Brutal thief{{br}}(Thief)&lt;br /&gt;
| Growing up in a gang, [PAWN_nameDef] learned the brutality of the streets.&lt;br /&gt;
&lt;br /&gt;
Knowing that showing weakness could be fatal, he closed himself of to others.&lt;br /&gt;
| Plants: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bunker kid{{br}}(Bunker kid)&lt;br /&gt;
| Ricardo grew up in an underground shelter, waiting for radioactive fallout to subside. His rich family had gained access to a luxury bunker city, while billions died on the surface.&lt;br /&gt;
&lt;br /&gt;
Determined to one day seek revenge against the hated enemy, Ricardo spent most of his time practicing shooting in his private training facility.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Artistic{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cadet{{br}}(Cadet)&lt;br /&gt;
| Born on the planet New China, [PAWN_nameDef]'s father was a police chief and kept extremely strict watch over his son.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] had to do military-style drill exercises every day and keep his room spotlessly clean, always ready for inspection. [PAWN_pronoun] came to abhor violence.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caravan child{{br}}(Child)&lt;br /&gt;
| [PAWN_nameDef] was born on a urbworld merchant ship to an entrepreneurial mother and an absent father. Born male, she disliked boy stuff, and got into her mother’s things all the time.&lt;br /&gt;
&lt;br /&gt;
Eventually, she traveled with her mother to a glitterworld and spent her savings on a body she was happy with.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caravan traveler{{br}}(Traveler)&lt;br /&gt;
| Born to a family of traveling merchants, [PAWN_nameDef] was mentored by [PAWN_possessive] father in the ways of being a trader. [PAWN_pronoun] was often tasked with caring for the pack animals. Due to [PAWN_possessive] nomadic lifestyle, [PAWN_pronoun] hunted and bartered for [PAWN_possessive] food.&lt;br /&gt;
| Plants: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cat herder{{br}}(Herder)&lt;br /&gt;
| [PAWN_nameDef] helped out in his father's cat breeding business, socializing, herding, and feeding hundreds of cats.&lt;br /&gt;
&lt;br /&gt;
When he refused to clean up after the cats, [PAWN_pronoun] was transferred to the breeding science division.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&lt;br /&gt;
| Cleaning{{br}}Hauling{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cave child{{br}}(Cave kid)&lt;br /&gt;
| [PAWN_nameDef] grew up in a cave on an tundra planet, and was adopted by a traveling group of entertainers known only as the Wizards. Once a starfaring crew, the Wizards told [PAWN_objective] wondrous stories about the universe.&lt;br /&gt;
&lt;br /&gt;
One day, the Wizards did not return from scavenging. After years of waiting, [PAWN_nameDef] set off into space to find them.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Chess master{{br}}(Chesshead)&lt;br /&gt;
| [PAWN_nameDef] loved to play chess. [PAWN_pronoun] even earned the nickname Bishop for some of [PAWN_possessive] craftier moves. &lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] never got into trouble - mostly because he was good at not getting caught. &lt;br /&gt;
&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child of drifters{{br}}(Drifter)&lt;br /&gt;
| Ever since [PAWN_pronoun] was very small, [PAWN_nameDef] had never known a home beyond [PAWN_possessive] parent's ship. They were a family of nomads whose meandering provided a constant change of scenery. [PAWN_possessive] life was often perilous but never dull, and [PAWN_pronoun] inherited [PAWN_possessive] parents' wanderlust at a young age.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|6}}&lt;br /&gt;
| Firefighting{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child of glass{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef] was raised underground on a &amp;quot;marble&amp;quot; planet - a wasteland of radioactive asphalt and toxic fallout.&lt;br /&gt;
&lt;br /&gt;
To survive on a planet devoid of life, [PAWN_pronoun] had to learn how to farm underground and how to fight without wasting bullets.&lt;br /&gt;
| Plants: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| Social{{br}}Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child prodigy{{br}}(Prodigy)&lt;br /&gt;
| After graduating college at age twelve, Jered devoted his life to becoming immortal.  However his research crossed the line when he tried to modify his body using gene therapy and mechanical augmentation.  He was arrested and condemned to a prison planet.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child researcher{{br}}(Researcher)&lt;br /&gt;
| A frightfully intelligent child, [PAWN_nameDef] was kidnapped by a glitterworld corporation and forced to research technologies for weaponizing anti-matter.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] vowed never to invent anything again.&lt;br /&gt;
| Intellectual: {{+|7}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&lt;br /&gt;
| Crafting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child scientist{{br}}(Scientist)&lt;br /&gt;
| After graduating college very young, [PAWN_nameDef] devoted [PAWN_possessive] life to becoming immortal. He was arrested for trying to genetically modify himself.&lt;br /&gt;
&lt;br /&gt;
The authorities released [PAWN_objective] on the condition that he would work in a government lab on spacecraft technology. He was permitted to continue his personal research in his free time.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child slave{{br}}(Slave)&lt;br /&gt;
| Graham was born to a poor family on a rimworld. His father sold him into slavery at a young age and he was traded many times. A tycoon bought him as part of a child labor force and sent down into mines to look after machines and to work alongside them.&lt;br /&gt;
&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child spy {{br}}(Spy )&lt;br /&gt;
| Children are often presumed innocent, and so make ideal spies. [PAWN_nameDef] was trained in the arts of infiltration and information-gathering when [PAWN_pronoun] was very young.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] spent years behind enemy lines, gathering intel in a brutal planetary war. During this time, [PAWN_pronoun] had limited opportunity for education. &lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child-knave{{br}}(Knave)&lt;br /&gt;
| [PAWN_nameDef] was a child-knave of King Loteric. [PAWN_pronoun] enjoyed the training with wooden sticks and engaging others in close combat. [PAWN_pronoun] adapted quickly to the heat of battle and was good at spreading fire.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] served his lord well, until the king died in an unfortunate accident.&lt;br /&gt;
| Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Circus performer{{br}}(Performer)&lt;br /&gt;
| Growing up in the circus, [PAWN_nameDef] learned a lot of interesting things. More interesting then the balls he juggled were the pockets he picked between shows.&lt;br /&gt;
&lt;br /&gt;
A mistake with some firesticks made him develop a deathly fear of fire.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Class clown{{br}}(Clowny kid)&lt;br /&gt;
| In the ultra-competitive environs of his glitterworld school, [PAWN_nameDef] always offered to play the class clown to diffuse tension.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] developed a sense of social desperation from this, as well as an appreciation for the artistic side of comedy.&lt;br /&gt;
| Social: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Clone-farmed{{br}}(Disposable)&lt;br /&gt;
| Clone children are seeded into organic-rich wombvats and rapidly grown in a simmed universe. They're harvested later, sometimes for food, sometimes for organs, sometimes for workers - but they're always called 'Disposable'. &lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Coliseum cleaner{{br}}(Cleaner)&lt;br /&gt;
| During the 'Inner Destrian War' fallout, [PAWN_possessive] parents were captured and [PAWN_pronoun] was born into a life of slavery. Forced to clean coliseums after bloody battles for money. Watching, waiting, and learning. Coliseums were the only thing [PAWN_pronoun] ever knew. One night while cleaning the coliseum, [PAWN_possessive] family was murdered.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Caring{{br}}Firefighting{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Colony kid{{br}}(Colony kid)&lt;br /&gt;
| [PAWN_nameDef] was born the child of two doctors in a small colony. Because of [PAWN_possessive] parents, [PAWN_pronoun] was always interested in science and medicine.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] never really got along with other children, and as a result became withdrawn and unsociable.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Commoner heir{{br}}(Heir)&lt;br /&gt;
| [PAWN_nameDef] was a street urchin on a feudal steamworld.&lt;br /&gt;
&lt;br /&gt;
After [PAWN_pronoun] tried to steal food from the palace, the emperor, desperate to secure an heir, took [PAWN_objective] in and groomed [PAWN_objective] to be next in line for the throne.&lt;br /&gt;
| Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Computer geek{{br}}(Geek)&lt;br /&gt;
| [PAWN_nameDef] spent most of [PAWN_possessive] childhood on [PAWN_possessive] computer, typing away, never knowing when to get up and eat.&lt;br /&gt;
&lt;br /&gt;
He had a very narrow interest: hacking cryptobiotic safety protocols.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Animals: {{+|2}}&lt;br /&gt;
| Social{{br}}Cooking{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Construction grunt{{br}}(Builder)&lt;br /&gt;
| Growing up in his father's lab, Jackson was given the life of an intellectual elite. He got everything he desired, and price was never an object.&lt;br /&gt;
&lt;br /&gt;
However Jackson did not partake in the luxury given to him. Instead, he pursued more physical, and - in his father's eyes - lower-class jobs.  &lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Core dilettante{{br}}(Dilettante)&lt;br /&gt;
| Candice spent her formative years on a glitterworld in the core region, where she and her friends pursued lives of idle pleasure.&lt;br /&gt;
&lt;br /&gt;
As she grew up, she began to find the life of ease unfulfilling. She decided to look for a more challenging path.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Core world student{{br}}(Student)&lt;br /&gt;
| Born a male named Alex, Alyssa didn't fit in well with the other boys. When very young, she preferred creative pursuits, such as crafting jewelry, over sports. She felt she had the wrong body. Luckily, her family and friends supported her sex reassignment; as a teen, she underwent surgery to become a female.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{--|1}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Cooking{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corp student{{br}}(Student)&lt;br /&gt;
| De Dion was bred to become an executive officer for the large space trading corporation that owned his home planet. His family had been working for that corporation for seven generations.&lt;br /&gt;
&lt;br /&gt;
At age six, [PAWN_pronoun] started to study at the corporate academy, where he learned to become a loyal follower and a ruthless executive.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corp-bred student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] was bred to become an executive for the space exploration corporation that owned his home planet. [PAWN_possessive] family had been working for that corporation for four generations.&lt;br /&gt;
&lt;br /&gt;
At age five, [PAWN_pronoun] enrolled at the corporate academy where he learned loyalty and ruthlessness. [PAWN_nameDef] excelled in finding diplomatic solutions where others would need violence.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|7}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Violent{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corporate slave{{br}}(Soldier)&lt;br /&gt;
| [PAWN_nameDef] grew up in a colony owned by a large glitterworld corporation. All children had virtual reality devices attached by force, and were raised in a brutal digital world.&lt;br /&gt;
&lt;br /&gt;
Constantly forced to fight others for the entertainment of the wealthy, gunplay and tactics became the center of [PAWN_nameDef]'s universe.&lt;br /&gt;
| Plants: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Animals: {{--|2}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Country child{{br}}(Hick kid)&lt;br /&gt;
| [PAWN_nameDef] was raised up to fear God and love [PAWN_possessive] country. [PAWN_pronoun] was a genuine backwoods kid. [PAWN_pronoun] always worked hard to earn respect rather than demanding it.&lt;br /&gt;
| Cooking: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cow farmer{{br}}(Farmer)&lt;br /&gt;
| [PAWN_nameDef] grew up on a rim world, under the tyranny of [PAWN_possessive] father, who forced [PAWN_objective] to work every day on the farm. [PAWN_pronoun] dreamed of escaping [PAWN_possessive] father and exploring the universe.&lt;br /&gt;
&lt;br /&gt;
One day, when the trade ship was overhead, [PAWN_pronoun] stowed away among the goods in the launch pods, and escaped into space.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Animals: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Crime boss' child{{br}}(Crime kid)&lt;br /&gt;
| [PAWN_nameDef] was adopted child of a notorious crime boss. [PAWN_pronoun] was taught all facets of the family business, from smuggling to inventive ways of killing.&lt;br /&gt;
&lt;br /&gt;
When the family was attacked, [PAWN_possessive] father ordered [PAWN_objective] to hide in a secret longsleep crypt.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Data decoder{{br}}(Decoder)&lt;br /&gt;
| Born on a glitterworld, [PAWN_nameDef] was very interested  in the process of documenting information, and quickly became senior glitterpedia recorder.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was effective at self-study, but [PAWN_pronoun] was lacked in social experiences.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Dedicated student{{br}}(Student)&lt;br /&gt;
| The child of a wealthy manufacturer, [PAWN_nameDef] was pampered from an early age. [PAWN_pronoun] developed an affinity for reading and art, and a distaste for menial chores.&lt;br /&gt;
&lt;br /&gt;
A revolution brought his father's businesses under state control. Penniless, [PAWN_nameDef] worked hard to complete [PAWN_possessive] education.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Animals{{br}}Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Desert rat{{br}}(Desert rat)&lt;br /&gt;
| [PAWN_nameDef] was born to a tribe of desert ascetics who wandered the endless wastes.&lt;br /&gt;
&lt;br /&gt;
They sought a mythical substance they believed could liberate them from ignorance through psychedelic revelation - and usher in a new period of interstellar peace.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Diplomat's child{{br}}(Diplomat)&lt;br /&gt;
| [PAWN_nameDef] was born in diplomatic family.&lt;br /&gt;
&lt;br /&gt;
Travelling often, [PAWN_pronoun] was home-schooled and saw the world mostly through a computer.&lt;br /&gt;
| Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Artistic: {{+|1}}&lt;br /&gt;
| Violent{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Disaster survivor{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef]'s planet collided with a small moon. Everything he knew as home was destroyed, and his entire family died. [PAWN_pronoun] was left in the ruins to fend for himself.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Disaster survivor{{br}}(Survivor)&lt;br /&gt;
| Steven was uprooted when marauders attacked his family farm, destroying machinery and killing farmhands and beasts alike.&lt;br /&gt;
&lt;br /&gt;
After the death of all he knew, he was left in the ruins to fend for himself.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Discarded youth{{br}}(Discarded)&lt;br /&gt;
| [PAWN_nameDef] grew up isolated on a trash planet. A dumping ground for surrounding glitterworlds, it was a harsh home. As a baby, [PAWN_pronoun] sucked on the tap of a discarded nutrient paste dispenser for comfort.&lt;br /&gt;
&lt;br /&gt;
In these desperate circumstances, against all odds, [PAWN_pronoun] survived - and thrived.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Artistic{{br}}Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Disciplined farmer{{br}}(Farmer)&lt;br /&gt;
| Drew was the younger of two sons on the family farm, a frontier plot that struggled to turn a profit. Drew's father was a strict disciplinarian, constantly at his sons to work harder and keep quiet. Drew burnt his hand making breakfast once and swore to cook only when his life was in danger.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|1}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&lt;br /&gt;
| Social{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Displaced noble{{br}}(Noble)&lt;br /&gt;
| Born on an urbworld to the ruler of three megacities, [PAWN_nameDef]’s prospects looked good - until a violent insurrection overthrew [PAWN_possessive] family. Exile introduced [PAWN_nameDef] to hard work and combat, but some high-born squeamishness remains.&lt;br /&gt;
| Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Dreaded baby{{br}}(Baby dude)&lt;br /&gt;
| [PAWN_nameDef] was found as a baby in a crashed spacecraft. According to the ship's data records, [PAWN_pronoun] invented the nuclear device that powered his ship. Apparently, he also invented the sky and the hamburger, and is said to have fathered a race of tasty golden kittens.&lt;br /&gt;
| Shooting: {{+|1}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Dreamer{{br}}(Dreamer)&lt;br /&gt;
| [PAWN_nameDef] was an expressive child. [PAWN_pronoun] sang often, and made friends very easily, be they young or old, male or female.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] hated fighting, but when made angry, [PAWN_pronoun] could be dangerous. [PAWN_possessive] temper was quick.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Drudge{{br}}(Drudge)&lt;br /&gt;
| [PAWN_nameDef] was never sure what [PAWN_pronoun] wanted to do with [PAWN_possessive] life. [PAWN_pronoun] spent most of [PAWN_possessive] time doing low-wage jobs and wondering what [PAWN_possessive] future would be like.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] entertained himself with space sims and survival games, dreaming of one day being somewhere more interesting.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Drug mule{{br}}(Mule)&lt;br /&gt;
| Raised in an orphanage, [PAWN_nameDef] turned towards the gang life at age ten.&lt;br /&gt;
&lt;br /&gt;
He was exploited by the local gang as a drug mule to traffic &amp;quot;substance F&amp;quot; across rival gang territory. He took a bullet or two.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| Intellectual{{br}}Caring{{br}}Social{{br}}Artistic{{br}}Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Dusty farm hand{{br}}(Farm hand)&lt;br /&gt;
| From the time [PAWN_nameDef] could walk, [PAWN_pronoun] helped take care of the animals and crops that [PAWN_possessive] people tended in their arid homeland.&lt;br /&gt;
&lt;br /&gt;
The work toughened [PAWN_objective], but left little time for intellectual activities.&lt;br /&gt;
 &lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&amp;lt;/br&amp;gt;Animals: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Earth colonist{{br}}(Colonist)&lt;br /&gt;
| [PAWN_nameDef] was born on Earth. As a child, [PAWN_pronoun] was launched into space as part of an interstellar colonization program.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Empath{{br}}(Empath)&lt;br /&gt;
| [PAWN_nameDef] was an incredibly empathetic child, so much that [PAWN_pronoun] was totally overwhelmed by simple social interactions. Once, [PAWN_pronoun] stepped on a bug and felt so guilty [PAWN_pronoun] cried for an hour.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] did try to use a gun one time, but it went very poorly, as the loud noise made [PAWN_objective] flinch uncontrollably.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Violent{{br}}Social{{br}}Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Energetic pop idol{{br}}(Pop idol)&lt;br /&gt;
| Priscilla grew up on a glitterworld, training in rapier arts and singing. She spent several years as an energetic teen pop idol.&lt;br /&gt;
&lt;br /&gt;
However, she decided that the music and modeling industries were not paying her enough attention, so she left.&lt;br /&gt;
| Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Exiled prince{{br}}(Prince)&lt;br /&gt;
| A member of a royal family, [PAWN_nameDef] was exiled for shaming [PAWN_possessive] family.&lt;br /&gt;
&lt;br /&gt;
Living in a foreign land, mostly alone, [PAWN_pronoun] spent most of [PAWN_possessive] time making huts and houses to live in. [PAWN_pronoun] found little time in an average day for enjoyment, and lost all his friends and family.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|1}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Factory worker{{br}}(Worker)&lt;br /&gt;
| Felix grew up in a large factory city on an industrial world.&lt;br /&gt;
&lt;br /&gt;
Since poverty was rampant and food scarce, he worked for whatever wages he could get. This wasn't an easy life, but Felix never shied away from a hard day's work.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Fallen prodigy{{br}}(Prodigy)&lt;br /&gt;
| [PAWN_nameDef] was born on a glitterworld falling into chaos. [PAWN_possessive] father was killed in action.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] struggled for a scholarship at Utmaior Academy and had to prove his right to be there. A child genius, [PAWN_pronoun] was bullied as a charity case and couldn't make friends with the other kids.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farm boy{{br}}(Farm boy)&lt;br /&gt;
| John worked on his family's farm, looking after the animals and treating them when they were injured. Preferring hands-on tasks and the outdoors, he avoided softer jobs that might have kept him cooped up inside.&lt;br /&gt;
&lt;br /&gt;
He enjoyed this lonely work, and tended to stay out of people's way and do his own thing.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farm hand{{br}}(Farm hand)&lt;br /&gt;
| [PAWN_nameDef] was born on a farm on a smaller colony world.&lt;br /&gt;
&lt;br /&gt;
Everything was taken care of by the few members of the farm, including [PAWN_nameDef]. This helped [PAWN_objective] build independence, spirit, and a well-rounded character.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farm kid{{br}}(Farm kid)&lt;br /&gt;
| [PAWN_nameDef] grew up on his family's beef farm. He enjoyed working the fields and taking care of the animals.&lt;br /&gt;
| Plants: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farm mechanic{{br}}(Mechanic)&lt;br /&gt;
| Growing up on a farming planet, [PAWN_nameDef] spent [PAWN_possessive] time learning about the automated machinery that grew and harvested the multitude of crops.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Plants: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farmer boy{{br}}(Farmer)&lt;br /&gt;
| Benjamin's parents died in a fire when he was seven. He grew up on his uncle's farm, plowing fields and doing manual labor.&lt;br /&gt;
&lt;br /&gt;
He could not bear answering questions about his parents, so he replaced social contact with hard work.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Plants: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}Social{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farmer's daughter{{br}}(Farm girl)&lt;br /&gt;
| [PAWN_nameDef] grew up on [PAWN_possessive] parents' vineyard. [PAWN_pronoun] spent [PAWN_possessive] youth exploring the land and making friends with various bugs and insects.&lt;br /&gt;
&lt;br /&gt;
Having heard stories about all the fascinating things out there in the universe, [PAWN_pronoun] always dreamed of venturing out to see it for [PAWN_objective]self.&lt;br /&gt;
| Social: {{--|1}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farmer's son{{br}}(Farmer)&lt;br /&gt;
| Ade spent much of his childhood learning biome farming. In his biome they kept animals to investigate which would cope best in the alien environment.&lt;br /&gt;
&lt;br /&gt;
Due to this, the travel restrictions and oxygen rationing system, he rarely got to meet anyone from outside his family.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{+|1}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Feral child{{br}}(Feral)&lt;br /&gt;
| Abandoned on an animal planet as a small child with nought but a blanket with a name embroidered on it, Felix made himself one with the wilderness.&lt;br /&gt;
&lt;br /&gt;
When he was 13, he encountered a team of mineral surveyors, who &amp;quot;offered&amp;quot; him passage off of the planet.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Intellectual{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Feral child{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef] and his family lived a hard but prosperous lives along with their fellow colonists on a distant rimworld.&lt;br /&gt;
&lt;br /&gt;
One day a group of mechanoids attacked, killing everyone aside from Robert. He then lived alone in the desert until a group of raiders found him.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Feudal farm boy{{br}}(Slave)&lt;br /&gt;
| [PAWN_nameDef] was the son of a medieval farmer, and was expected to follow in his footsteps. He was brought up as a kind, well trained farm boy.&lt;br /&gt;
&lt;br /&gt;
He lived in an unusual feudal kingdom which co-existed with a midworld society which was itself well-known for genetic manipulation.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Feudal lordling{{br}}(Lordling)&lt;br /&gt;
| [PAWN_nameDef] grew up on a feudal world that was part of a multi-planet empire. As the son of a high lord, [PAWN_pronoun] enjoyed many privileges.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned to maneuver in the both the political landscape and in close quarters combat.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Fire-scarred child{{br}}(Scarred)&lt;br /&gt;
| Duster was an active child who lived an uneventful childhood until he fell into a fire and suffered horrific burns to his hands and arms. Although the scars have faded, he can't bear to be in close proximity to fire.&lt;br /&gt;
&lt;br /&gt;
| Mining: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&lt;br /&gt;
| Cooking{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Forest child{{br}}(Forest kid)&lt;br /&gt;
| When [PAWN_pronoun] was a baby, [PAWN_nameDef]'s mother went insane and left [PAWN_objective] in the woods.&lt;br /&gt;
&lt;br /&gt;
Raised by wild people, [PAWN_nameDef] was known for both loving and killing animals.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Foundry apprentice{{br}}(Foundryman)&lt;br /&gt;
| [PAWN_nameDef] grew up as an apprentice in the foundries of an industrial world. This experience gave [PAWN_objective] metalworking skills and strong muscles, but stunted [PAWN_possessive] artistic development.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Freethinker{{br}}(Thinker)&lt;br /&gt;
| [PAWN_nameDef] grew up on a toxic world with tyrannical leaders. While the rest of the population was high on the planet's narcotic exports, [PAWN_pronoun] joined a rebel militia.&lt;br /&gt;
&lt;br /&gt;
After a risky operation against the regime failed, [PAWN_pronoun] fled the planet, staying alive by threatening mutual annihilation with a planetcracker antimatter bomb.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Frontier marshal{{br}}(Marshal)&lt;br /&gt;
| Henry inherited a sense of duty from his father, and began a law enforcement career on his frontier homeworld.&lt;br /&gt;
&lt;br /&gt;
He tried to uphold the law with honor, but the corruption and greed of local government officials often discouraged him.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Galactic page{{br}}(Page)&lt;br /&gt;
| [PAWN_nameDef] served the high admiral of a space fleet. [PAWN_pronoun] learned the ways of court, including etiquette and speechcraft.&lt;br /&gt;
&lt;br /&gt;
In his feudal society, it was considered a great honor to serve a man of such prestige.&lt;br /&gt;
| Social: {{+|6}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}ManualSkilled{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Game fanatic{{br}}(Gamer)&lt;br /&gt;
| [PAWN_nameDef] was a fanatical gamer who learned to survive in virtual reality games.&lt;br /&gt;
&lt;br /&gt;
Once, while attempting to prove [PAWN_possessive] skills in the real world, [PAWN_pronoun] was abducted by a criminal scientist and experimented on. [PAWN_pronoun] escaped, but the experience stayed with him.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gang member{{br}}(Gang kid)&lt;br /&gt;
| [PAWN_nameDef] grew up without parents. [PAWN_possessive] whole life was spent alone, fighting for survival on the streets.&lt;br /&gt;
&lt;br /&gt;
No matter how hard it became to survive, he never gave up.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gang member{{br}}(Ganger)&lt;br /&gt;
| [PAWN_nameDef] grew up homeless on an urbworld. [PAWN_pronoun] was forced to fight and struggle for everything, making [PAWN_objective] hard and ruthless long before adulthood.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] would have stayed in those streets, had [PAWN_pronoun] not been injured in a shootout and had his body confiscated for use by one of the worldwide city's ruling corporations. &lt;br /&gt;
| Plants: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&lt;br /&gt;
| Intellectual{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Glitterworld kid{{br}}(Glit kid)&lt;br /&gt;
| The son of a genetically-engineered &amp;quot;perfect mate&amp;quot; on a glitterworld, Chaz was much more shy, withdrawn and nervous than his parents. [PAWN_pronoun] kept mostly to himself, studying science and medicine and taking on gardening as a hobby. &lt;br /&gt;
&lt;br /&gt;
In [PAWN_possessive] teens, [PAWN_pronoun] ran away from home, seeking a quieter life.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Glitterworld nerd{{br}}(Nerd)&lt;br /&gt;
| [PAWN_nameDef] loved technology from the day [PAWN_pronoun] was born. [PAWN_pronoun] had a mechanoid companion which [PAWN_pronoun] tried to modify when [PAWN_pronoun] was 10.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] obsession with technology meant that [PAWN_pronoun] never appreciated arts or culture.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Glitterworld royal{{br}}(Royalty)&lt;br /&gt;
| [PAWN_nameDef] grew up in a glitterworld royal household. She was groomed from a young age to marry into another planet's royal family.&lt;br /&gt;
&lt;br /&gt;
Unfortunately, her crooked teeth made her undesirable to suitors, so she became bitter and resentful.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! G-nome sculptor{{br}}(Sculptor)&lt;br /&gt;
| [PAWN_nameDef] was engineered in a lab as part of the G-nome Project. He was implanted at birth with encyclopedic knowledge of all aspects of xenobiology.&lt;br /&gt;
&lt;br /&gt;
The G-nome scientists nicknamed him Gizmo and occupied him with sculpting. He developed a love of sculpting gnomes and gnome accessories.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gun kid{{br}}(Gun kid)&lt;br /&gt;
| Growing up in a urbworld, [PAWN_nameDef] never had it easy. Every day was a struggle and pollution, hunger, and gangs of older kids.&lt;br /&gt;
&lt;br /&gt;
In the little space he had to himself, he studied his passion - guns, combat tactics, and war history.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gymnast{{br}}(Gymnast)&lt;br /&gt;
| [PAWN_nameDef] was a professional gymnast at an early age. Thanks to her skills, she was able to leave her homeworld and enroll in a glitterworld university.&lt;br /&gt;
&lt;br /&gt;
Because of the lack of career opportunities in gymnastics, she left the university unemployed and carrying an enormous debt.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hacker kid{{br}}(Hacker)&lt;br /&gt;
| Born on a high-tech world, [PAWN_nameDef] learned hack computers at a young age. &lt;br /&gt;
&lt;br /&gt;
Spending many hours tinkering alone made [PAWN_objective] very good with machines, but very bad with humans.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hacker prodigy{{br}}(Hacker)&lt;br /&gt;
| Wedge was raised as the only child of wealthy surgeons. After being pressured into accepting a medical apprenticeship, he snapped. He seized his inheritance and went underground to learn how to exploit computer networks. He quickly became one of the most feared hackers on his home planet.&lt;br /&gt;
| Intellectual: {{+|7}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| ManualDumb{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Headjack addict{{br}}(Headjacker)&lt;br /&gt;
| Plugged in to the computer via head-jack for days at a time, [PAWN_nameDef] found [PAWN_pronoun] preferred the company of computers to that of people or pets.&lt;br /&gt;
| Plants: {{--|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&lt;br /&gt;
| Social{{br}}Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Help desk worker{{br}}(Help desk)&lt;br /&gt;
| Due to [PAWN_possessive] affinity for technology and desire to help others, [PAWN_nameDef] jumped at the chance to take a job at a help desk.&lt;br /&gt;
&lt;br /&gt;
Unfortunately, the job's soul-crushing after-effects lasted longer than [PAWN_possessive] enthusiasm.&lt;br /&gt;
| Intellectual: {{+|3}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hex-cell artist{{br}}(Artist)&lt;br /&gt;
| [PAWN_nameDef] crafted sculptures from spent hex-cells and traded them to a local museum for food.&lt;br /&gt;
&lt;br /&gt;
After [PAWN_possessive] popularity grew, [PAWN_pronoun] was approached by a pirate and abducted. The pirate kept [PAWN_objective] prisoner and forced [PAWN_objective] to create sculptures for sale.&lt;br /&gt;
| Artistic: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! High baroness{{br}}(Noble)&lt;br /&gt;
| [PAWN_nameDef] was born as low-ranking royalty in a large imperial family.&lt;br /&gt;
&lt;br /&gt;
She was placed In charge of running her home planet from an early age, and learned important political and cultural skills in that role.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|7}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hillbilly prodigy{{br}}(Hillbilly)&lt;br /&gt;
| Born on a cold hillbilly planet inhabited mainly by furred xenohumans, Benjamin grew up to the sound of bar fights and shootouts. Though his childhood was spent playing the banjo and working as a mechanic, his abnormal intelligence made him want something more; he entered medical school at a young age.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! History student{{br}}(Student)&lt;br /&gt;
| As a child, [PAWN_nameDef] spent learned many artistic forms including music and novel writing. As [PAWN_pronoun] grew older, [PAWN_pronoun] began to study legends from [PAWN_possessive] home world - legends of the lizard-like beings at the center of [PAWN_possessive] culture's folklore.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hive world child{{br}}(Hiver)&lt;br /&gt;
| [PAWN_nameDef] had an isolated upbringing in an urbworld hive city. His hatred of heights kept him indoors often, and made him an introverted child.&lt;br /&gt;
&lt;br /&gt;
When [PAWN_pronoun] did go out onto the catwalks of the city, [PAWN_pronoun] enjoyed playing war games, becoming proficient with various simulation weapons.&lt;br /&gt;
| Plants: {{+|1}}&amp;lt;/br&amp;gt;Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hunter scavenger{{br}}(Scavenger)&lt;br /&gt;
| Born to a family of raiders in the mudlands of Vinna, [PAWN_nameDef] survived by scavenging food and resources from nearby settlements with [PAWN_possessive] gang. [PAWN_pronoun] was the most ferocious of the bunch.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Ice planet child{{br}}(Ice child)&lt;br /&gt;
| Growing up on the frozen wastes of an ocean moon, [PAWN_nameDef] only had animals and a few hard-bitten sailors as companions.&lt;br /&gt;
&lt;br /&gt;
The lack of social interaction made him develop a interest in engineering - but he never developed any great fondness for humans. &lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&lt;br /&gt;
| Caring{{br}}Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Iceworld survivor{{br}}(Iceborn)&lt;br /&gt;
| [PAWN_nameDef] was born on an iceworld. Survival depended on staying together and building with nothing.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] got used to the cold. [PAWN_pronoun] never got used to dealing with those strange green things called plants.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Idealistic cadet{{br}}(Cadet)&lt;br /&gt;
| Raised in the military traditions of his forefathers, [PAWN_nameDef] was taught from a young age that he would be a great leader and the hero of the Dichter family.&lt;br /&gt;
&lt;br /&gt;
He excelled at his studies and graduated from the academy with honors.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Imperial student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] studied on an imperial midworld where guns were banned and self-defense study was encouraged. The relative safety allowed [PAWN_objective] to focus on [PAWN_possessive] botanical research.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| Crafting{{br}}Firefighting{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Indworld urchin{{br}}(Urchin)&lt;br /&gt;
| [PAWN_nameDef] grew up on the streets of a world in the early stages of its industrial revolution. [PAWN_pronoun] passed [PAWN_possessive] days stealing, begging and tinkering with discarded machine scraps, always on the lookout for a way to escape poverty. &lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Infantry{{br}}(Infantry)&lt;br /&gt;
| Lenka was raised on a world wracked by war.&lt;br /&gt;
&lt;br /&gt;
At an early age, she was shown how to use guns and cruelty to project her will. She later distinguished herself by committing atrocities with more enthusiasm than anyone else.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Joywire addict{{br}}(Addict)&lt;br /&gt;
| [PAWN_nameDef]'s wealthy parents provided everything [PAWN_pronoun] ever wanted. After discovering joywires, [PAWN_pronoun] became obsessed. Once [PAWN_possessive] parents realized what happened, they cut [PAWN_objective] off.&lt;br /&gt;
&lt;br /&gt;
Uncaring and often violent, [PAWN_pronoun] sought [PAWN_possessive] next joywire fix by any means possible.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|6}}&amp;lt;/br&amp;gt;Social: {{--|3}}&lt;br /&gt;
| Intellectual{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Jungle kid{{br}}(Jungle kid)&lt;br /&gt;
| [PAWN_nameDef] was abandoned as a newborn, and grew up among the animals of [PAWN_possessive] homeworld’s dense jungles.&lt;br /&gt;
&lt;br /&gt;
When [PAWN_pronoun] was a teenager, a traveling doctor found [PAWN_objective] injured near a road, hissing and meowing. He rescued [PAWN_objective] and took [PAWN_objective] on as an apprentice.&lt;br /&gt;
| Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Junkyard mechanic{{br}}(Mechanic)&lt;br /&gt;
| Left for dead at a young age, [PAWN_nameDef] was rescued by an old man who ran an urbworld junkyard. The old man forced [PAWN_nameDef] to do dangerous, demanding work. &lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] became very familiar with machines, but [PAWN_pronoun] grew up with almost no other experiences.&lt;br /&gt;
&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Kid scientist{{br}}(Scientist)&lt;br /&gt;
| Born into an influential family, [PAWN_nameDef] received the best education money could buy. Her intellect soon proved to be superior to many. However, her lack of empathy quickly put her at odds with her teachers and her parents.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| ManualDumb{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Killer{{br}}(Killer)&lt;br /&gt;
| [PAWN_nameDef] was a bloodlusting child. Villagers thought her the product of a snake demon and human coupling.&lt;br /&gt;
&lt;br /&gt;
After watching how her human father betrayed and murdered her mother, she longed to see how many more humans she could get to fall into her hands.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Lab-grown child{{br}}(Lab-grown)&lt;br /&gt;
| [PAWN_nameDef] was born in a laboratory as part of a altruistic but failed attempt to create a new class of human.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] childhood was filled with books and one-on-one tutoring. He was awkward, shy, and naive to the true nature of humanity.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Labor camp orphan{{br}}(Orphan)&lt;br /&gt;
| [PAWN_nameDef] lost her parents in an industrial accident and grew up in an orphans' labor camp. The camp overseers worked their charges mercilessly - but at least she was clothed and fed.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|4}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Logical child{{br}}(Logic kid)&lt;br /&gt;
| [PAWN_pronoun] preferred logical activities like computers and was completely useless at art.&lt;br /&gt;
&lt;br /&gt;
Being awkward in social situations, [PAWN_possessive] friends were few but close.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mad scientist{{br}}(Scientist)&lt;br /&gt;
| [PAWN_nameDef] grew up miserable on the plains of a neolithic planet. He found the strength to fight under the teachings of an old, broken scientist.&lt;br /&gt;
&lt;br /&gt;
He quickly learned to play with people's fears, and was nicknamed 'mad scientist'.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Marine cadet{{br}}(Cadet)&lt;br /&gt;
| [PAWN_nameDef] was in a planetary marine cadet program.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was kicked out for shooting an officer. It was never established whether this was an accident.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mechanoid hacker{{br}}(Mechacker)&lt;br /&gt;
| The only son of a well respected mechanoid inventor, [PAWN_nameDef] had access to the materials to subvert and modify [PAWN_possessive] father's creations.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] used drugs to increase [PAWN_possessive] productivity. Unfortunately, the side-effects included persistent delusions of being mechanized, which limited [PAWN_possessive] social life.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mechanoid nerd{{br}}(Mechanerd)&lt;br /&gt;
| [PAWN_nameDef] grew up in an urbworld as the only child of a pair of mechanoid designers.&lt;br /&gt;
They encouraged [PAWN_possessive] interest in the machines. Eventually, [PAWN_pronoun] became obsessed with building [PAWN_possessive] own.&lt;br /&gt;
&lt;br /&gt;
Unfortunately this also lead to [PAWN_objective] being a loner as [PAWN_pronoun] prefered technical books to friends.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medical helper{{br}}(Med helper)&lt;br /&gt;
| [PAWN_nameDef] traveled between rim worlds with [PAWN_possessive] family. [PAWN_nameDef]'s mother, a renowned doctor, often delivered lectures from the hull of their retrofitted cargo/medical ship.&lt;br /&gt;
&lt;br /&gt;
Sometimes, the family took on difficult long-term medical work with especially needy patients, and [PAWN_nameDef] helped where he could.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medical student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] grew up on a glitterworld in a family of doctors and chose to maintain the tradition.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] had few friends, but got along with [PAWN_possessive] siblings very well.&lt;br /&gt;
| Social: {{+|1}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medical student{{br}}(Student)&lt;br /&gt;
| Born into a long line of doctors, [PAWN_nameDef] was tutored in all fields of medicine, from herbal ointments to the modern synthetic drugs. [PAWN_pronoun] also picked up a healthy disdain for lower class work.&lt;br /&gt;
| Construction: {{--|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Hauling{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval plower{{br}}(Plower)&lt;br /&gt;
| [PAWN_nameDef] lived on a planet where kings and queens ruled with little regard for the peasants beneath them. [PAWN_possessive] family owned a large farm, but the king took most of the food it produced. This left [PAWN_nameDef]'s family poor, and unable to pay for [PAWN_possessive] education. Instead, [PAWN_pronoun] was required to work the fields with [PAWN_possessive] parents, and never had time to practice creativity.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|5}}&amp;lt;/br&amp;gt;Intellectual: {{--|1}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval slave{{br}}(Slave)&lt;br /&gt;
| Born into slavery, Soren never knew his parents. He eventually escaped from his masters and boarded a military cargo ship, where he was pressed into military service.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{+|1}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval squire{{br}}(Squire)&lt;br /&gt;
| William grew up on a medieval planet as a knight in training. He trained directly under the king's war adviser for most of his youth, and learned to fight with a sword and shield.&lt;br /&gt;
| Construction: {{--|1}}&amp;lt;/br&amp;gt;Mining: {{--|1}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&lt;br /&gt;
| Cooking{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval thief{{br}}(Thief)&lt;br /&gt;
| [PAWN_nameDef] grew up poor and hungry on a medieval planet, learning to fend for himself.&lt;br /&gt;
&lt;br /&gt;
At first, he only took what he needed. Then he learned to take what he wanted.&lt;br /&gt;
| Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mercenary recruit{{br}}(Mercenary)&lt;br /&gt;
| Descended from a long line of off-world mercenaries, [PAWN_nameDef] grew up in a busy trading hub.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive]'s interest in the foreign goods at the market often distracted him from his chores and training.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mercenary recruit{{br}}(Recruit)&lt;br /&gt;
| Born to a long line of off-world mercenaries, [PAWN_nameDef] grew up in a busy trading hub. At a young age, [PAWN_pronoun] was recruited into one of the mercenary crews.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Midworld cadet{{br}}(Cadet)&lt;br /&gt;
| Growing up on a high-tech midworld with a flourishing space transit industry, [PAWN_nameDef] wished to leave for the stars and live among the growing spacer class.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] excelled in [PAWN_possessive] studies, and gained entry to [PAWN_possessive] homeworld's most prestigious naval academy.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Midworld geek{{br}}(Geek)&lt;br /&gt;
| [PAWN_nameDef] grew up in a quiet suburban neighborhood. He was never a master of social interaction, but his interest in computers blossomed into a true talent at an early age.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Social: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Midworld loner{{br}}(Loner)&lt;br /&gt;
| [PAWN_nameDef] was born on a peaceful, unimportant midworld.&lt;br /&gt;
&lt;br /&gt;
While [PAWN_pronoun] had a few friends, [PAWN_pronoun] preferred to spend [PAWN_possessive] time in solitude, tinkering on [PAWN_possessive] autocycle while listening to netcasts, or plinking at plastic soldiers with a new rifle [PAWN_pronoun] had just put together.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Midworld sketcher{{br}}(Sketcher)&lt;br /&gt;
| [PAWN_nameDef] was born into a loving but poor family.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] discovered he had an artistic talent which he inherited from his father. [PAWN_possessive] mother taught him the benefits of hard work and determination. As he grew older, [PAWN_nameDef] developed a fascination with technology and military history.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Militant child{{br}}(Soldier)&lt;br /&gt;
| [PAWN_nameDef]'s military family forced him to train in hand-to-hand combat and fighting tactics.&lt;br /&gt;
&lt;br /&gt;
In his own time, he built small inventions. This sharpened his mind.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Military cadet{{br}}(Cadet)&lt;br /&gt;
| Orphaned as a child, [PAWN_nameDef] was sent to a secret military school on a harsh deadworld.&lt;br /&gt;
&lt;br /&gt;
Taking quickly to firearms and survival training, [PAWN_pronoun] graduated with honor, transitioning into a leadership position in covert operations.&lt;br /&gt;
| Plants: {{--|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{--|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Military child{{br}}(Military)&lt;br /&gt;
| [PAWN_nameDef] grew up in a family with a rich military background. [PAWN_possessive] teenage years were spent traveling system to system wherever [PAWN_possessive] parents were deployed.&lt;br /&gt;
&lt;br /&gt;
Following the tradition of [PAWN_possessive] family, [PAWN_pronoun] enlisted at the earliest possible age.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Military recruit{{br}}(Recruit)&lt;br /&gt;
| [PAWN_nameDef] was born on a midworld run by an intensely militaristic dictatorship.&lt;br /&gt;
&lt;br /&gt;
From a young age, [PAWN_pronoun] was trained to be a good soldier. They taught him how to use a gun and how to fight with melee weapons.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Military trainee{{br}}(Soldierboy)&lt;br /&gt;
| [PAWN_nameDef] was raised on a military base in the Xennoa system. [PAWN_pronoun] was exposed to many different strenuous activities and grew strong at an early age. [PAWN_pronoun] also learned negotiation, medical, and military tactics.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Music idol{{br}}(Music idol)&lt;br /&gt;
| [PAWN_nameDef] was the only daughter of a powerful company president. [PAWN_possessive] beautiful appearance led to a career as a music idol.&lt;br /&gt;
&lt;br /&gt;
When [PAWN_possessive] mother died, [PAWN_nameDef] could not bear [PAWN_possessive] father's loneliness, and became his sexual companion.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=Topic:Uza87prq17ptbf65&amp;topic_postId=uza8i5h8jyk6j4b1&amp;topic_revId=uza8i5h8jyk6j4b1&amp;action=single-view</id>
		<title>Topic:Uza87prq17ptbf65</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=Topic:Uza87prq17ptbf65&amp;topic_postId=uza8i5h8jyk6j4b1&amp;topic_revId=uza8i5h8jyk6j4b1&amp;action=single-view"/>
		<updated>2019-05-07T19:53:31Z</updated>

		<summary type="html">&lt;span class=&quot;plainlinks&quot;&gt;&lt;a href=&quot;/wiki/User:Mehni&quot; class=&quot;mw-userlink&quot; title=&quot;User:Mehni&quot;&gt;&lt;bdi&gt;Mehni&lt;/bdi&gt;&lt;/a&gt; &lt;span class=&quot;mw-usertoollinks&quot;&gt;(&lt;a href=&quot;/wiki/User_talk:Mehni&quot; class=&quot;mw-usertoollinks-talk&quot; title=&quot;User talk:Mehni&quot;&gt;talk&lt;/a&gt; | &lt;a href=&quot;/wiki/Special:Contributions/Mehni&quot; class=&quot;mw-usertoollinks-contribs&quot; title=&quot;Special:Contributions/Mehni&quot;&gt;contribs&lt;/a&gt;)&lt;/span&gt; &lt;a rel=&quot;nofollow&quot; class=&quot;external text&quot; href=&quot;https://rimworldwiki.com/index.php?title=Topic:Uza87prq17ptbf65&amp;amp;topic_showPostId=uza8i5h8jyk6j4b1#flow-post-uza8i5h8jyk6j4b1&quot;&gt;commented&lt;/a&gt; on &quot;Backstories&quot; (&lt;em&gt;Well shucks. And both backstory pages aren&amp;#039;t even complete yet. Does &amp;quot;too large&amp;quot; go for both of them as well? Might have to split it up a...&lt;/em&gt;)&lt;/span&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=Topic:Uz7ghv2lxcgrnnnx&amp;topic_postId=uza4ank5v5vogxot&amp;topic_revId=uza81d3rcj30w971&amp;action=single-view</id>
		<title>Topic:Uz7ghv2lxcgrnnnx</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=Topic:Uz7ghv2lxcgrnnnx&amp;topic_postId=uza4ank5v5vogxot&amp;topic_revId=uza81d3rcj30w971&amp;action=single-view"/>
		<updated>2019-05-07T19:45:09Z</updated>

		<summary type="html">&lt;span class=&quot;plainlinks&quot;&gt;&lt;a href=&quot;/wiki/User:Mehni&quot; class=&quot;mw-userlink&quot; title=&quot;User:Mehni&quot;&gt;&lt;bdi&gt;Mehni&lt;/bdi&gt;&lt;/a&gt; &lt;span class=&quot;mw-usertoollinks&quot;&gt;(&lt;a href=&quot;/wiki/User_talk:Mehni&quot; class=&quot;mw-usertoollinks-talk&quot; title=&quot;User talk:Mehni&quot;&gt;talk&lt;/a&gt; | &lt;a href=&quot;/wiki/Special:Contributions/Mehni&quot; class=&quot;mw-usertoollinks-contribs&quot; title=&quot;Special:Contributions/Mehni&quot;&gt;contribs&lt;/a&gt;)&lt;/span&gt; edited a &lt;a rel=&quot;nofollow&quot; class=&quot;external text&quot; href=&quot;https://rimworldwiki.com/index.php?title=Topic:Uz7ghv2lxcgrnnnx&amp;amp;topic_showPostId=uza4ank5v5vogxot#flow-post-uza4ank5v5vogxot&quot;&gt;post&lt;/a&gt; on &quot;Guideline: HECAP, HISCAP, HE, HIS, and transcribing pronouns in backstories&quot;&lt;/span&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=List_of_childhood_backstories&amp;diff=63389</id>
		<title>List of childhood backstories</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=List_of_childhood_backstories&amp;diff=63389"/>
		<updated>2019-05-07T19:30:43Z</updated>

		<summary type="html">&lt;p&gt;Mehni: Undo revision 63388 by XeoNovaDan (talk)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;amp;larr; &amp;lt;small&amp;gt;[[Backstories]]&amp;lt;/small&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| {{STDT| sortable c_17}}&lt;br /&gt;
! Title&amp;lt;br /&amp;gt;(Short Title) !! Description !! Skill Modifications !! Incapable of !! Civil !! Raider !! Slave !! Trader !! Traveler !! Tribal&lt;br /&gt;
|-&lt;br /&gt;
! Abandoned child{{br}}(Abandoned)&lt;br /&gt;
| [PAWN_nameDef] was a quick witted, funny child. One day, [PAWN_pronoun] wandered off on [PAWN_possessive] wealthy genetic parents, and was ultimately lost in a supposedly unused ore warehouse. Due to cloning technology, [PAWN_possessive] parents decided that the time looking for [PAWN_objective] was better spent on just cloning a better son.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|1}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Abandoned orphan{{br}}(Orphan)&lt;br /&gt;
| Abandoned at birth, young [PAWN_nameDef] started [PAWN_possessive] life in an orphanage.&lt;br /&gt;
&lt;br /&gt;
A rascal and a scoundrel, [PAWN_pronoun] became a clever troublemaker.&lt;br /&gt;
| Plants: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Abductee{{br}}(Abductee)&lt;br /&gt;
| [PAWN_nameDef] was abducted at a young age and forced to do menial labor on a pirate ship.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Abductee{{br}}(Abductee)&lt;br /&gt;
| [PAWN_nameDef] was abducted by xenohumans when [PAWN_pronoun] was still a baby. They experimented on [PAWN_objective] to understand his genetic structure.&lt;br /&gt;
&lt;br /&gt;
As [PAWN_pronoun] grew up, [PAWN_nameDef] grew a little bit too big and strong for his captors and eventually escaped.&lt;br /&gt;
&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Academy student {{br}}(Student )&lt;br /&gt;
| [PAWN_nameDef] went to school like a good space cadet would. He was very tall and was known for his good looks.&lt;br /&gt;
&lt;br /&gt;
Though he worried more about his hairstyle than his grades, he still somehow passed the final exams.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Accursed child{{br}}(Cursed)&lt;br /&gt;
| [PAWN_nameDef] was born at the peak of a lunar eclipse. The elders declared [PAWN_objective] a child of darkness brought [PAWN_objective] under their care.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] entire childhood was spent studying the lore and rituals of [PAWN_possessive] people - until the day of calling.&lt;br /&gt;
| Construction: {{--|1}}&amp;lt;/br&amp;gt;Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| Firefighting{{br}}Cleaning{{br}}Hauling{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Adventuring child{{br}}(Adventurer)&lt;br /&gt;
| Axle was raised to become an engineer. For years, he planned to stow away on a cargo ship and start a new, more adventuresome life.&lt;br /&gt;
&lt;br /&gt;
One night, after his parents fell asleep, he managed to sneak on board a cargo ship just before it left port.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Adventurous youth{{br}}(Adventurer)&lt;br /&gt;
| [PAWN_nameDef] explored all around [PAWN_possessive] family's large estate, uncovering little natural wonders hidden in nearby catacombs, rivers, and caves.&lt;br /&gt;
&lt;br /&gt;
During his teenage years, [PAWN_nameDef] made numerous enemies&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Amateur astronomer{{br}}(Astronomer)&lt;br /&gt;
| [PAWN_nameDef] was fascinated with astronomy. [PAWN_pronoun] would spend hours gazing at planets and nebulae through his telescope.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] is credited with discovering a small comet that would, years later, strike a nearby moon and disrupt the mining operations there.&lt;br /&gt;
| Intellectual: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Amateur botanist{{br}}(Botanist)&lt;br /&gt;
| Spending many summers crawling through dirt, Christian found he had quite the green thumb. Instead of learning to cook the food he grew, he just grew more and more.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Amateur engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] grew up in a family with a military and engineering background. [PAWN_pronoun] wanted to join the army but his father didn't like the idea, so [PAWN_possessive] interest turned to great flying machines and works of engineering. [PAWN_pronoun] secretly hoped that this would one day lead him to a life of galactic exploration.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|1}}&lt;br /&gt;
| Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Angry student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] trained towards [PAWN_possessive] dream of working for his hometown's local council.&lt;br /&gt;
&lt;br /&gt;
For reasons he never quite understood, [PAWN_pronoun] was bullied relentlessly by his classmates. [PAWN_pronoun] chose to repress his rage.&lt;br /&gt;
| Intellectual: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Animal caretaker{{br}}(Caretaker)&lt;br /&gt;
| Born on a medieval farm, [PAWN_nameDef] was tasked with caring for domestic animals. [PAWN_pronoun] grew to love them.&lt;br /&gt;
&lt;br /&gt;
With time, [PAWN_pronoun] learned to tame wild animals. [PAWN_pronoun] dreamed of one day meeting a thrumbo and taming it.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Animal lab tech{{br}}(Lab tech)&lt;br /&gt;
| [PAWN_nameDef] worked as a technician in a lab studying animals.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] spent [PAWN_possessive] days taking care of the animals and cleaning up after them. [PAWN_pronoun] dreamed of having [PAWN_possessive] own lab one day.&lt;br /&gt;
| Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|3}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Antisocial child{{br}}(Antisocial)&lt;br /&gt;
| [PAWN_nameDef] lacked typical social skills, and avoided social interaction.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] gained satisfaction only from steady work. [PAWN_pronoun] especially disliked speaking with overly creative or outgoing individuals.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Apocalypse child {{br}}(Apocalypse)&lt;br /&gt;
| [PAWN_nameDef] spent his childhood on a post-apocalyptic world. He fought for survival from a young age, on a planet where trust did not exist.&lt;br /&gt;
&lt;br /&gt;
He told everyone that he had no luck.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Apocalypse survivor{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef] was born during a time of unrest on [PAWN_possessive] homeworld, as climate change threatened mass starvation and flooding. As [PAWN_pronoun] grew up the situation worsened - billions died and peaceful states descended into anarchy. [PAWN_nameDef] and [PAWN_possessive] parents did whatever they had to to survive.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Apprentice oracle{{br}}(Oracle)&lt;br /&gt;
| [PAWN_nameDef] was chosen at an early age by the village elders to keep the sacred rituals of the Oracle.&lt;br /&gt;
&lt;br /&gt;
An irrepressibly curious child, [PAWN_nameDef] caused a religious crisis for [PAWN_possessive] tribe when [PAWN_pronoun] accidentally flipped a switch to open the &amp;quot;tombs&amp;quot; of the Gods - cryptosleep caskets inhabited by some very confused ancestors.  &lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Apprentice smith{{br}}(Apprentice)&lt;br /&gt;
| [PAWN_nameDef] grew up helping in his father's smithy.&lt;br /&gt;
&lt;br /&gt;
They were some of the last smiths on the planet that to use traditional smithing methods. They even collect some materials themselves.&lt;br /&gt;
&lt;br /&gt;
Sometimes, after work, [PAWN_nameDef] would practice using the swords [PAWN_pronoun] forged.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artful dodger{{br}}(Dodger)&lt;br /&gt;
| Robin grew up on one of the urbworlds and had to fend for himself all his life. He never trusted anyone, relying on his persuasiveness and cunning to survive.&lt;br /&gt;
&lt;br /&gt;
He soon became skilled with firearms and knives as well as words.&lt;br /&gt;
| Shooting: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}Crafting{{br}}Cooking{{br}}Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artisan farmer{{br}}(Farmer)&lt;br /&gt;
| [PAWN_nameDef] grew up on a [PAWN_possessive] family's glitterworld farm. They were one of the last farms on the planet that preferred traditional farming methods to glitterworld technology.&lt;br /&gt;
| Plants: {{+|7}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artistic weirdo{{br}}(Weirdo)&lt;br /&gt;
| [PAWN_nameDef] grew up in a house near a bustling midworld metropolis.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was talented at art and creative work, but often acted strangely, and thus had few friends.&lt;br /&gt;
| Cooking: {{+|1}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aspergers rebel{{br}}(Rebel)&lt;br /&gt;
| [PAWN_nameDef] grew up as a rebel on an formerly-advanced rimworld devastated by war.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] Aspergers syndrome meant he struggled with social situations and was incapable of caring, but [PAWN_pronoun] learned hard skills like research and shooting very quickly.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&lt;br /&gt;
| Caring{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aspiring engineer{{br}}(Tinkerer)&lt;br /&gt;
| [PAWN_nameDef] had a fascination with gadgets and gizmos. [PAWN_pronoun] took apart and put together almost anything [PAWN_pronoun] could find.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] got used to repairing toys brought to [PAWN_objective] by other children, and even fixed a few devices from [PAWN_possessive] elders.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aspiring physicist{{br}}(Student)&lt;br /&gt;
| The daughter of an engineer and doctor, [PAWN_nameDef]'s early life was intellectually rich. After visiting a physics lab, she decided she wanted to be a quantum physicist.&lt;br /&gt;
&lt;br /&gt;
Bitten by a camel, kicked off a horse, and chased by dogs, [PAWN_nameDef] developed a fear of animals.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}Animals{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aspiring pop idol{{br}}(Pop idol)&lt;br /&gt;
| Min was being trained in song and dance to become the next big pop idol. She grew up being taken care of by company handlers.&lt;br /&gt;
&lt;br /&gt;
She never knew manual labor, but learned a lot about music and social etiquette.&lt;br /&gt;
| Shooting: {{--|4}}&amp;lt;/br&amp;gt;Melee: {{--|4}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&lt;br /&gt;
| ManualDumb{{br}}Cleaning{{br}}Hauling{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Athlete{{br}}(Athlete)&lt;br /&gt;
| [PAWN_nameDef] was professional athlete at early age. Thanks to her skills, she was able to leave her homeworld and enroll in a glitterworld university of science and technology.&lt;br /&gt;
&lt;br /&gt;
Because of her demanding schedule and introverted nature, she became socially inept.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Awkward nerd{{br}}(Nerd)&lt;br /&gt;
| Always fascinated by machines, Dave spent his time studying robotics and holography. He preferred the company of his scientific creations to that of other people.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blackjack player{{br}}(Gambler)&lt;br /&gt;
| The only useful skill [PAWN_nameDef] learned from his tough military school was card counting. He amassed many enemies by cheating at casinos, becoming ever more edgy and violent as the threat of retaliation grew.&lt;br /&gt;
&lt;br /&gt;
When he was finally caught, they burned half his skin off. He'll never be able to face fire or violence again.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|4}}&lt;br /&gt;
| Violent{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blacksmith's son{{br}}(Blacksmith)&lt;br /&gt;
| [PAWN_nameDef]'s father owned the blacksmith shop in an run-down old city district. [PAWN_nameDef] would help his father whenever he could.&lt;br /&gt;
&lt;br /&gt;
Later, [PAWN_possessive] father took him as a blacksmith's apprentice and raised him as a man. [PAWN_nameDef] also to on shooting as a hobby.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blessed child{{br}}(Blessed)&lt;br /&gt;
| [PAWN_nameDef] was born under auspicious circumstances to a midworld spiritual group and held in reverence throughout [PAWN_possessive] childhood.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned to take care of the poor and give succor to the faithful from an early age.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bodyguard trainee{{br}}(Bodyguard)&lt;br /&gt;
| [PAWN_nameDef] was born into a famously skilled family of bodyguards. [PAWN_possessive] mothers Elena and Victoria forced [PAWN_objective] into many dangerous situations, training [PAWN_objective] to put [PAWN_possessive] client's well-being over [PAWN_possessive] own.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] was taught about many herbs and natural poisons to help [PAWN_objective] prevent clients from being poisoned.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bone collector{{br}}(Pupil)&lt;br /&gt;
| Born to a family of fortune hunters, [PAWN_nameDef] always had a passion for ancient history.&lt;br /&gt;
&lt;br /&gt;
Though never a tough or social boy, [PAWN_pronoun] loved to dig through history books as well as dirt piles.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{--|3}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bookworm{{br}}(Bookworm)&lt;br /&gt;
| [PAWN_nameDef] spent his youth in the library, reading every book he could about the technical marvels of space travel, the engineering ingenuity of the space-faring pioneers, and the horrible yet fascinating tales of the mechanoid races. He vowed that one day, he would see these things for himself.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Boy scout{{br}}(Scout)&lt;br /&gt;
| [PAWN_nameDef] was in a boy scout troop on a midworld.&lt;br /&gt;
&lt;br /&gt;
He learned many survival skills including how to thrive in the outdoors and how to tend to basic wounds.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Boy soldier{{br}}(Soldier)&lt;br /&gt;
| War may never change - but the cast of characters does.&lt;br /&gt;
&lt;br /&gt;
Born on a violent urbworld, [PAWN_nameDef] was trained from a young age to fight the wars of others, and became rather good at it. &lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Brothel gofer{{br}}(Gofer)&lt;br /&gt;
| Born on a steam-powered midworld wracked by a century of economic crises, [PAWN_nameDef] went to work at a young age. Scrounging, shoe-polishing, sewing - he did it all. But [PAWN_pronoun] was most known as a brothel gofer, delivering all manner of aphrodisiacs and chemicals to the girls' rooms.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Brutal thief{{br}}(Thief)&lt;br /&gt;
| Growing up in a gang, [PAWN_nameDef] learned the brutality of the streets.&lt;br /&gt;
&lt;br /&gt;
Knowing that showing weakness could be fatal, he closed himself of to others.&lt;br /&gt;
| Plants: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bunker kid{{br}}(Bunker kid)&lt;br /&gt;
| Ricardo grew up in an underground shelter, waiting for radioactive fallout to subside. His rich family had gained access to a luxury bunker city, while billions died on the surface.&lt;br /&gt;
&lt;br /&gt;
Determined to one day seek revenge against the hated enemy, Ricardo spent most of his time practicing shooting in his private training facility.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Artistic{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cadet{{br}}(Cadet)&lt;br /&gt;
| Born on the planet New China, [PAWN_nameDef]'s father was a police chief and kept extremely strict watch over his son.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] had to do military-style drill exercises every day and keep his room spotlessly clean, always ready for inspection. [PAWN_pronoun] came to abhor violence.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caravan child{{br}}(Child)&lt;br /&gt;
| [PAWN_nameDef] was born on a urbworld merchant ship to an entrepreneurial mother and an absent father. Born male, she disliked boy stuff, and got into her mother’s things all the time.&lt;br /&gt;
&lt;br /&gt;
Eventually, she traveled with her mother to a glitterworld and spent her savings on a body she was happy with.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caravan traveler{{br}}(Traveler)&lt;br /&gt;
| Born to a family of traveling merchants, [PAWN_nameDef] was mentored by [PAWN_possessive] father in the ways of being a trader. [PAWN_pronoun] was often tasked with caring for the pack animals. Due to [PAWN_possessive] nomadic lifestyle, [PAWN_pronoun] hunted and bartered for [PAWN_possessive] food.&lt;br /&gt;
| Plants: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cat herder{{br}}(Herder)&lt;br /&gt;
| [PAWN_nameDef] helped out in his father's cat breeding business, socializing, herding, and feeding hundreds of cats.&lt;br /&gt;
&lt;br /&gt;
When he refused to clean up after the cats, [PAWN_pronoun] was transferred to the breeding science division.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&lt;br /&gt;
| Cleaning{{br}}Hauling{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cave child{{br}}(Cave kid)&lt;br /&gt;
| [PAWN_nameDef] grew up in a cave on an tundra planet, and was adopted by a traveling group of entertainers known only as the Wizards. Once a starfaring crew, the Wizards told [PAWN_objective] wondrous stories about the universe.&lt;br /&gt;
&lt;br /&gt;
One day, the Wizards did not return from scavenging. After years of waiting, [PAWN_nameDef] set off into space to find them.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caveworld tender{{br}}(Cave kid)&lt;br /&gt;
| [PAWN_nameDef] grew up in cave complex deep beneath the surface of an inhospitable world. [PAWN_pronoun] worked with the other children tending the tribe’s fungus crops.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caveworld tunneler{{br}}(Tunneler)&lt;br /&gt;
| [PAWN_nameDef] worked as a digger in the massive underground cave complex.{{br}}[PAWN_pronoun] knows rock so well that [PAWN_pronoun] can almost navigate caves by smell.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Mining: {{+|6}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&lt;br /&gt;
| Intellectual{{br}}Crafting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Chess master{{br}}(Chesshead)&lt;br /&gt;
| [PAWN_nameDef] loved to play chess. [PAWN_pronoun] even earned the nickname Bishop for some of [PAWN_possessive] craftier moves. &lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] never got into trouble - mostly because he was good at not getting caught. &lt;br /&gt;
&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child of drifters{{br}}(Drifter)&lt;br /&gt;
| Ever since [PAWN_pronoun] was very small, [PAWN_nameDef] had never known a home beyond [PAWN_possessive] parent's ship. They were a family of nomads whose meandering provided a constant change of scenery. [PAWN_possessive] life was often perilous but never dull, and [PAWN_pronoun] inherited [PAWN_possessive] parents' wanderlust at a young age.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|6}}&lt;br /&gt;
| Firefighting{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child of glass{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef] was raised underground on a &amp;quot;marble&amp;quot; planet - a wasteland of radioactive asphalt and toxic fallout.&lt;br /&gt;
&lt;br /&gt;
To survive on a planet devoid of life, [PAWN_pronoun] had to learn how to farm underground and how to fight without wasting bullets.&lt;br /&gt;
| Plants: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| Social{{br}}Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child prodigy{{br}}(Prodigy)&lt;br /&gt;
| After graduating college at age twelve, Jered devoted his life to becoming immortal.  However his research crossed the line when he tried to modify his body using gene therapy and mechanical augmentation.  He was arrested and condemned to a prison planet.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child researcher{{br}}(Researcher)&lt;br /&gt;
| A frightfully intelligent child, [PAWN_nameDef] was kidnapped by a glitterworld corporation and forced to research technologies for weaponizing anti-matter.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] vowed never to invent anything again.&lt;br /&gt;
| Intellectual: {{+|7}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&lt;br /&gt;
| Crafting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child scientist{{br}}(Scientist)&lt;br /&gt;
| After graduating college very young, [PAWN_nameDef] devoted [PAWN_possessive] life to becoming immortal. He was arrested for trying to genetically modify himself.&lt;br /&gt;
&lt;br /&gt;
The authorities released [PAWN_objective] on the condition that he would work in a government lab on spacecraft technology. He was permitted to continue his personal research in his free time.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child slave{{br}}(Slave)&lt;br /&gt;
| Graham was born to a poor family on a rimworld. His father sold him into slavery at a young age and he was traded many times. A tycoon bought him as part of a child labor force and sent down into mines to look after machines and to work alongside them.&lt;br /&gt;
&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child spy {{br}}(Spy )&lt;br /&gt;
| Children are often presumed innocent, and so make ideal spies. [PAWN_nameDef] was trained in the arts of infiltration and information-gathering when [PAWN_pronoun] was very young.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] spent years behind enemy lines, gathering intel in a brutal planetary war. During this time, [PAWN_pronoun] had limited opportunity for education. &lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child spy{{br}}(Spy)&lt;br /&gt;
| Children are often presumed innocent, and can be ideal as spies. [PAWN_nameDef] was trained in the art of infiltration and information-gathering when [PAWN_pronoun] was just nine years old.{{br}}[PAWN_possessive] years behind enemy lines and the war-torn nature of [PAWN_possessive] homeworld meant [PAWN_pronoun] had limited opportunity for education.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Intellectual: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child star{{br}}(Star)&lt;br /&gt;
| [PAWN_nameDef] was well-known throughout [PAWN_possessive] homeworld as a child actor in films and TV shows. [PAWN_possessive] fame put [PAWN_objective] in contact with many different kinds of people, but also tended to get in the way of [PAWN_possessive] education.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child-knave{{br}}(Knave)&lt;br /&gt;
| [PAWN_nameDef] was a child-knave of King Loteric. [PAWN_pronoun] enjoyed the training with wooden sticks and engaging others in close combat. [PAWN_pronoun] adapted quickly to the heat of battle and was good at spreading fire.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] served his lord well, until the king died in an unfortunate accident.&lt;br /&gt;
| Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Circus performer{{br}}(Performer)&lt;br /&gt;
| Growing up in the circus, [PAWN_nameDef] learned a lot of interesting things. More interesting then the balls he juggled were the pockets he picked between shows.&lt;br /&gt;
&lt;br /&gt;
A mistake with some firesticks made him develop a deathly fear of fire.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Class clown{{br}}(Clowny kid)&lt;br /&gt;
| In the ultra-competitive environs of his glitterworld school, [PAWN_nameDef] always offered to play the class clown to diffuse tension.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] developed a sense of social desperation from this, as well as an appreciation for the artistic side of comedy.&lt;br /&gt;
| Social: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Clone-farmed{{br}}(Disposable)&lt;br /&gt;
| Clone children are seeded into organic-rich wombvats and rapidly grown in a simmed universe. They're harvested later, sometimes for food, sometimes for organs, sometimes for workers - but they're always called 'Disposable'. &lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Coliseum cleaner{{br}}(Cleaner)&lt;br /&gt;
| During the 'Inner Destrian War' fallout, [PAWN_possessive] parents were captured and [PAWN_pronoun] was born into a life of slavery. Forced to clean coliseums after bloody battles for money. Watching, waiting, and learning. Coliseums were the only thing [PAWN_pronoun] ever knew. One night while cleaning the coliseum, [PAWN_possessive] family was murdered.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Caring{{br}}Firefighting{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Colony kid{{br}}(Colony kid)&lt;br /&gt;
| [PAWN_nameDef] was born the child of two doctors in a small colony. Because of [PAWN_possessive] parents, [PAWN_pronoun] was always interested in science and medicine.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] never really got along with other children, and as a result became withdrawn and unsociable.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Coma child{{br}}(Coma child)&lt;br /&gt;
| A childhood accident put [PAWN_nameDef] into a coma. [PAWN_pronoun] didn’t wake up until [PAWN_pronoun] was in [PAWN_possessive] late teens. [PAWN_possessive] body never recovered from the years of inactivity, but people tend to take pity on [PAWN_objective] when they hear [PAWN_possessive] story.&lt;br /&gt;
| Social: {{+|4}}&amp;lt;/br&amp;gt;Construction: {{--|2}}&amp;lt;/br&amp;gt;Mining: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Commoner heir{{br}}(Heir)&lt;br /&gt;
| [PAWN_nameDef] was a street urchin on a feudal steamworld.&lt;br /&gt;
&lt;br /&gt;
After [PAWN_pronoun] tried to steal food from the palace, the emperor, desperate to secure an heir, took [PAWN_objective] in and groomed [PAWN_objective] to be next in line for the throne.&lt;br /&gt;
| Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Computer geek{{br}}(Geek)&lt;br /&gt;
| [PAWN_nameDef] spent most of [PAWN_possessive] childhood on [PAWN_possessive] computer, typing away, never knowing when to get up and eat.&lt;br /&gt;
&lt;br /&gt;
He had a very narrow interest: hacking cryptobiotic safety protocols.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Animals: {{+|2}}&lt;br /&gt;
| Social{{br}}Cooking{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Construction grunt{{br}}(Builder)&lt;br /&gt;
| Growing up in his father's lab, Jackson was given the life of an intellectual elite. He got everything he desired, and price was never an object.&lt;br /&gt;
&lt;br /&gt;
However Jackson did not partake in the luxury given to him. Instead, he pursued more physical, and - in his father's eyes - lower-class jobs.  &lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Convent child{{br}}(Illicit)&lt;br /&gt;
| The child of an illicit affair, [PAWN_nameDef] was bought up by nuns in a medieval convent. [PAWN_pronoun] learned the value of hard work and submission, but was taught that technology is heretical.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&lt;br /&gt;
| Intellectual{{br}}Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Core dilettante{{br}}(Dilettante)&lt;br /&gt;
| Candice spent her formative years on a glitterworld in the core region, where she and her friends pursued lives of idle pleasure.&lt;br /&gt;
&lt;br /&gt;
As she grew up, she began to find the life of ease unfulfilling. She decided to look for a more challenging path.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Core world student{{br}}(Student)&lt;br /&gt;
| Born a male named Alex, Alyssa didn't fit in well with the other boys. When very young, she preferred creative pursuits, such as crafting jewelry, over sports. She felt she had the wrong body. Luckily, her family and friends supported her sex reassignment; as a teen, she underwent surgery to become a female.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{--|1}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Cooking{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corp student{{br}}(Student)&lt;br /&gt;
| De Dion was bred to become an executive officer for the large space trading corporation that owned his home planet. His family had been working for that corporation for seven generations.&lt;br /&gt;
&lt;br /&gt;
At age six, [PAWN_pronoun] started to study at the corporate academy, where he learned to become a loyal follower and a ruthless executive.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corp-bred student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] was bred to become an executive for the space exploration corporation that owned his home planet. [PAWN_possessive] family had been working for that corporation for four generations.&lt;br /&gt;
&lt;br /&gt;
At age five, [PAWN_pronoun] enrolled at the corporate academy where he learned loyalty and ruthlessness. [PAWN_nameDef] excelled in finding diplomatic solutions where others would need violence.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|7}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Violent{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corporate slave{{br}}(Soldier)&lt;br /&gt;
| [PAWN_nameDef] grew up in a colony owned by a large glitterworld corporation. All children had virtual reality devices attached by force, and were raised in a brutal digital world.&lt;br /&gt;
&lt;br /&gt;
Constantly forced to fight others for the entertainment of the wealthy, gunplay and tactics became the center of [PAWN_nameDef]'s universe.&lt;br /&gt;
| Plants: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Animals: {{--|2}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Country child{{br}}(Hick kid)&lt;br /&gt;
| [PAWN_nameDef] was raised up to fear God and love [PAWN_possessive] country. [PAWN_pronoun] was a genuine backwoods kid. [PAWN_pronoun] always worked hard to earn respect rather than demanding it.&lt;br /&gt;
| Cooking: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cow farmer{{br}}(Farmer)&lt;br /&gt;
| [PAWN_nameDef] grew up on a rim world, under the tyranny of [PAWN_possessive] father, who forced [PAWN_objective] to work every day on the farm. [PAWN_pronoun] dreamed of escaping [PAWN_possessive] father and exploring the universe.&lt;br /&gt;
&lt;br /&gt;
One day, when the trade ship was overhead, [PAWN_pronoun] stowed away among the goods in the launch pods, and escaped into space.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Animals: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Crime boss' child{{br}}(Crime kid)&lt;br /&gt;
| [PAWN_nameDef] was adopted child of a notorious crime boss. [PAWN_pronoun] was taught all facets of the family business, from smuggling to inventive ways of killing.&lt;br /&gt;
&lt;br /&gt;
When the family was attacked, [PAWN_possessive] father ordered [PAWN_objective] to hide in a secret longsleep crypt.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cult child{{br}}(Cult kid)&lt;br /&gt;
| [PAWN_nameDef] was born into a powerful cult which shunned advanced technology and believed that all illness could be cured by cleansing the soul through sacred art.{{br}}After [PAWN_possessive] first glimpse of the outside world, [PAWN_pronoun] decided to run away.&lt;br /&gt;
| Medicine: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|5}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Data decoder{{br}}(Decoder)&lt;br /&gt;
| Born on a glitterworld, [PAWN_nameDef] was very interested  in the process of documenting information, and quickly became senior glitterpedia recorder.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was effective at self-study, but [PAWN_pronoun] was lacked in social experiences.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Dedicated student{{br}}(Student)&lt;br /&gt;
| The child of a wealthy manufacturer, [PAWN_nameDef] was pampered from an early age. [PAWN_pronoun] developed an affinity for reading and art, and a distaste for menial chores.&lt;br /&gt;
&lt;br /&gt;
A revolution brought his father's businesses under state control. Penniless, [PAWN_nameDef] worked hard to complete [PAWN_possessive] education.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Animals{{br}}Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Desert rat{{br}}(Desert rat)&lt;br /&gt;
| [PAWN_nameDef] was born to a tribe of desert ascetics who wandered the endless wastes.&lt;br /&gt;
&lt;br /&gt;
They sought a mythical substance they believed could liberate them from ignorance through psychedelic revelation - and usher in a new period of interstellar peace.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Diplomat's child{{br}}(Diplomat)&lt;br /&gt;
| [PAWN_nameDef] was born in diplomatic family.&lt;br /&gt;
&lt;br /&gt;
Travelling often, [PAWN_pronoun] was home-schooled and saw the world mostly through a computer.&lt;br /&gt;
| Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Artistic: {{+|1}}&lt;br /&gt;
| Violent{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Disaster survivor{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef]'s planet collided with a small moon. Everything he knew as home was destroyed, and his entire family died. [PAWN_pronoun] was left in the ruins to fend for himself.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Disaster survivor{{br}}(Survivor)&lt;br /&gt;
| Steven was uprooted when marauders attacked his family farm, destroying machinery and killing farmhands and beasts alike.&lt;br /&gt;
&lt;br /&gt;
After the death of all he knew, he was left in the ruins to fend for himself.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Discarded youth{{br}}(Discarded)&lt;br /&gt;
| [PAWN_nameDef] grew up isolated on a trash planet. A dumping ground for surrounding glitterworlds, it was a harsh home. As a baby, [PAWN_pronoun] sucked on the tap of a discarded nutrient paste dispenser for comfort.&lt;br /&gt;
&lt;br /&gt;
In these desperate circumstances, against all odds, [PAWN_pronoun] survived - and thrived.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Artistic{{br}}Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Disciplined farmer{{br}}(Farmer)&lt;br /&gt;
| Drew was the younger of two sons on the family farm, a frontier plot that struggled to turn a profit. Drew's father was a strict disciplinarian, constantly at his sons to work harder and keep quiet. Drew burnt his hand making breakfast once and swore to cook only when his life was in danger.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|1}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&lt;br /&gt;
| Social{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Displaced noble{{br}}(Noble)&lt;br /&gt;
| Born on an urbworld to the ruler of three megacities, [PAWN_nameDef]’s prospects looked good - until a violent insurrection overthrew [PAWN_possessive] family. Exile introduced [PAWN_nameDef] to hard work and combat, but some high-born squeamishness remains.&lt;br /&gt;
| Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Dreaded baby{{br}}(Baby dude)&lt;br /&gt;
| [PAWN_nameDef] was found as a baby in a crashed spacecraft. According to the ship's data records, [PAWN_pronoun] invented the nuclear device that powered his ship. Apparently, he also invented the sky and the hamburger, and is said to have fathered a race of tasty golden kittens.&lt;br /&gt;
| Shooting: {{+|1}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Dreamer{{br}}(Dreamer)&lt;br /&gt;
| [PAWN_nameDef] was an expressive child. [PAWN_pronoun] sang often, and made friends very easily, be they young or old, male or female.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] hated fighting, but when made angry, [PAWN_pronoun] could be dangerous. [PAWN_possessive] temper was quick.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Drudge{{br}}(Drudge)&lt;br /&gt;
| [PAWN_nameDef] was never sure what [PAWN_pronoun] wanted to do with [PAWN_possessive] life. [PAWN_pronoun] spent most of [PAWN_possessive] time doing low-wage jobs and wondering what [PAWN_possessive] future would be like.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] entertained himself with space sims and survival games, dreaming of one day being somewhere more interesting.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Drug mule{{br}}(Mule)&lt;br /&gt;
| Raised in an orphanage, [PAWN_nameDef] turned towards the gang life at age ten.&lt;br /&gt;
&lt;br /&gt;
He was exploited by the local gang as a drug mule to traffic &amp;quot;substance F&amp;quot; across rival gang territory. He took a bullet or two.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| Intellectual{{br}}Caring{{br}}Social{{br}}Artistic{{br}}Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Dusty farm hand{{br}}(Farm hand)&lt;br /&gt;
| From the time [PAWN_nameDef] could walk, [PAWN_pronoun] helped take care of the animals and crops that [PAWN_possessive] people tended in their arid homeland.&lt;br /&gt;
&lt;br /&gt;
The work toughened [PAWN_objective], but left little time for intellectual activities.&lt;br /&gt;
 &lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&amp;lt;/br&amp;gt;Animals: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Earth colonist{{br}}(Colonist)&lt;br /&gt;
| [PAWN_nameDef] was born on Earth. As a child, [PAWN_pronoun] was launched into space as part of an interstellar colonization program.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Empath{{br}}(Empath)&lt;br /&gt;
| [PAWN_nameDef] was an incredibly empathetic child, so much that [PAWN_pronoun] was totally overwhelmed by simple social interactions. Once, [PAWN_pronoun] stepped on a bug and felt so guilty [PAWN_pronoun] cried for an hour.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] did try to use a gun one time, but it went very poorly, as the loud noise made [PAWN_objective] flinch uncontrollably.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Violent{{br}}Social{{br}}Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Energetic pop idol{{br}}(Pop idol)&lt;br /&gt;
| Priscilla grew up on a glitterworld, training in rapier arts and singing. She spent several years as an energetic teen pop idol.&lt;br /&gt;
&lt;br /&gt;
However, she decided that the music and modeling industries were not paying her enough attention, so she left.&lt;br /&gt;
| Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Exiled prince{{br}}(Prince)&lt;br /&gt;
| A member of a royal family, [PAWN_nameDef] was exiled for shaming [PAWN_possessive] family.&lt;br /&gt;
&lt;br /&gt;
Living in a foreign land, mostly alone, [PAWN_pronoun] spent most of [PAWN_possessive] time making huts and houses to live in. [PAWN_pronoun] found little time in an average day for enjoyment, and lost all his friends and family.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|1}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Factory worker{{br}}(Worker)&lt;br /&gt;
| Felix grew up in a large factory city on an industrial world.&lt;br /&gt;
&lt;br /&gt;
Since poverty was rampant and food scarce, he worked for whatever wages he could get. This wasn't an easy life, but Felix never shied away from a hard day's work.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Fallen prodigy{{br}}(Prodigy)&lt;br /&gt;
| [PAWN_nameDef] was born on a glitterworld falling into chaos. [PAWN_possessive] father was killed in action.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] struggled for a scholarship at Utmaior Academy and had to prove his right to be there. A child genius, [PAWN_pronoun] was bullied as a charity case and couldn't make friends with the other kids.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farm boy{{br}}(Farm boy)&lt;br /&gt;
| John worked on his family's farm, looking after the animals and treating them when they were injured. Preferring hands-on tasks and the outdoors, he avoided softer jobs that might have kept him cooped up inside.&lt;br /&gt;
&lt;br /&gt;
He enjoyed this lonely work, and tended to stay out of people's way and do his own thing.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farm hand{{br}}(Farm hand)&lt;br /&gt;
| [PAWN_nameDef] was born on a farm on a smaller colony world.&lt;br /&gt;
&lt;br /&gt;
Everything was taken care of by the few members of the farm, including [PAWN_nameDef]. This helped [PAWN_objective] build independence, spirit, and a well-rounded character.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farm kid{{br}}(Farm kid)&lt;br /&gt;
| [PAWN_nameDef] grew up on his family's beef farm. He enjoyed working the fields and taking care of the animals.&lt;br /&gt;
| Plants: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farm mechanic{{br}}(Mechanic)&lt;br /&gt;
| Growing up on a farming planet, [PAWN_nameDef] spent [PAWN_possessive] time learning about the automated machinery that grew and harvested the multitude of crops.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Plants: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farmer boy{{br}}(Farmer)&lt;br /&gt;
| Benjamin's parents died in a fire when he was seven. He grew up on his uncle's farm, plowing fields and doing manual labor.&lt;br /&gt;
&lt;br /&gt;
He could not bear answering questions about his parents, so he replaced social contact with hard work.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Plants: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}Social{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farmer's daughter{{br}}(Farm girl)&lt;br /&gt;
| [PAWN_nameDef] grew up on [PAWN_possessive] parents' vineyard. [PAWN_pronoun] spent [PAWN_possessive] youth exploring the land and making friends with various bugs and insects.&lt;br /&gt;
&lt;br /&gt;
Having heard stories about all the fascinating things out there in the universe, [PAWN_pronoun] always dreamed of venturing out to see it for [PAWN_objective]self.&lt;br /&gt;
| Social: {{--|1}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farmer's son{{br}}(Farmer)&lt;br /&gt;
| Ade spent much of his childhood learning biome farming. In his biome they kept animals to investigate which would cope best in the alien environment.&lt;br /&gt;
&lt;br /&gt;
Due to this, the travel restrictions and oxygen rationing system, he rarely got to meet anyone from outside his family.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{+|1}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Feral child{{br}}(Feral)&lt;br /&gt;
| Abandoned on an animal planet as a small child with nought but a blanket with a name embroidered on it, Felix made himself one with the wilderness.&lt;br /&gt;
&lt;br /&gt;
When he was 13, he encountered a team of mineral surveyors, who &amp;quot;offered&amp;quot; him passage off of the planet.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Intellectual{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Feral child{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef] and his family lived a hard but prosperous lives along with their fellow colonists on a distant rimworld.&lt;br /&gt;
&lt;br /&gt;
One day a group of mechanoids attacked, killing everyone aside from Robert. He then lived alone in the desert until a group of raiders found him.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Feudal farm boy{{br}}(Slave)&lt;br /&gt;
| [PAWN_nameDef] was the son of a medieval farmer, and was expected to follow in his footsteps. He was brought up as a kind, well trained farm boy.&lt;br /&gt;
&lt;br /&gt;
He lived in an unusual feudal kingdom which co-existed with a midworld society which was itself well-known for genetic manipulation.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Feudal lordling{{br}}(Lordling)&lt;br /&gt;
| [PAWN_nameDef] grew up on a feudal world that was part of a multi-planet empire. As the son of a high lord, [PAWN_pronoun] enjoyed many privileges.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned to maneuver in the both the political landscape and in close quarters combat.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Fire-scarred child{{br}}(Scarred)&lt;br /&gt;
| Duster was an active child who lived an uneventful childhood until he fell into a fire and suffered horrific burns to his hands and arms. Although the scars have faded, he can't bear to be in close proximity to fire.&lt;br /&gt;
&lt;br /&gt;
| Mining: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&lt;br /&gt;
| Cooking{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Forest child{{br}}(Forest kid)&lt;br /&gt;
| When [PAWN_pronoun] was a baby, [PAWN_nameDef]'s mother went insane and left [PAWN_objective] in the woods.&lt;br /&gt;
&lt;br /&gt;
Raised by wild people, [PAWN_nameDef] was known for both loving and killing animals.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Foundry apprentice{{br}}(Foundryman)&lt;br /&gt;
| [PAWN_nameDef] grew up as an apprentice in the foundries of an industrial world. This experience gave [PAWN_objective] metalworking skills and strong muscles, but stunted [PAWN_possessive] artistic development.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Freethinker{{br}}(Thinker)&lt;br /&gt;
| [PAWN_nameDef] grew up on a toxic world with tyrannical leaders. While the rest of the population was high on the planet's narcotic exports, [PAWN_pronoun] joined a rebel militia.&lt;br /&gt;
&lt;br /&gt;
After a risky operation against the regime failed, [PAWN_pronoun] fled the planet, staying alive by threatening mutual annihilation with a planetcracker antimatter bomb.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Frightened child{{br}}(Scared)&lt;br /&gt;
| [PAWN_nameDef] grew up with a laundry list of phobias and neuroses. [PAWN_pronoun] feared, among other things, doctors and foodborne pathogens.{{br}}As a result, [PAWN_pronoun] learned to cook and care for [PAWN_objective]self, but many of [PAWN_possessive] fears dog [PAWN_objective] in adulthood.&lt;br /&gt;
| Medicine: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Frontier marshal{{br}}(Marshal)&lt;br /&gt;
| Henry inherited a sense of duty from his father, and began a law enforcement career on his frontier homeworld.&lt;br /&gt;
&lt;br /&gt;
He tried to uphold the law with honor, but the corruption and greed of local government officials often discouraged him.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Galactic page{{br}}(Page)&lt;br /&gt;
| [PAWN_nameDef] served the high admiral of a space fleet. [PAWN_pronoun] learned the ways of court, including etiquette and speechcraft.&lt;br /&gt;
&lt;br /&gt;
In his feudal society, it was considered a great honor to serve a man of such prestige.&lt;br /&gt;
| Social: {{+|6}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}ManualSkilled{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Game fanatic{{br}}(Gamer)&lt;br /&gt;
| [PAWN_nameDef] was a fanatical gamer who learned to survive in virtual reality games.&lt;br /&gt;
&lt;br /&gt;
Once, while attempting to prove [PAWN_possessive] skills in the real world, [PAWN_pronoun] was abducted by a criminal scientist and experimented on. [PAWN_pronoun] escaped, but the experience stayed with him.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gang member{{br}}(Gang kid)&lt;br /&gt;
| [PAWN_nameDef] grew up without parents. [PAWN_possessive] whole life was spent alone, fighting for survival on the streets.&lt;br /&gt;
&lt;br /&gt;
No matter how hard it became to survive, he never gave up.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gang member{{br}}(Ganger)&lt;br /&gt;
| [PAWN_nameDef] grew up homeless on an urbworld. [PAWN_pronoun] was forced to fight and struggle for everything, making [PAWN_objective] hard and ruthless long before adulthood.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] would have stayed in those streets, had [PAWN_pronoun] not been injured in a shootout and had his body confiscated for use by one of the worldwide city's ruling corporations. &lt;br /&gt;
| Plants: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&lt;br /&gt;
| Intellectual{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Glitterworld kid{{br}}(Glit kid)&lt;br /&gt;
| The son of a genetically-engineered &amp;quot;perfect mate&amp;quot; on a glitterworld, Chaz was much more shy, withdrawn and nervous than his parents. [PAWN_pronoun] kept mostly to himself, studying science and medicine and taking on gardening as a hobby. &lt;br /&gt;
&lt;br /&gt;
In [PAWN_possessive] teens, [PAWN_pronoun] ran away from home, seeking a quieter life.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Glitterworld nerd{{br}}(Nerd)&lt;br /&gt;
| [PAWN_nameDef] loved technology from the day [PAWN_pronoun] was born. [PAWN_pronoun] had a mechanoid companion which [PAWN_pronoun] tried to modify when [PAWN_pronoun] was 10.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] obsession with technology meant that [PAWN_pronoun] never appreciated arts or culture.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Glitterworld royal{{br}}(Royalty)&lt;br /&gt;
| [PAWN_nameDef] grew up in a glitterworld royal household. She was groomed from a young age to marry into another planet's royal family.&lt;br /&gt;
&lt;br /&gt;
Unfortunately, her crooked teeth made her undesirable to suitors, so she became bitter and resentful.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! G-nome sculptor{{br}}(Sculptor)&lt;br /&gt;
| [PAWN_nameDef] was engineered in a lab as part of the G-nome Project. He was implanted at birth with encyclopedic knowledge of all aspects of xenobiology.&lt;br /&gt;
&lt;br /&gt;
The G-nome scientists nicknamed him Gizmo and occupied him with sculpting. He developed a love of sculpting gnomes and gnome accessories.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gun kid{{br}}(Gun kid)&lt;br /&gt;
| Growing up in a urbworld, [PAWN_nameDef] never had it easy. Every day was a struggle and pollution, hunger, and gangs of older kids.&lt;br /&gt;
&lt;br /&gt;
In the little space he had to himself, he studied his passion - guns, combat tactics, and war history.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gymnast{{br}}(Gymnast)&lt;br /&gt;
| [PAWN_nameDef] was a professional gymnast at an early age. Thanks to her skills, she was able to leave her homeworld and enroll in a glitterworld university.&lt;br /&gt;
&lt;br /&gt;
Because of the lack of career opportunities in gymnastics, she left the university unemployed and carrying an enormous debt.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hacker kid{{br}}(Hacker)&lt;br /&gt;
| Born on a high-tech world, [PAWN_nameDef] learned hack computers at a young age. &lt;br /&gt;
&lt;br /&gt;
Spending many hours tinkering alone made [PAWN_objective] very good with machines, but very bad with humans.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hacker prodigy{{br}}(Hacker)&lt;br /&gt;
| Wedge was raised as the only child of wealthy surgeons. After being pressured into accepting a medical apprenticeship, he snapped. He seized his inheritance and went underground to learn how to exploit computer networks. He quickly became one of the most feared hackers on his home planet.&lt;br /&gt;
| Intellectual: {{+|7}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| ManualDumb{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Headjack addict{{br}}(Headjacker)&lt;br /&gt;
| Plugged in to the computer via head-jack for days at a time, [PAWN_nameDef] found [PAWN_pronoun] preferred the company of computers to that of people or pets.&lt;br /&gt;
| Plants: {{--|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&lt;br /&gt;
| Social{{br}}Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Help desk worker{{br}}(Help desk)&lt;br /&gt;
| Due to [PAWN_possessive] affinity for technology and desire to help others, [PAWN_nameDef] jumped at the chance to take a job at a help desk.&lt;br /&gt;
&lt;br /&gt;
Unfortunately, the job's soul-crushing after-effects lasted longer than [PAWN_possessive] enthusiasm.&lt;br /&gt;
| Intellectual: {{+|3}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hex-cell artist{{br}}(Artist)&lt;br /&gt;
| [PAWN_nameDef] crafted sculptures from spent hex-cells and traded them to a local museum for food.&lt;br /&gt;
&lt;br /&gt;
After [PAWN_possessive] popularity grew, [PAWN_pronoun] was approached by a pirate and abducted. The pirate kept [PAWN_objective] prisoner and forced [PAWN_objective] to create sculptures for sale.&lt;br /&gt;
| Artistic: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! High baroness{{br}}(Noble)&lt;br /&gt;
| [PAWN_nameDef] was born as low-ranking royalty in a large imperial family.&lt;br /&gt;
&lt;br /&gt;
She was placed In charge of running her home planet from an early age, and learned important political and cultural skills in that role.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|7}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hillbilly prodigy{{br}}(Hillbilly)&lt;br /&gt;
| Born on a cold hillbilly planet inhabited mainly by furred xenohumans, Benjamin grew up to the sound of bar fights and shootouts. Though his childhood was spent playing the banjo and working as a mechanic, his abnormal intelligence made him want something more; he entered medical school at a young age.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! History student{{br}}(Student)&lt;br /&gt;
| As a child, [PAWN_nameDef] spent learned many artistic forms including music and novel writing. As [PAWN_pronoun] grew older, [PAWN_pronoun] began to study legends from [PAWN_possessive] home world - legends of the lizard-like beings at the center of [PAWN_possessive] culture's folklore.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hive world child{{br}}(Hiver)&lt;br /&gt;
| [PAWN_nameDef] had an isolated upbringing in an urbworld hive city. His hatred of heights kept him indoors often, and made him an introverted child.&lt;br /&gt;
&lt;br /&gt;
When [PAWN_pronoun] did go out onto the catwalks of the city, [PAWN_pronoun] enjoyed playing war games, becoming proficient with various simulation weapons.&lt;br /&gt;
| Plants: {{+|1}}&amp;lt;/br&amp;gt;Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hunter scavenger{{br}}(Scavenger)&lt;br /&gt;
| Born to a family of raiders in the mudlands of Vinna, [PAWN_nameDef] survived by scavenging food and resources from nearby settlements with [PAWN_possessive] gang. [PAWN_pronoun] was the most ferocious of the bunch.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Ice planet child{{br}}(Ice child)&lt;br /&gt;
| Growing up on the frozen wastes of an ocean moon, [PAWN_nameDef] only had animals and a few hard-bitten sailors as companions.&lt;br /&gt;
&lt;br /&gt;
The lack of social interaction made him develop a interest in engineering - but he never developed any great fondness for humans. &lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&lt;br /&gt;
| Caring{{br}}Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Iceworld survivor{{br}}(Iceborn)&lt;br /&gt;
| [PAWN_nameDef] was born on an iceworld. Survival depended on staying together and building with nothing.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] got used to the cold. [PAWN_pronoun] never got used to dealing with those strange green things called plants.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Idealistic cadet{{br}}(Cadet)&lt;br /&gt;
| Raised in the military traditions of his forefathers, [PAWN_nameDef] was taught from a young age that he would be a great leader and the hero of the Dichter family.&lt;br /&gt;
&lt;br /&gt;
He excelled at his studies and graduated from the academy with honors.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Imperial student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] studied on an imperial midworld where guns were banned and self-defense study was encouraged. The relative safety allowed [PAWN_objective] to focus on [PAWN_possessive] botanical research.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| Crafting{{br}}Firefighting{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Industrial orphan{{br}}(Orphan)&lt;br /&gt;
| [PAWN_nameDef] never knew [PAWN_possessive] parents. [PAWN_possessive] earliest memories were of drudgery in the mines and workhouses of [PAWN_possessive] industrial world.{{br}}Because of this, [PAWN_pronoun] never received a proper education.&lt;br /&gt;
| Crafting: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Indworld urchin{{br}}(Urchin)&lt;br /&gt;
| [PAWN_nameDef] grew up on the streets of a world in the early stages of its industrial revolution. [PAWN_pronoun] passed [PAWN_possessive] days stealing, begging and tinkering with discarded machine scraps, always on the lookout for a way to escape poverty. &lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Infantry{{br}}(Infantry)&lt;br /&gt;
| Lenka was raised on a world wracked by war.&lt;br /&gt;
&lt;br /&gt;
At an early age, she was shown how to use guns and cruelty to project her will. She later distinguished herself by committing atrocities with more enthusiasm than anyone else.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Joywire addict{{br}}(Addict)&lt;br /&gt;
| [PAWN_nameDef]'s wealthy parents provided everything [PAWN_pronoun] ever wanted. After discovering joywires, [PAWN_pronoun] became obsessed. Once [PAWN_possessive] parents realized what happened, they cut [PAWN_objective] off.&lt;br /&gt;
&lt;br /&gt;
Uncaring and often violent, [PAWN_pronoun] sought [PAWN_possessive] next joywire fix by any means possible.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|6}}&amp;lt;/br&amp;gt;Social: {{--|3}}&lt;br /&gt;
| Intellectual{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Jungle kid{{br}}(Jungle kid)&lt;br /&gt;
| [PAWN_nameDef] was abandoned as a newborn, and grew up among the animals of [PAWN_possessive] homeworld’s dense jungles.&lt;br /&gt;
&lt;br /&gt;
When [PAWN_pronoun] was a teenager, a traveling doctor found [PAWN_objective] injured near a road, hissing and meowing. He rescued [PAWN_objective] and took [PAWN_objective] on as an apprentice.&lt;br /&gt;
| Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Junkyard mechanic{{br}}(Mechanic)&lt;br /&gt;
| Left for dead at a young age, [PAWN_nameDef] was rescued by an old man who ran an urbworld junkyard. The old man forced [PAWN_nameDef] to do dangerous, demanding work. &lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] became very familiar with machines, but [PAWN_pronoun] grew up with almost no other experiences.&lt;br /&gt;
&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Kid scientist{{br}}(Scientist)&lt;br /&gt;
| Born into an influential family, [PAWN_nameDef] received the best education money could buy. Her intellect soon proved to be superior to many. However, her lack of empathy quickly put her at odds with her teachers and her parents.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| ManualDumb{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Killer{{br}}(Killer)&lt;br /&gt;
| [PAWN_nameDef] was a bloodlusting child. Villagers thought her the product of a snake demon and human coupling.&lt;br /&gt;
&lt;br /&gt;
After watching how her human father betrayed and murdered her mother, she longed to see how many more humans she could get to fall into her hands.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Lab-grown child{{br}}(Lab-grown)&lt;br /&gt;
| [PAWN_nameDef] was born in a laboratory as part of a altruistic but failed attempt to create a new class of human.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] childhood was filled with books and one-on-one tutoring. He was awkward, shy, and naive to the true nature of humanity.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Labor camp orphan{{br}}(Orphan)&lt;br /&gt;
| [PAWN_nameDef] lost her parents in an industrial accident and grew up in an orphans' labor camp. The camp overseers worked their charges mercilessly - but at least she was clothed and fed.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|4}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Logical child{{br}}(Logic kid)&lt;br /&gt;
| [PAWN_pronoun] preferred logical activities like computers and was completely useless at art.&lt;br /&gt;
&lt;br /&gt;
Being awkward in social situations, [PAWN_possessive] friends were few but close.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mad scientist{{br}}(Scientist)&lt;br /&gt;
| [PAWN_nameDef] grew up miserable on the plains of a neolithic planet. He found the strength to fight under the teachings of an old, broken scientist.&lt;br /&gt;
&lt;br /&gt;
He quickly learned to play with people's fears, and was nicknamed 'mad scientist'.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Marine cadet{{br}}(Cadet)&lt;br /&gt;
| [PAWN_nameDef] was in a planetary marine cadet program.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was kicked out for shooting an officer. It was never established whether this was an accident.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mechanoid hacker{{br}}(Mechacker)&lt;br /&gt;
| The only son of a well respected mechanoid inventor, [PAWN_nameDef] had access to the materials to subvert and modify [PAWN_possessive] father's creations.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] used drugs to increase [PAWN_possessive] productivity. Unfortunately, the side-effects included persistent delusions of being mechanized, which limited [PAWN_possessive] social life.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mechanoid nerd{{br}}(Mechanerd)&lt;br /&gt;
| [PAWN_nameDef] grew up in an urbworld as the only child of a pair of mechanoid designers.&lt;br /&gt;
They encouraged [PAWN_possessive] interest in the machines. Eventually, [PAWN_pronoun] became obsessed with building [PAWN_possessive] own.&lt;br /&gt;
&lt;br /&gt;
Unfortunately this also lead to [PAWN_objective] being a loner as [PAWN_pronoun] prefered technical books to friends.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medical assistant{{br}}(Medic)&lt;br /&gt;
| [PAWN_nameDef] was born during a catastrophic war in which both sides used napalm extensively. [PAWN_pronoun] grew up helping [PAWN_possessive] parents in an infirmary, treating the cascade of horrific burns from the battlefields. [PAWN_pronoun] was left with a lifelong fear of fire.&lt;br /&gt;
| Medicine: {{+|5}}&lt;br /&gt;
| Firefighting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medical helper{{br}}(Med helper)&lt;br /&gt;
| [PAWN_nameDef] traveled between rim worlds with [PAWN_possessive] family. [PAWN_nameDef]'s mother, a renowned doctor, often delivered lectures from the hull of their retrofitted cargo/medical ship.&lt;br /&gt;
&lt;br /&gt;
Sometimes, the family took on difficult long-term medical work with especially needy patients, and [PAWN_nameDef] helped where he could.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medical student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] grew up on a glitterworld in a family of doctors and chose to maintain the tradition.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] had few friends, but got along with [PAWN_possessive] siblings very well.&lt;br /&gt;
| Social: {{+|1}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medical student{{br}}(Student)&lt;br /&gt;
| Born into a long line of doctors, [PAWN_nameDef] was tutored in all fields of medicine, from herbal ointments to the modern synthetic drugs. [PAWN_pronoun] also picked up a healthy disdain for lower class work.&lt;br /&gt;
| Construction: {{--|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Hauling{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval lordling{{br}}(Lordling)&lt;br /&gt;
| [PAWN_nameDef] was a minor noble in an old kingdom on a medieval world. [PAWN_pronoun] grew up in a manor made of stone, served by bowing lowerclassmen.{{br}}Such a life teaches no technical skills and instils a lifelong aversion to manual labor - but [PAWN_nameDef] learned early the ways of social manipulation.&lt;br /&gt;
| Social: {{+|4}}&amp;lt;/br&amp;gt;Construction: {{--|1}}&amp;lt;/br&amp;gt;Mining: {{--|1}}&amp;lt;/br&amp;gt;Plants: {{--|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval plower{{br}}(Plower)&lt;br /&gt;
| [PAWN_nameDef] lived on a planet where kings and queens ruled with little regard for the peasants beneath them. [PAWN_possessive] family owned a large farm, but the king took most of the food it produced. This left [PAWN_nameDef]'s family poor, and unable to pay for [PAWN_possessive] education. Instead, [PAWN_pronoun] was required to work the fields with [PAWN_possessive] parents, and never had time to practice creativity.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|5}}&amp;lt;/br&amp;gt;Intellectual: {{--|1}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval slave{{br}}(Slave)&lt;br /&gt;
| [PAWN_nameDef] grew up pulling carts and digging holes on a medieval world. Simple manual labor is [PAWN_possessive] oldest companion - along with the master's lash.{{br}}[PAWN_pronoun] didn't learn to read until age nine.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Construction: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval slave{{br}}(Slave)&lt;br /&gt;
| Born into slavery, Soren never knew his parents. He eventually escaped from his masters and boarded a military cargo ship, where he was pressed into military service.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{+|1}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval squire{{br}}(Squire)&lt;br /&gt;
| William grew up on a medieval planet as a knight in training. He trained directly under the king's war adviser for most of his youth, and learned to fight with a sword and shield.&lt;br /&gt;
| Construction: {{--|1}}&amp;lt;/br&amp;gt;Mining: {{--|1}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&lt;br /&gt;
| Cooking{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval thief{{br}}(Thief)&lt;br /&gt;
| [PAWN_nameDef] grew up poor and hungry on a medieval planet, learning to fend for himself.&lt;br /&gt;
&lt;br /&gt;
At first, he only took what he needed. Then he learned to take what he wanted.&lt;br /&gt;
| Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mercenary recruit{{br}}(Mercenary)&lt;br /&gt;
| Descended from a long line of off-world mercenaries, [PAWN_nameDef] grew up in a busy trading hub.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive]'s interest in the foreign goods at the market often distracted him from his chores and training.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mercenary recruit{{br}}(Recruit)&lt;br /&gt;
| Born to a long line of off-world mercenaries, [PAWN_nameDef] grew up in a busy trading hub. At a young age, [PAWN_pronoun] was recruited into one of the mercenary crews.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Midworld cadet{{br}}(Cadet)&lt;br /&gt;
| Growing up on a high-tech midworld with a flourishing space transit industry, [PAWN_nameDef] wished to leave for the stars and live among the growing spacer class.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] excelled in [PAWN_possessive] studies, and gained entry to [PAWN_possessive] homeworld's most prestigious naval academy.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Midworld geek{{br}}(Geek)&lt;br /&gt;
| [PAWN_nameDef] grew up in a quiet suburban neighborhood. He was never a master of social interaction, but his interest in computers blossomed into a true talent at an early age.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Social: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Midworld loner{{br}}(Loner)&lt;br /&gt;
| [PAWN_nameDef] was born on a peaceful, unimportant midworld.&lt;br /&gt;
&lt;br /&gt;
While [PAWN_pronoun] had a few friends, [PAWN_pronoun] preferred to spend [PAWN_possessive] time in solitude, tinkering on [PAWN_possessive] autocycle while listening to netcasts, or plinking at plastic soldiers with a new rifle [PAWN_pronoun] had just put together.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Midworld sketcher{{br}}(Sketcher)&lt;br /&gt;
| [PAWN_nameDef] was born into a loving but poor family.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] discovered he had an artistic talent which he inherited from his father. [PAWN_possessive] mother taught him the benefits of hard work and determination. As he grew older, [PAWN_nameDef] developed a fascination with technology and military history.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Militant child{{br}}(Soldier)&lt;br /&gt;
| [PAWN_nameDef]'s military family forced him to train in hand-to-hand combat and fighting tactics.&lt;br /&gt;
&lt;br /&gt;
In his own time, he built small inventions. This sharpened his mind.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Military cadet{{br}}(Cadet)&lt;br /&gt;
| Orphaned as a child, [PAWN_nameDef] was sent to a secret military school on a harsh deadworld.&lt;br /&gt;
&lt;br /&gt;
Taking quickly to firearms and survival training, [PAWN_pronoun] graduated with honor, transitioning into a leadership position in covert operations.&lt;br /&gt;
| Plants: {{--|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{--|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Military child{{br}}(Military)&lt;br /&gt;
| [PAWN_nameDef] grew up in a family with a rich military background. [PAWN_possessive] teenage years were spent traveling system to system wherever [PAWN_possessive] parents were deployed.&lt;br /&gt;
&lt;br /&gt;
Following the tradition of [PAWN_possessive] family, [PAWN_pronoun] enlisted at the earliest possible age.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Military recruit{{br}}(Recruit)&lt;br /&gt;
| [PAWN_nameDef] was born on a midworld run by an intensely militaristic dictatorship.&lt;br /&gt;
&lt;br /&gt;
From a young age, [PAWN_pronoun] was trained to be a good soldier. They taught him how to use a gun and how to fight with melee weapons.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Military trainee{{br}}(Soldierboy)&lt;br /&gt;
| [PAWN_nameDef] was raised on a military base in the Xennoa system. [PAWN_pronoun] was exposed to many different strenuous activities and grew strong at an early age. [PAWN_pronoun] also learned negotiation, medical, and military tactics.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Music idol{{br}}(Music idol)&lt;br /&gt;
| [PAWN_nameDef] was the only daughter of a powerful company president. [PAWN_possessive] beautiful appearance led to a career as a music idol.&lt;br /&gt;
&lt;br /&gt;
When [PAWN_possessive] mother died, [PAWN_nameDef] could not bear [PAWN_possessive] father's loneliness, and became his sexual companion.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Music lover{{br}}(Musician)&lt;br /&gt;
| As a child, [PAWN_nameDef] had a talent for playing musical instruments and singing. [PAWN_pronoun] was given expert training and loved to perform in recitals and concerts, though the lavish praise [PAWN_pronoun] received made [PAWN_objective] a little self-obsessed.&lt;br /&gt;
| Social: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mute{{br}}(Mute)&lt;br /&gt;
| [PAWN_nameDef] was greatly affected by a traumatic event early in [PAWN_possessive] life. For many years [PAWN_pronoun] refused to speak to people, preferring instead to play with [PAWN_possessive] household's numerous pets.&lt;br /&gt;
| Animals: {{+|5}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Naturalist{{br}}(Naturalist)&lt;br /&gt;
| Mitch grew up on a backwater planet with minimal education. He had to hunt and grow food to survive.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] family's home was frequently raided for food by scavengers. This made Mitch very suspicious and slow to trust anyone he doesn't know.&lt;br /&gt;
| Plants: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Navy pathfinder{{br}}(Pathfinder)&lt;br /&gt;
| [PAWN_nameDef] was raised and trained by a group of military explorers dedicated to charting pathways through deep space and on remote planets.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Nerd{{br}}(Nerd)&lt;br /&gt;
| [PAWN_nameDef] was curious about everything. While other kids played tag in the suburbs of their industrial city, [PAWN_nameDef] read every book he could find about technology, robots, and weapons - whatever looked coolest.&lt;br /&gt;
&lt;br /&gt;
His strong French accent kept him from making real friends.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! New age duelist{{br}}(Duelist)&lt;br /&gt;
| [PAWN_nameDef] was fascinated with combat. [PAWN_possessive] parents traveled often, so [PAWN_pronoun] was able to sample many different fighting styles, from 76th-wave jujutsu to the infamous 'urbworld-style' karate.&lt;br /&gt;
&lt;br /&gt;
A polite child, most fighters accepted [PAWN_possessive] requests for training - but moving around often without finishing a tutelage made [PAWN_objective] lazy.&lt;br /&gt;
| Shooting: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Animals: {{--|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Noble ward{{br}}(Ward)&lt;br /&gt;
| [PAWN_nameDef] was adopted by a prominent noble family after being left on their doorstep by [PAWN_possessive] mother.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] quickly learned secrets that passed between the nobles like cheap wine - of worlds beyond her own, languages, cultures and technologies both new and old.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{--|1}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| ManualDumb{{br}}Firefighting{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Officer cadet{{br}}(Cadet)&lt;br /&gt;
| From a young age, Bashkire trained to be a leader of men. He enrolled in the Vanu Defense College when he was a boy and became proficient with a range of weapons and survival techniques.&lt;br /&gt;
| Plants: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|1}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Offworld recruit{{br}}(Recruit)&lt;br /&gt;
| [PAWN_nameDef] was born an raised in an offworld soldier growth facility. From a very young age, [PAWN_pronoun] was taught close-quarters combat tactics, aggression, and how to survive on distant planets.&lt;br /&gt;
&lt;br /&gt;
One of the best, [PAWN_nameDef] was eventually chose to enter the orbital-deployment shock troop corps.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Optimistic child{{br}}(Optimistic)&lt;br /&gt;
| Kees was blessed with loving parents and a pleasant midworld life. He was an  optimistic and sociable kid who loved making friends and listening to their stories. His imagination would run wild with ideas and questions.&lt;br /&gt;
| Social: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Organ farm{{br}}(Organ farm)&lt;br /&gt;
| [PAWN_nameDef] was raised in an illegal underground organ farm. [PAWN_possessive] body was used to grow organic implants for wounded mercenaries. Though [PAWN_possessive] upbringing has left [PAWN_objective] haunted, it has also given [PAWN_objective] a unique understanding of human biology.&lt;br /&gt;
| Medicine: {{+|5}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Orphan of war{{br}}(Orphan)&lt;br /&gt;
| [PAWN_nameDef] lost his family and home early in life. His life became emotionally hollow, but his painful memories drove him to survive.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] took several jobs, but never achieved more than a basic education.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|3}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Orphan{{br}}(Orphan)&lt;br /&gt;
| Born in a brothel on a harsh world, [PAWN_nameDef] never really had a childhood. [PAWN_pronoun] did odd jobs to survive, and became distant from others.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Social{{br}}Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Orphan{{br}}(Orphan)&lt;br /&gt;
| Born on a deep space station, [PAWN_nameDef] was orphaned at a young age. In the orphanage, he stood up for the weaker kids and fought off the bullies.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Crafting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Orphan{{br}}(Orphan)&lt;br /&gt;
| Left alone in the world without parents, Kevin did the best he could to adapt.&lt;br /&gt;
&lt;br /&gt;
Having to take care both of himself and younger kids at the orphanage, he learned a lot about humans and how to interact with them.&lt;br /&gt;
| Social: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pampered{{br}}(Pampered)&lt;br /&gt;
| Born on a decadent glitterworld, [PAWN_nameDef] was given every expensive toy.&lt;br /&gt;
&lt;br /&gt;
This pampered lifestyle caused [PAWN_objective] to miss many basic life lessons. [PAWN_pronoun] developed a special aversion to cooking, and always ordered the staff to do the kitchen work.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{--|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pet keeper{{br}}(Pet keeper)&lt;br /&gt;
| [PAWN_nameDef] spent most of [PAWN_possessive] childhood tending the animals [PAWN_pronoun] had bought or rescued.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] saw beauty in natural things more than fabricated objects, and chose the company of [PAWN_possessive] animals over that of [PAWN_possessive] peers.&lt;br /&gt;
| Medicine: {{+|1}}&amp;lt;/br&amp;gt;Animals: {{+|6}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Philosopher{{br}}(Thinker)&lt;br /&gt;
| [PAWN_nameDef] was a student on a glitterworld. [PAWN_pronoun] had a hard time in school, since the other kids thought [PAWN_objective] rather strange.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] always maintained a distance from these events, being continuously surprised by the many interesting and awkward ways life can go.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pickpocket{{br}}(Pickpocket)&lt;br /&gt;
| Orphaned and abandoned on the tumultuous streets of his polluted, teeming homeworld, [PAWN_nameDef] survived by deft hand and fleet foot. A natural born thief and trickster, [PAWN_pronoun] rose to prominence early, running the notorious and violent urchin gang 'Doomben Rats'.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pickpocket{{br}}(Thief)&lt;br /&gt;
| [PAWN_nameDef] witnessed [PAWN_possessive] parents' murder at a young age. With no guidance, [PAWN_pronoun] had to fend for [PAWN_objective]self any way possible. Joining a small group of misfits [PAWN_pronoun] did whatever was necessary to survive.&lt;br /&gt;
| Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|1}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pilot fan{{br}}(Pilot fan)&lt;br /&gt;
| [PAWN_nameDef]'s father was a starfighter pilot, and [PAWN_pronoun] always idolized the old man.&lt;br /&gt;
&lt;br /&gt;
From a young age, [PAWN_pronoun] collected pilot memorabilia and studied pilot books, preparing to join the deep space navy and follow in [PAWN_possessive] father's footsteps.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pit gladiator{{br}}(Gladiator)&lt;br /&gt;
| [PAWN_nameDef] was enslaved as a child and forced to fight creatures and other people in an underground fighting arena.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] showed an affinity for the sport, and eventually bought his own freedom. However, his time in the pits never brought him much intellectual stimulation.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pizza lover{{br}}(Pizza kid)&lt;br /&gt;
| [PAWN_nameDef] loved boomrat pizza intensely. Rarely eating anything else, he was prone to bad health and low oxygen uptake.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] loved bashing in the skulls of random creatures to see what was inside.&lt;br /&gt;
| Melee: {{+|5}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Plague child{{br}}(Child)&lt;br /&gt;
| Born on a world wracked by plague, both of [PAWN_nameDef]'s parents were doctors. &lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] was raised in reverse-quarantine, under the Hippocratic oath. [PAWN_pronoun] experienced little social interaction. However, [PAWN_pronoun] gained a lot of medical experience assisting in treatments.&lt;br /&gt;
| Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|5}}&lt;br /&gt;
| Violent{{br}}Animals{{br}}Artistic{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Plague prodigy{{br}}(Prodigy)&lt;br /&gt;
| [PAWN_nameDef]'s childhood was cut short when a mysterious plague hit his homeworld.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] watched his friends die, and his compassion for humanity died with them. In its place a new thirst for knowledge emerged.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Plague survivor{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef] watched as a mysterious plague spread through [PAWN_possessive] town, killing [PAWN_possessive] family and friends.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned some medicine from watching the plague doctors, but was mentally scarred by the ordeal.&lt;br /&gt;
| Social: {{--|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Poor kid{{br}}(Poor kid)&lt;br /&gt;
| Abandoned by his parents, [PAWN_nameDef] learned how to survive by himself before he was ten years old.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|1}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Power-mad scholar{{br}}(Scholar)&lt;br /&gt;
| &amp;quot;Knowledge is power.&amp;quot; These words sparked something within [PAWN_nameDef], and came to form his core drive. When not entombed within libraries, [PAWN_pronoun] would take things apart to see first-hand how they worked, with little regard for the border between mechanical and organic.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Privileged child{{br}}(Privileged)&lt;br /&gt;
| Born to an upper-class family, [PAWN_nameDef] grew up with all the best things - the best education, the best social contacts, and of course the best technology money could buy.&lt;br /&gt;
&lt;br /&gt;
Unfortunately, living in such decadence left [PAWN_nameDef] rather spoiled when it came to labor.&lt;br /&gt;
| Social: {{+|3}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Privileged prodigy{{br}}(Prodigy)&lt;br /&gt;
| [PAWN_nameDef] was recognized as gifted early in his glitterworld upbringing. Luckily, [PAWN_possessive] family was in a position to cultivate that genius through advanced education. [PAWN_possessive] training included science, leadership, and the arts.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}Violent{{br}}Hauling{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Prodigal student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] was a faithful student, and was dedicated to learning anything and everything he could about humanity and its creations.&lt;br /&gt;
&lt;br /&gt;
While [PAWN_pronoun] was shunned as a nerd, [PAWN_pronoun] didn't mind. [PAWN_pronoun] hoped for a brighter future.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Professional gamer{{br}}(Pro gamer)&lt;br /&gt;
| [PAWN_nameDef] was obsessed with video games since his hands were big enough to grip a joystick.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] achieved middling finishes in several local tournaments during the 16-bit era. Nobody noticed when he retired early in his teenage years.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Project subject{{br}}(Subject)&lt;br /&gt;
| [PAWN_nameDef] was picked by government agents for the mysterious &amp;quot;Frame Project&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Due to memory blockages, however, he remembers very little about this project or its true agenda - only that there were few survivors.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Psychology student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] researched new religions and traditions and often dreamt of distant stars. &lt;br /&gt;
&lt;br /&gt;
His dreams prompted him to ask what lay beyond the lights in the sky.&lt;br /&gt;
| Social: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Punk{{br}}(Punk)&lt;br /&gt;
| [PAWN_nameDef] spent his childhood selling knockoff cigarettes to 15-year-olds. The cigarettes were often full of grass clippings.&lt;br /&gt;
| Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pyro assistant{{br}}(Assistant)&lt;br /&gt;
| On an industrial world, [PAWN_nameDef] learned early that if [PAWN_pronoun] wanted to eat, [PAWN_pronoun] had to work. So work [PAWN_pronoun] did. Kids fit in places adults can't, and where [PAWN_pronoun] was from, the safety laws were quite flexible.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was always a bit of a pyromaniac, and was banned from the kitchen after an unfortunate incident.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Cooking{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pyromaniac{{br}}(Pyro)&lt;br /&gt;
| From an early age, [PAWN_nameDef] had an unhealthy fascination with fire. [PAWN_pronoun] would set refuse heaps ablaze and become so entranced by the flames [PAWN_pronoun] would absent-mindedly burn [PAWN_objective]self.{{br}}One day while playing with matches, [PAWN_pronoun] carelessly burned down [PAWN_possessive] home.&lt;br /&gt;
| Social: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| Firefighting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Quiet nerd{{br}}(Nerd)&lt;br /&gt;
| [PAWN_nameDef] was raised by doting parents on a midworld. Instead of playing with other children, [PAWN_pronoun] read books voraciously.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was not particularly rugged, and struggled with physical labor.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Ranger child{{br}}(Ranger kid)&lt;br /&gt;
| [PAWN_nameDef] was raised in a forest. [PAWN_possessive] father taught [PAWN_objective] to hunt and live off the land, so that [PAWN_pronoun] could live without the need of others when father died.&lt;br /&gt;
&lt;br /&gt;
Accustomed to manual labor and with an intuitive mind, [PAWN_nameDef] could survive weeks alone.&lt;br /&gt;
| Mining: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Firefighting{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Rebel child{{br}}(Rebel)&lt;br /&gt;
| [PAWN_nameDef] was born under authoritarian rule. Despite intense oppression from family and community, she never gave up fighting for her dignity and her freedom.&lt;br /&gt;
&lt;br /&gt;
She was often put into hopeless situations where even family would try to terrorize her into propriety. She learned to trust no one.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Rebel slave{{br}}(Rebel)&lt;br /&gt;
| [PAWN_nameDef] was born into corporate slavery and raised to perform menial tasks for minimum pay. [PAWN_pronoun] was just another cog in the machine. &lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] found his freedom by joining a rebel organization whose goal was to break free from their corporate masters.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Plants: {{+|1}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Rebel student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] grew up in a modest but privileged family who encouraged him to play chess and shoot skeet at a young age.&lt;br /&gt;
&lt;br /&gt;
As a bored student, [PAWN_pronoun] found joy in challenging his teachers about the contradictions between his planet's official values and their government's policies.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Rebel writer{{br}}(Writer)&lt;br /&gt;
| Early on, [PAWN_nameDef] developed a talent for writing. [PAWN_pronoun] was soon writing a popular online journal - anonymously, to hide [PAWN_possessive] age - on topics ranging from bioethics to political theory and xenosociology.&lt;br /&gt;
| Intellectual: {{+|7}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Reclusive prodigy{{br}}(Prodigy)&lt;br /&gt;
| Growing up on a flourishing glitterworld afforded Holly the chance to fully devote herself to her studies.&lt;br /&gt;
&lt;br /&gt;
Having taken a keen interest in genetic modification and neural augmentation from a young age, she had little time (or desire) for a regular childhood.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Re-educated youth{{br}}(Reeducated)&lt;br /&gt;
| [PAWN_nameDef] lived on a midworld where the government cared about the youth. &lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was one of the many children who were taken from their parents and forced into the new education programs.&lt;br /&gt;
| Social: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Rich boy{{br}}(Rich boy)&lt;br /&gt;
| [PAWN_nameDef] grew up on a midworld with loving parents, a cute pet and a lot of money - but no friends.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was always told by his father that 'those peasants just want your money'. So, [PAWN_pronoun] spent most of his time alone, or fighting other kids.&lt;br /&gt;
| Melee: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| Caring{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Ritual child{{br}}(Sacrifice)&lt;br /&gt;
| Born with a special mark on [PAWN_possessive] neck, [PAWN_nameDef]'s tribe chose to sacrifice [PAWN_objective] in a blood ritual. They left [PAWN_objective] in the forest to die. A pack of arctic wolves found and adopted [PAWN_objective].&lt;br /&gt;
&lt;br /&gt;
Over time, [PAWN_pronoun] learned to make tools to hunt with the pack.&lt;br /&gt;
| Intellectual: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Scavenger{{br}}(Scavenger)&lt;br /&gt;
| [PAWN_nameDef] grew up in one of the few remaining cities on a world ravaged by nuclear war.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned to survive on [PAWN_possessive] own in this post-apocalyptic wasteland by scavenging for technology and supplies.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Schoolyard outcast{{br}}(Outcast)&lt;br /&gt;
| [PAWN_nameDef] had a modest but proper upbringing. Despite a good family background and plenty of support, [PAWN_pronoun] struggled to make friends and was often bullied. [PAWN_pronoun] learned to work or play alone, and avoided socializing to avoid conflict.&lt;br /&gt;
&lt;br /&gt;
When conflict did arise, [PAWN_nameDef] would retaliate violently.  &lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Science prodigy{{br}}(Prodigy)&lt;br /&gt;
| [PAWN_nameDef] was top of her class in chemistry, physics, exobiology, astronomy and opera.&lt;br /&gt;
&lt;br /&gt;
An unfortunate lab accident left her with a deathly fear of fire.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Violent{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Scout{{br}}(Scout)&lt;br /&gt;
| Born to colonial administrators from a small imperial power, [PAWN_nameDef] was enrolled in a youth program that taught military scouting skills.{{br}}[PAWN_pronoun] learned to survive in the wilderness, to obey, and not to ask questions.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&amp;lt;/br&amp;gt;Construction: {{+|1}}&lt;br /&gt;
| Artistic{{br}}Intellectual{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Scout{{br}}(Scout)&lt;br /&gt;
| Nate loved being outdoors. His parents enrolled him in a program that taught military scouting skills. He thrived when he was left alone in the wilderness.&lt;br /&gt;
&lt;br /&gt;
Due to this upbringing, however, [PAWN_nameDef] did not learn the basic technological skills that are taken for granted by many others.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Scrounger{{br}}(Scrounger)&lt;br /&gt;
| [PAWN_nameDef] would dive into junk mounds in search for valuables and items of interest.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was never bothered by the stink, or dangers that could leave [PAWN_objective] wounded for weeks.&lt;br /&gt;
| Mining: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sentimental child{{br}}(Nice kid)&lt;br /&gt;
| [PAWN_nameDef] was a nice child. When anybody had a problem, [PAWN_pronoun] tried to fix it. But, being a child, [PAWN_pronoun] did not always succeed. This hurt his sensitive soul.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] dreamed of being a soldier who fights raiders and aliens.&lt;br /&gt;
| Social: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Shelter child{{br}}(Shelterkid)&lt;br /&gt;
| [PAWN_nameDef] grew up in a shelter deep beneath a toxic world. [PAWN_pronoun] received a comprehensive education, but had no opportunity to do physical labour.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Construction: {{--|2}}&amp;lt;/br&amp;gt;Mining: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Ship child{{br}}(Ship child)&lt;br /&gt;
| [PAWN_nameDef]'s family were space traders. One day, [PAWN_nameDef]'s cryptosleep pod failed in transit. [PAWN_pronoun] had to spend years awake on the ship as the other slept.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] filled [PAWN_possessive] days creating beautiful contraptions from the ship's cargo - but [PAWN_pronoun] didn't learn a lot of basic planetary living skills.&lt;br /&gt;
| Melee: {{--|3}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Animals{{br}}Cooking{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Ship technician{{br}}(Technician)&lt;br /&gt;
| [PAWN_nameDef] was an apprentice technician on trade ships plying their routes between the stations and planets of her home system. In this job, she learned to fix and improve many machines.&lt;br /&gt;
&lt;br /&gt;
Sometimes, her ship was assigned to short exploratory jaunts into dangerous regions of space.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Plants: {{--|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Shooting coma{{br}}(Coma child)&lt;br /&gt;
| Nebulys fell into a coma at a young age and spent years dreaming about shooting. When he awoke, he was useless at most tasks - but he could aim pretty well.&lt;br /&gt;
| Shooting: {{+|8}}&lt;br /&gt;
| Intellectual{{br}}ManualDumb{{br}}ManualSkilled{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Shopkeeper{{br}}(Shopkeep)&lt;br /&gt;
| [PAWN_nameDef]'s mother was often ill, and it fell to [PAWN_objective] to run the store which was their only source of income. [PAWN_pronoun] learned a little about the exotic artifacts which [PAWN_pronoun] sold, and a lot about the art of the deal.&lt;br /&gt;
| Social: {{+|4}}{{br}}Intellectual: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sickly child{{br}}(Patient)&lt;br /&gt;
| As a child, [PAWN_nameDef] suffered from a rare disease. Quarantined in a research hospital, [PAWN_pronoun] had minimal human contact and got little physical exercise. In the sterile hospital environment, however, [PAWN_pronoun] became very familiar with science and medicine.&lt;br /&gt;
| Melee: {{--|2}}{{br}}Construction: {{--|2}}{{br}}Medical: {{+|5}}{{br}}Social: {{--|2}}{{br}}Intellectual: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sole survivor{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef]’s entire tribe was wiped out in a raid. Though [PAWN_pronoun] was adopted by another group, [PAWN_pronoun] was emotionally scarred, and preferred to stay near home, cooking and tending crops.&lt;br /&gt;
| Cooking: {{+|3}}{{br}}Plants: {{+|3}}&lt;br /&gt;
| Violent&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Story writer{{br}}(Writer)&lt;br /&gt;
| As a child, [PAWN_nameDef] was addicted to reading. [PAWN_pronoun] would spend all day in [PAWN_possessive] local library with [PAWN_possessive] nose in a book. When budget cuts forced the library to close, [PAWN_nameDef] was distraught. [PAWN_pronoun] decided to fill the gap by writing [PAWN_possessive] own stories instead.&lt;br /&gt;
| Artistic: {{+|4}}{{br}}Intellectual: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Test subject{{br}}(Testee)&lt;br /&gt;
| On the most corrupt urbworlds, scientists without a moral compass commit unspeakable atrocities in the name of research. [PAWN_nameDef] was kept alone in a sealed facility from birth and subjected to a variety of behavioural experiments in an attempt to turn [PAWN_objective] into a perfect super-soldier.&lt;br /&gt;
| Shooting: {{+|4}}&lt;br /&gt;
| Social{{br}}Caring{{br}}Firefighting&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Tribe child{{br}}(Tribal)&lt;br /&gt;
| [PAWN_nameDef] grew up in the tribe, running around the village, moving with the muffalo herds, learning essential skills from [PAWN_possessive] parents.{{br}}[PAWN_pronoun] never learned to read and never saw a machine that wasn't an ancient ruin.&lt;br /&gt;
| Shooting: {{+|2}}{{br}}Melee: {{+|2}}{{br}}Plants: {{+|2}}{{br}}Intellectual: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Urbworld urchin{{br}}(Urchin)&lt;br /&gt;
| The urbworlds - ancient and deep industrial cityscapes bursting with humanity and poison. [PAWN_nameDef] grew up in the dark, unwanted reaches of such a place. [PAWN_pronoun] had to fight for every scrap of food.&lt;br /&gt;
| Shooting: {{+|2}}{{br}}Melee: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Vatgrown soldier{{br}}(Vatgrown)&lt;br /&gt;
| [PAWN_nameDef] wasn't made as a person, but as an instrument of destruction. Grown in a bioweapons facility and taught combat during [PAWN_possessive] accelerated growth, [PAWN_nameDef] still has a proclivity for combat of all kinds and an aversion to human contact.&lt;br /&gt;
| Shooting: {{+|4}}{{br}}Melee: {{+|4}}&lt;br /&gt;
| Social{{br}}Caring&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Vengeful child{{br}}(Vengeful)&lt;br /&gt;
| As a child, [PAWN_nameDef] returned to [PAWN_possessive] village to find that it had been wiped out by bandits. [PAWN_pronoun] swore revenge on the attackers and began a violent rampage across the wilderness.&lt;br /&gt;
| Shooting: {{+|3}}{{br}}Melee: {{+|3}}&lt;br /&gt;
| Caring&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! War refugee{{br}}(Refugee)&lt;br /&gt;
| War broke out in [PAWN_nameDef]'s home when [PAWN_pronoun] was a baby. [PAWN_possessive] parents fled with [PAWN_objective], seeking safety wherever they could find it. [PAWN_nameDef]'s earliest memories are of being taught how to defend [PAWN_objective]self.{{br}}The violence and destruction [PAWN_pronoun] witnessed left [PAWN_objective] scarred for life.&lt;br /&gt;
| Cooking: {{+|2}}{{br}}Crafting: {{+|2}}&lt;br /&gt;
| Violent&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Wreckage explorer{{br}}(Explorer)&lt;br /&gt;
| Two generations before [PAWN_nameDef] was born, an apocalyptic war dragged [PAWN_possessive] home planet into anarchy. [PAWN_nameDef] was tasked with watching [PAWN_possessive] tribe's herds, but often shirked [PAWN_possessive] duties to go exploring the crashed warships scattered around the planet.&lt;br /&gt;
| Animals: {{+|3}}{{br}}Intellectual: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=User:Mehni&amp;diff=63387</id>
		<title>User:Mehni</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=User:Mehni&amp;diff=63387"/>
		<updated>2019-05-07T19:21:47Z</updated>

		<summary type="html">&lt;p&gt;Mehni: Blanked the page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=List_of_adulthood_backstories&amp;diff=63386</id>
		<title>List of adulthood backstories</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=List_of_adulthood_backstories&amp;diff=63386"/>
		<updated>2019-05-07T19:12:14Z</updated>

		<summary type="html">&lt;p&gt;Mehni: Part H-M of the definitive list of backstories, sourced from build 2231. Script made. This is as they appear in the game.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;amp;larr; &amp;lt;small&amp;gt;[[Backstories]]&amp;lt;/small&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| {{STDT| sortable c_17}}&lt;br /&gt;
!Title &amp;lt;br/&amp;gt; (Short Title) !!Description !!Skill Modifications !!Incapable of !!Civil !!Raider !!Slave !!Trader !!Traveler !!Tribal&lt;br /&gt;
|-&lt;br /&gt;
! Ace fighter pilot{{br}}(Ace)&lt;br /&gt;
| [PAWN_nameDef] graduated from the Star Academy with honors and distinguished himself as an ace fighter pilot in three campaigns against more advanced aggressor cultures. &lt;br /&gt;
&lt;br /&gt;
However, after one vicious battle, he found himself stranded and his carrier ship destroyed. With nowhere to go, he entered his escape pod and prayed.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Acolyte of stars{{br}}(Priest)&lt;br /&gt;
| Ever the dreamer, [PAWN_nameDef] traveled across the universe to find the thing he felt was calling to him.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] became poorer and poorer, but used every means possible to carry on.&lt;br /&gt;
| Intellectual: {{--|3}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|7}}&lt;br /&gt;
| ManualDumb{{br}}Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Actor{{br}}(Actor)&lt;br /&gt;
| [PAWN_nameDef] travelled [PAWN_possessive] homeworld with a company of actors, playing to packed theatres and loving audiences everywhere. [PAWN_pronoun] was a perfectionist, and made [PAWN_possessive] own props and costumes rather than use the ones [PAWN_pronoun] was given.&lt;br /&gt;
| Social: {{+|8}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Addiction counsel{{br}}(Counselor)&lt;br /&gt;
| After recovering from a joywire addiction, [PAWN_nameDef] adopted a non-violent way of life and vowed to help others.&lt;br /&gt;
&lt;br /&gt;
Travelling between communities, [PAWN_pronoun] used medicine, arts, and crafts to aid others who struggled with their own addictions.&lt;br /&gt;
| Social: {{+|8}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Adventurer{{br}}(Adventurer)&lt;br /&gt;
| [PAWN_nameDef]'s thirst for adventure took [PAWN_objective] to many planets. [PAWN_pronoun] visited the brightest glitterworlds and the darkest war-torn toxic planets in [PAWN_possessive] quest to find novelty and excitement.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] worked as little as possible, often skirting ethical boundaries to make a quick buck. Among all jobs, [PAWN_pronoun] hated cooking the most.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&amp;lt;/br&amp;gt;Animals: {{+|2}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Adventurous weirdo{{br}}(Weirdo)&lt;br /&gt;
| A creative but strange individual, [PAWN_nameDef] dedicated his life to his twin passions of medieval world history and high technology.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was fascinated by the idea of becoming a 'skyknight' with glittering armor and a giant sword.&lt;br /&gt;
| Shooting: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|6}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Mining{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aerospace engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] was an engineer responsible for the production of aircraft and spaceships. [PAWN_pronoun] focused on improving production lines, and was known for [PAWN_possessive] mastery of technical and research issues.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! AI programmer{{br}}(Programmer)&lt;br /&gt;
| Michael enlisted in the military's robotics division, developing smarter combat AI.&lt;br /&gt;
&lt;br /&gt;
The whole time he was there, he never spoke with another human. He spent all his time conversing with the AI he was developing.&lt;br /&gt;
| Intellectual: {{+|7}}&amp;lt;/br&amp;gt;Crafting: {{+|6}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! AI researcher{{br}}(Researcher)&lt;br /&gt;
| Dave was a renowned researcher in artificial intelligence, robotics, and interactive holography. His friendships with the artificial minds he created gave him the confidence to interact with real people, and he soon excelled at personal communication.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Mining: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Alcoholic trucker{{br}}(Alcoholic)&lt;br /&gt;
| [PAWN_nameDef] was a space trucker working for Arcknight Industries when he killed his wife and daughter in a crash.&lt;br /&gt;
&lt;br /&gt;
His body was repaired with an experimental nano-genetic therapy. Now his muscles continually regenerate and harden, and every movement tears the tissue anew. He bears the pain in silence.&lt;br /&gt;
| Mining: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Caring{{br}}Social{{br}}Artistic{{br}}Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Anarchist rebel{{br}}(Anarchist)&lt;br /&gt;
| After being abandoned on a special operation, [PAWN_nameDef] swore vengeance upon the state. [PAWN_pronoun] formed an anarchist group dedicated to bringing down core world governments.&lt;br /&gt;
&lt;br /&gt;
After too many close calls, and too few successes, [PAWN_nameDef] fled to the outer rim.&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|6}}&lt;br /&gt;
| Crafting{{br}}Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Archaeologist{{br}}(Explorer)&lt;br /&gt;
| [PAWN_pronoun] was trapped in an uninspired life. One day, [PAWN_pronoun] jumped on a ship to learn archaeology and see the universe.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned how to survive. [PAWN_pronoun] also learned about people - although [PAWN_pronoun] understood the dead better than the living.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Architect{{br}}(Architect)&lt;br /&gt;
| [PAWN_nameDef] designed and constructed buildings. On [PAWN_possessive] glitterworld home, most of the technical aspects of architecture were handled by an AI. This enabled [PAWN_objective] to push the artistic limits of the craft, but also meant [PAWN_pronoun] never had to get [PAWN_possessive] hands dirty at building sites.&lt;br /&gt;
| Construction: {{+|5}}&amp;lt;/br&amp;gt;Artistic: {{+|7}}&amp;lt;/br&amp;gt;Crafting: {{--|3}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Archotech spy{{br}}(AI spy)&lt;br /&gt;
| [PAWN_nameDef] was a cybernetic researcher. Studying a transcended world, [PAWN_pronoun] became too involved with [PAWN_possessive] subjects. Over time, the archotech machine core recruited [PAWN_objective] into its service, and used [PAWN_objective] as a spy.&lt;br /&gt;
&lt;br /&gt;
When [PAWN_pronoun] later rebelled against [PAWN_possessive] non-human master, it sent mechanoids across space to hunt [PAWN_objective] down.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Mining{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Army cook{{br}}(Cook)&lt;br /&gt;
| Ben joined the army as a worker and spent most of his time cooking and repairing. While he was stationed on a dangerous planet, he underwent basic shooting and survival training.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Caring{{br}}Social{{br}}Firefighting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Army scientist{{br}}(Scientist)&lt;br /&gt;
| [PAWN_nameDef] did scientific research for a planetary army. [PAWN_pronoun] studied war scenarios and designed weapon systems to help win battles with a minimum of fuss.&lt;br /&gt;
| Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Army sergeant{{br}}(Sergeant)&lt;br /&gt;
| [PAWN_nameDef] served in [PAWN_possessive] nation's military, commanding small units as a non-commissioned officer.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] excelled creating tactically sound plans despite difficult circumstances.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aromatherapist{{br}}(Therapist)&lt;br /&gt;
| [PAWN_nameDef] practiced aromatherapy, using essences extracted from home-grown plants.&lt;br /&gt;
| Plants: {{+|6}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artifact hunter{{br}}(Artifacter)&lt;br /&gt;
| [PAWN_nameDef] became depressed and lost interest in life. [PAWN_pronoun] travelled from planet to planet, searching for psychic artifacts amid mechanoid ruins in the hope that they would cure the pain in [PAWN_possessive] soul.&lt;br /&gt;
&lt;br /&gt;
A steady trigger finger and careful planning kept [PAWN_nameDef] alive.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|8}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artificer rampant{{br}}(Artificer)&lt;br /&gt;
| Fuelled by the thrill of discovery and his own megalomania, [PAWN_nameDef] set out to invent new devices and improve existing ones, breaking laws and customs as necessary.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] formed a crew to gather materials for [PAWN_possessive] work - and to deal with outsiders who might interfere.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|8}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Ascetic priest{{br}}(Priest)&lt;br /&gt;
| After taking a vow of silence, [PAWN_nameDef] joined a monastery on a peaceful backwater planet to spend [PAWN_possessive] days in quiet contemplation.{{br}}[PAWN_pronoun] found happiness growing vegetables in the garden and making cheese in the monastery cellars.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| Violent{{br}}Social{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Assassin{{br}}(Assassin)&lt;br /&gt;
| Robin was specially trained as an operative to be used for high-risk assassinations. His skill with a rifle was unrivalled.&lt;br /&gt;
&lt;br /&gt;
He was eventually betrayed by his superiors when a target found out about the hit and offered to fund their future projects. Robin swore to never trust anyone again.&lt;br /&gt;
| Shooting: {{+|7}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}Crafting{{br}}Cooking{{br}}Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! AWOL soldier{{br}}(Soldier)&lt;br /&gt;
| [PAWN_nameDef] was an infantryman.&lt;br /&gt;
&lt;br /&gt;
When [PAWN_pronoun] was informed of his assignment to the Xennoa-Zartza War, [PAWN_pronoun] decided [PAWN_pronoun] did not want to be a soldier. [PAWN_pronoun] was able to escape via military spacejet.&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bandit leader{{br}}(Bandit)&lt;br /&gt;
| [PAWN_nameDef] rose up the ranks of the crime organization, eventually becoming the leader of one of their most remote cells of bandits. His dog Rest never left his side.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Banished soldier{{br}}(Outlaw)&lt;br /&gt;
| [PAWN_nameDef] became the most physically intimidating of the slaves, spending his little free time obsessively sculpting his body. His efforts eventually paid off when the lord offered him a job as a personal bodyguard.&lt;br /&gt;
&lt;br /&gt;
Later, when he plotted to use his position to kill the lord and free the slaves, he was discovered and barely escaped with his life.&lt;br /&gt;
| Melee: {{+|7}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bartender{{br}}(Barkeep)&lt;br /&gt;
| [PAWN_nameDef] worked as a bartender on a seedy space station. The job entailed one part drink mixing, one part diplomacy, and one part head-bashing.&lt;br /&gt;
| Social: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Battle mechanic{{br}}(Mechanic)&lt;br /&gt;
| [PAWN_nameDef] was a tech-obsessed mercenary in an early fusion-era system.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was unusually obsessed with gathering the right gear, and often customized [PAWN_possessive] own equipment with original modifications.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Battlefield tech{{br}}(Technician)&lt;br /&gt;
| [PAWN_nameDef] had received firearms training, but [PAWN_possessive] work was focused on technical adaption and manipulation of combat mechanoids on the battlefield.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] developed PTSD after narrowly escaping a primitive firebomb attack in a wheat field. The army medically discharged him from service.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Firefighting{{br}}PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Beast slayer{{br}}(Slayer)&lt;br /&gt;
| [PAWN_nameDef] traveled between planets, following news of animal attacks. [PAWN_pronoun] would camp on the planet for weeks, learning about [PAWN_possessive] prey before striking. [PAWN_pronoun] most enjoyed hunting thrumbos.&lt;br /&gt;
&lt;br /&gt;
Preferring to work alone, [PAWN_nameDef] enjoyed the thrill of the hunt, and the meat from the kill.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Behaviour research{{br}}(Scientist)&lt;br /&gt;
| Captured as a feral child, [PAWN_nameDef] was forced into the ways of modern society. [PAWN_pronoun] quickly adapted and became a behavioural researcher, eventually owning a private facility.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] specialized in canines, but learned a great deal about all animals. [PAWN_pronoun] never had interest in plants, however.&lt;br /&gt;
| Plants: {{--|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Biosphere manager{{br}}(Botanist)&lt;br /&gt;
| [PAWN_nameDef] lived on a peaceful glitterworld where all menial work was done by robots and people devoted themselves to leisure. [PAWN_pronoun] managed the plant and animal life of a sprawling park, where citizens came to admire the natural beauty.&lt;br /&gt;
| Shooting: {{--|4}}&amp;lt;/br&amp;gt;Animals: {{+|6}}&amp;lt;/br&amp;gt;Plants: {{+|6}}&lt;br /&gt;
| ManualDumb{{br}}Crafting{{br}}Cooking{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blacksmith shooter{{br}}(Gunsmith)&lt;br /&gt;
| As a young blacksmith, [PAWN_nameDef]'s family shop was raided by the police. [PAWN_pronoun] shot two officers before they knocked him out and arrested him.&lt;br /&gt;
&lt;br /&gt;
Sentenced to life in prison, [PAWN_nameDef] learned about traveling and raiding from other criminals.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blacksmith{{br}}(Blacksmith)&lt;br /&gt;
| As a blacksmith on a medieval world, [PAWN_nameDef] gained a reputation for the high quality of [PAWN_possessive] work. [PAWN_pronoun] wasn't bad at using the swords [PAWN_pronoun] forged either.&lt;br /&gt;
| Mining: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|8}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blacksmith{{br}}(Blacksmith)&lt;br /&gt;
| As a smith on a medieval world, [PAWN_nameDef] gained a reputation for the high quality of [PAWN_possessive] work. [PAWN_pronoun] wasn't bad at using the swords [PAWN_pronoun] forged either.&lt;br /&gt;
| Shooting: {{--|5}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|6}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bloodgame survivor{{br}}(Bloodgamer)&lt;br /&gt;
| [PAWN_nameDef] was sold to the Corestars Entertainment Company and used as meat in one of the company's system-wide broadcast shows.&lt;br /&gt;
 &lt;br /&gt;
[PAWN_possessive] manipulative nature made [PAWN_objective] quite a nightmare, even to the audience. He was kicked out and exiled to a planet full of deadly animals, criminals and armed camera-drones.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|7}}&amp;lt;/br&amp;gt;Social: {{+|6}}&lt;br /&gt;
| Crafting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bloody dentist{{br}}(Dentist)&lt;br /&gt;
| After studying at a famous college, [PAWN_nameDef]'s weak personality eventually snapped under the strain of angry administrators and whining patients. [PAWN_pronoun] went on a secret murder spree, killing many of those under [PAWN_possessive] care.&lt;br /&gt;
&lt;br /&gt;
After a pursuit, [PAWN_pronoun] managed to escape [PAWN_possessive] planet and travel to a new world.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bloody wanderer{{br}}(Wanderer)&lt;br /&gt;
| [PAWN_nameDef] was a wanderer, traveling from town to town, taking odd jobs and stealing to live.&lt;br /&gt;
&lt;br /&gt;
One day, he had a mental break and went on a long rampage, destroying several towns and killing many. [PAWN_pronoun] eventually calmed, but [PAWN_possessive] bloodlust never left [PAWN_objective].&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Social{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bodyguard{{br}}(Bodyguard)&lt;br /&gt;
| [PAWN_nameDef] found work on a midworld, protecting whoever paid [PAWN_objective] from harm. [PAWN_pronoun] gained proficiency in many different combat forms, and was known for [PAWN_possessive] ruthlessness against those who crossed [PAWN_objective].&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bounty hunter{{br}}(Hunter)&lt;br /&gt;
| [PAWN_nameDef] is a self-employed bounty hunter. [PAWN_pronoun] spent [PAWN_possessive] days hunting space pirates and collecting cash bounties.&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bounty hunter{{br}}(Hunter)&lt;br /&gt;
| [PAWN_nameDef] was a bounty hunter on a massive glitterworld. [PAWN_pronoun] worked sensitive assignments for extremely wealthy clients, and was known for quiet execution and total discretion.&lt;br /&gt;
| Shooting: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bounty hunter{{br}}(Hunter)&lt;br /&gt;
| When the civil war ended, Mushinto had to find a new way to use his fighting skills. He decided to hunt down war criminals and soon realized that he enjoyed capturing  bad guys by any means necessary.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Brigand{{br}}(Brigand)&lt;br /&gt;
| [PAWN_nameDef] flew with a band of brigands [PAWN_pronoun] called friends. [PAWN_pronoun] even had a ship of [PAWN_possessive] own - The Dung Mucker 2000.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bush sniper{{br}}(Sniper)&lt;br /&gt;
| [PAWN_nameDef]'s peaceful life was cut short when [PAWN_possessive] country was brutally invaded.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] was drafted into service as soon as [PAWN_pronoun] was of legal age, and quickly showed an aptitude for rifles. [PAWN_pronoun] spent months living in the forests picking off soldiers who dared cross the border.&lt;br /&gt;
| Plants: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|6}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Business gangster{{br}}(Gangster)&lt;br /&gt;
| Staying one step ahead of the law, [PAWN_nameDef] became a legitimate businessman and silenced anyone who dared say otherwise. As proprietor of brothels, speakeasies and eateries, [PAWN_nameDef]'s good fortune continued while his competition suffered a series of unfortunate and unexplained accidents.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|7}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Caring{{br}}Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caravaneer{{br}}(Caravaneer)&lt;br /&gt;
| [PAWN_nameDef] was the leader of a caravan. [PAWN_pronoun] was responsible for the safety of [PAWN_possessive] caravan and was the head negotiator in countless trade deals.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] and [PAWN_possessive] people prospered, but their wealth made them a target for brigands. They often had to take up arms to fend off bandits and highwaymen.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|7}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cargo pilot{{br}}(Pilot)&lt;br /&gt;
| [PAWN_nameDef] was brought up by cargo hands on a long-haul ore transport ship. [PAWN_pronoun] perfected [PAWN_possessive] skills at trading and manipulation of people while running weapons between systems.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|1}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Casket builder{{br}}(Builder)&lt;br /&gt;
| [PAWN_nameDef] was fascinated with cryosleep, and spent [PAWN_possessive] life learning about the mysterious technology.&lt;br /&gt;
&lt;br /&gt;
Working as an assembler on a midworld, [PAWN_nameDef] built an experimental prototype casket from discarded parts. Unfortunately, while [PAWN_pronoun] was searching for the final component, [PAWN_possessive] home was leveled by a bomb.  &lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Castaway{{br}}(Castaway)&lt;br /&gt;
| [PAWN_nameDef] was a passenger on a routine interstellar transit. When his ship was destroyed, he lived as a castaway on an uninhabited planet for several years.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|02}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Castaway{{br}}(Castaway)&lt;br /&gt;
| [PAWN_nameDef] was the only survivor of a ship crash on an unhabited animal world. For many years until [PAWN_possessive] rescue [PAWN_pronoun] scrounged an existence out of whatever [PAWN_pronoun] could find.{{br}}[PAWN_possessive] survival skills became razor-sharp, but spending so long alone severely dampened [PAWN_possessive] conversatial abilities.&lt;br /&gt;
| Melee: {{+|5}}&amp;lt;/br&amp;gt;Animals: {{+|3}}&amp;lt;/br&amp;gt;Construction: {{+|4}}&lt;br /&gt;
| Intellectual{{br}}Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caveworld illuminator{{br}}(Illuminator)&lt;br /&gt;
| Among tunnel-dwellers, those with vision as strong as [PAWN_nameDef]’s are revered as sages. [PAWN_pronoun] would lead the way, marking spots to dig with bioluminescent fungus and warning others of impending danger.&lt;br /&gt;
| Mining: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Charity worker{{br}}(Altruist)&lt;br /&gt;
| Glitterworlds are havens of safety and comfort for those lucky enough to live there, but [PAWN_nameDef] could not ignore nearby planets where people suffered in poverty. [PAWN_pronoun] spent [PAWN_possessive] working life appealing for donations and supporting those in need.&lt;br /&gt;
| Social: {{+|6}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Chemist{{br}}(Chemist)&lt;br /&gt;
| [PAWN_nameDef] was a renowned chemist on a thriving midworld.&lt;br /&gt;
&lt;br /&gt;
After performing inhumane experiments that turned men into beasts, [PAWN_pronoun] was arrested and banished to a far-off rim world.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|6}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Chemist{{br}}(Chemist)&lt;br /&gt;
| [PAWN_nameDef] was a research chemist. [PAWN_pronoun] worked with chemicals, from pharmaceuticals to explosives, to develop new substances and treatments.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Chief engineer{{br}}(Engineer)&lt;br /&gt;
| As chief engineer on board a large spaceship, [PAWN_nameDef] was an expert in all things fiddly and complex.&lt;br /&gt;
&lt;br /&gt;
She relied on other members of the crew for some of the basic necessities of life. She and her ship eventually disappeared into a longsleep voyage of exploration.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Civil engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] was a well-known civil engineer. [PAWN_possessive] job involved designing and maintaining rock fortification structures. [PAWN_pronoun] did enough statistical analysis to keep his mind sharp.&lt;br /&gt;
| Construction: {{+|7}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Civil servant{{br}}(Clerk)&lt;br /&gt;
| [PAWN_nameDef] worked as a low-ranking administrator for a moribund government bureaucracy. [PAWN_pronoun] is most at home filling out complicated paperwork and playing office politics.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Construction: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Clan chief{{br}}(Chief)&lt;br /&gt;
| [PAWN_nameDef] managed a small criminal clan on an outlying trade hub world.&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Social: {{+|7}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Clone farmer{{br}}(Cloner)&lt;br /&gt;
| Harvesting the products of clone farms is mostly done by the clones themselves -particularly to those whose sims tended towards the social. This clone was one such, who escaped from the farms and headed out to the stars.&lt;br /&gt;
| Social: {{+|6}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Cooking{{br}}Firefighting{{br}}Mining{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Coliseum fighter{{br}}(Fighter)&lt;br /&gt;
| Applying the knowledge that he gained from years around fighters, [PAWN_pronoun] became a successful gladiator in the coliseum that he once cleaned.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|5}}&amp;lt;/br&amp;gt;Social: {{--|1}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Colonial governor{{br}}(Governor)&lt;br /&gt;
| Disillusioned by rampant government corruption, Henry ran for governor and won. However, the local gangs and their pet officials soon forced him out of power.&lt;br /&gt;
&lt;br /&gt;
He left the community to return to his life as a marshal.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Colony engineer{{br}}(Engineer)&lt;br /&gt;
| The children took over the facility, and they declared independence from the corporation.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] had used the VR system to become a master engineer, and he worked diligently to prepare the colony for the corporation's inevitable return.&lt;br /&gt;
| Construction: {{+|7}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Colony settler{{br}}(Settler)&lt;br /&gt;
| [PAWN_nameDef] was a settler on a new colony world.{{br}}Such a life requires a jack-of-all trades at basic hands-on tasks.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Plants: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Combat engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] became a combat engineer. [PAWN_pronoun] built bases, fixed guns, and repaired vehicles for the army - when [PAWN_pronoun] wasn't shooting at people, that is.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Combat engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] was recruited by the military as an engineer and set to work improving the navy's space shuttles. The harsh training taught [PAWN_objective] how to build and repair military vehicles and structures.&lt;br /&gt;
&lt;br /&gt;
One mission left [PAWN_nameDef] with pyrophobia and a strong desire to avoid plants.&lt;br /&gt;
| Construction: {{+|6}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}Firefighting{{br}}PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Combat medic{{br}}(Medic)&lt;br /&gt;
| After his home country entered a large-scale war, Felix was drafted into the army as a combat medic.&lt;br /&gt;
&lt;br /&gt;
His few years in the trenches trying to keep his fellow soldiers alive gave him an acute sense for first aid. Losing many friend has made him stoic and reserved.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Combat medtech{{br}}(Medic)&lt;br /&gt;
| As a military medtech, [PAWN_nameDef]'s job was to fix and build anything he could get [PAWN_possessive] hands on, from living people to machines and mechs.&lt;br /&gt;
&lt;br /&gt;
Sent into dangerous areas, [PAWN_pronoun] never had a problem saving soldiers' lives and building the technology and machines needed to win.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Medicine: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|5}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Combat negotiator{{br}}(Negotiator)&lt;br /&gt;
| After escaping his homeworld, [PAWN_nameDef] took his skills to the stars.&lt;br /&gt;
&lt;br /&gt;
He chose to operate as a hired gun, working for various rebel organizations, enslaved groups, and merchant enclaves. His specialty was negotiation in combat situations.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Commoner lord{{br}}(Lord)&lt;br /&gt;
| After years of training in martial arts and diplomacy, [PAWN_nameDef] was eventually given land and subjects of [PAWN_possessive] own to rule.&lt;br /&gt;
&lt;br /&gt;
Because of [PAWN_nameDef]'s commoner heritage, the other lords disapproved. They framed [PAWN_objective] for a heinous crime, and the emperor had no choice but to exile [PAWN_objective].&lt;br /&gt;
| Melee: {{+|7}}&amp;lt;/br&amp;gt;Social: {{+|6}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Computer engineer {{br}}(Tech head)&lt;br /&gt;
| Bored of his code-monkey office job and missing the glory days of the Academy, [PAWN_nameDef] saw a commercial about the frontier where &amp;quot;only the strong survive&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
With his wife Morgan, [PAWN_nameDef] undertook a journey into the unknown.&lt;br /&gt;
| Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Con artist{{br}}(Con artist)&lt;br /&gt;
| [PAWN_nameDef] never created anything in [PAWN_possessive] life. [PAWN_pronoun] did, however, prove to be a natural at getting others to give [PAWN_objective] what they had created.&lt;br /&gt;
| Social: {{+|10}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Conceptual artist{{br}}(Artist)&lt;br /&gt;
| [PAWN_nameDef] was well-known in art circles on [PAWN_possessive] home world for [PAWN_possessive] unique and creative conceptual artworks.{{br}}Nobody was sure exactly what [PAWN_pronoun] was trying to communicate, but [PAWN_possessive] pieces were highly valued by collectors.&lt;br /&gt;
| Artistic: {{+|8}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Social{{br}}Caring{{br}}Hauling{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Construction engineer{{br}}(Builder)&lt;br /&gt;
| [PAWN_nameDef] was a construction worker on a midworld. [PAWN_pronoun] lead a team which built everything from office blocks to cathedrals.{{br}}[PAWN_possessive] busy job and numerous nearby fast-food outlets meant [PAWN_pronoun] never cooked for [PAWN_objective]self.&lt;br /&gt;
| Construction: {{+|8}}&amp;lt;/br&amp;gt;Plants: {{--|3}}&lt;br /&gt;
| Intellectual{{br}}Cooking{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Core world jeweler{{br}}(Jeweler)&lt;br /&gt;
| After Alyssa had completed all of her surgeries, she found that she had a lot of time and energy to dedicate to her passion: trinket crafting. She spent years perfecting her art as a jeweler, then left her home world to sell her wares across the galaxy.&lt;br /&gt;
&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|7}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corp researcher{{br}}(Researcher)&lt;br /&gt;
| [PAWN_nameDef] was a leading researcher for a massive space exploration corporation.&lt;br /&gt;
| Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corp researcher{{br}}(Researcher)&lt;br /&gt;
| [PAWN_nameDef] was sold to a corporation and put to work as a corporate slave doing scientific research.&lt;br /&gt;
&lt;br /&gt;
Unable to adapt to the social politics of his workplace, he buried himself in his work and failed to progress up the corporate ladder. Every day, he yearned to be left alone.&lt;br /&gt;
| Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corporate builder{{br}}(Builder)&lt;br /&gt;
| Even as [PAWN_pronoun] stewed in [PAWN_possessive] own wasted potential, [PAWN_nameDef] found [PAWN_pronoun] had a knack for moving objects quickly. It was just what the planetary mega-corps wanted in their construction divisions.&lt;br /&gt;
&lt;br /&gt;
Unfortunately, the monotonous work erased [PAWN_possessive] remaining creative impulses.&lt;br /&gt;
| Construction: {{+|7}}&amp;lt;/br&amp;gt;Mining: {{+|4}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cosmetic reject{{br}}(Reject)&lt;br /&gt;
| Living on the streets, Chaz submitted himself to an unethical cosmetics lab in exchange for food and shelter.&lt;br /&gt;
&lt;br /&gt;
After some painful cosmetic modification, Chaz barely resembles his former self. Having been forced to work for the lab until he was rescued, Chaz is now too afraid to lash out at anyone.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{+|5}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cosmetic surgeon{{br}}(Surgeon)&lt;br /&gt;
| [PAWN_nameDef] had a terrible bedside manner due to [PAWN_possessive] abrasiveness. [PAWN_pronoun] often bullied [PAWN_possessive] patients into getting cosmetic surgery. [PAWN_pronoun] made a lot of money this way.&lt;br /&gt;
&lt;br /&gt;
While very studious and careful in [PAWN_possessive] work, [PAWN_pronoun] never had to lift a finger doing domestic chores.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|8}}&amp;lt;/br&amp;gt;Artistic: {{+|6}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Costume crafter{{br}}(Costumer)&lt;br /&gt;
| By day, [PAWN_nameDef] was an office worker on a midworld. At night, [PAWN_pronoun] designed and built elaborate monster costumes for science fiction conventions.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned a great deal about sewing. Unfortunately this came at the cost of being able to cook anything more complex than an instant meal.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|8}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Counselor{{br}}(Counselor)&lt;br /&gt;
| A terrifying trauma when [PAWN_nameDef] was a young adult caused [PAWN_objective] to develop a serious eating disorder. With counseling [PAWN_pronoun] learned to have a healthier relationship with food, and decided to put [PAWN_possessive] new skills to use helping others overcome their emotional problems.&lt;br /&gt;
| Social: {{+|9}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Craft shaper{{br}}(Shaper)&lt;br /&gt;
| [PAWN_nameDef] locked [PAWN_objective]self in his studio for years, ordering delivery food to save time on cooking.&lt;br /&gt;
&lt;br /&gt;
Eventually, [PAWN_possessive] creations brought [PAWN_objective] the highest honor on Semantic World: Permission to materialize any design in minutes using the most advanced technologies.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|8}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Crime lord{{br}}(Crime lord)&lt;br /&gt;
| Through brutality and cruelty, [PAWN_nameDef] rose to the rank of crime lord.&lt;br /&gt;
&lt;br /&gt;
He relied less on his fists and more on his guns. His reputation spread faster due to his cold-bloodedness and ruthless methods.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Criminal kingpin{{br}}(Kingpin)&lt;br /&gt;
| [PAWN_nameDef] discovered his gift - people did what he said, when he said it. Taking advantage of this, he set off for the rimworlds planets to make a name for himself in the criminal underworld.&lt;br /&gt;
&lt;br /&gt;
Having people do things for him taught him to avoid manual labor at all costs.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|5}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Criminal surgeon{{br}}(Surgeon)&lt;br /&gt;
| Being near many injured fellow criminals, [PAWN_nameDef] took it upon [PAWN_objective]self to work on them.&lt;br /&gt;
&lt;br /&gt;
Although many people died, [PAWN_pronoun] did get better at using knives.&lt;br /&gt;
| Intellectual: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{+|6}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|5}}&amp;lt;/br&amp;gt;Artistic: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Deep space miner{{br}}(Miner)&lt;br /&gt;
| [PAWN_nameDef] did the sweaty, grimy work of pulling metal out of asteroids on a deep space rig. [PAWN_pronoun] used [PAWN_possessive] hands-on industrial skills daily - and wasn't bad in a bar fight either.&lt;br /&gt;
| Mining: {{+|7}}&amp;lt;/br&amp;gt;Construction: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Deep space surveyor{{br}}(Surveyor)&lt;br /&gt;
| [PAWN_nameDef] was a deep space surveyor. She studied which worlds were the most suitable for colonization.&lt;br /&gt;
&lt;br /&gt;
Her expeditions were met by hostile natives, green-painted space-women, and wannabe Greek gods. Surviving many firefights, she learned to build rudimentary lathes and rock cannons to fend off enemies.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Plants: {{--|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Defector {{br}}(Defector )&lt;br /&gt;
| [PAWN_nameDef] decided to leave the oppressive dictatorship where [PAWN_pronoun] lived. [PAWN_possessive] defection was not well-received, and agents were sent after [PAWN_objective].&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] spent years on the run. Since [PAWN_pronoun] could trust no doctor, [PAWN_pronoun] treated [PAWN_possessive] own wounds. The ordeal made [PAWN_objective] bitter and untrusting. &lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Animals{{br}}Artistic{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Defector{{br}}(Defector)&lt;br /&gt;
| Early in [PAWN_possessive] adulthood, [PAWN_nameDef] decided to leave the oppressive dictatorship where [PAWN_pronoun] lived. [PAWN_possessive] defection was not well-received, and agents were sent out after [PAWN_objective].{{br}}[PAWN_pronoun] spent years on the run, treating [PAWN_possessive] own wounds so no doctor could betray [PAWN_objective]. The ordeal made [PAWN_objective] bitter and untrusting.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Social: {{--|4}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Defense lawyer{{br}}(Lawyer)&lt;br /&gt;
| [PAWN_nameDef] found that [PAWN_pronoun] could make more money with a quick word than a blaster. Seeking a job where [PAWN_possessive] silver tongue could be useful, [PAWN_pronoun] turned to the law.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] often defended the illegal speeder racers [PAWN_pronoun] grew up with.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|8}}&lt;br /&gt;
| ManualDumb{{br}}ManualSkilled{{br}}Caring{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Destroyer-general{{br}}(General)&lt;br /&gt;
| [PAWN_nameDef] held the rank of Destroyer-General in a powerful midworld military.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was known for his mastery of weapons, and was also a good ship pilot.&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|6}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Discharged soldier{{br}}(Soldier)&lt;br /&gt;
| [PAWN_nameDef] prostituted himself to fund his drug habits. As an escape, [PAWN_pronoun] joined the military and learned to fight.&lt;br /&gt;
&lt;br /&gt;
Too smart for the army, [PAWN_pronoun] questioned and often disagreed with [PAWN_possessive] superiors' decisions. This eventually led to [PAWN_possessive] dishonorable discharge and left [PAWN_objective] with a chip on [PAWN_possessive] shoulder.&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Doomsday pariah{{br}}(Pariah)&lt;br /&gt;
| [PAWN_nameDef] managed to open a vault of otherworldly technology while scavenging a dig site. [PAWN_pronoun] unwittingly triggered a doomsday device that cleansed the planet of all life. More interested in the tech than human life, [PAWN_pronoun] boarded the vault’s spacecraft and departed to find more relics to abuse.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Dreaded dude{{br}}(Dude)&lt;br /&gt;
| Some followers say that [PAWN_nameDef] and [PAWN_possessive] crew of misfits found the Fountain of Youth, many, many centuries ago, and that they caused the extinction of the dinosaurs on many planets.&lt;br /&gt;
&lt;br /&gt;
There's even a religion about them, somewhere, involving noodles and meatballs.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|8}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Drifter{{br}}(Drifter)&lt;br /&gt;
| [PAWN_nameDef] never figured out what to do with [PAWN_possessive] life. [PAWN_pronoun] travelled often, taking up casual work wherever [PAWN_pronoun] found it.{{br}}[PAWN_pronoun] also occasionally worked on a novel that [PAWN_pronoun] knew would be a bestseller - just as soon as [PAWN_pronoun] could find a publisher who was interested.&lt;br /&gt;
| Cooking: {{+|3}}&amp;lt;/br&amp;gt;Construction: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{--|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Dromedary knight{{br}}(Knight)&lt;br /&gt;
| Having caught the eye of [PAWN_possessive] people's Sand King, [PAWN_nameDef] was trained in the Sandy Boomrat fighting technique.&lt;br /&gt;
&lt;br /&gt;
Always with a camel to carry his things, [PAWN_pronoun] served [PAWN_possessive] sand people faithfully.&lt;br /&gt;
| Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Hauling{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Drug lieutenant{{br}}(Drugman)&lt;br /&gt;
| [PAWN_nameDef] worked the drug trade under kingpin Grady Loughman. He had his men sell drugs when it was profitable, and fight the other cartels when the government came around.&lt;br /&gt;
&lt;br /&gt;
His social skills kept him on top of the political game, and he always had servants to cook and clean.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|7}}&amp;lt;/br&amp;gt;Medicine: {{+|7}}&lt;br /&gt;
| Artistic{{br}}Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Energy researcher{{br}}(Researcher)&lt;br /&gt;
| [PAWN_nameDef] was working on an idea for rapid communication over long distances. [PAWN_pronoun] made an error which destroyed [PAWN_possessive] lab and most of the city. [PAWN_pronoun] fled the planet to escape the authorities.&lt;br /&gt;
| Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{--|1}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] found a job as a tinkering engineer on the trading hub planet Irithir. Tough local traders forced him to learn negotiation skills, and he made good profits selling refurbished weapons and tools.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|8}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Engineered pilot{{br}}(Pilot)&lt;br /&gt;
| After his province was besieged by one of its neighbors, [PAWN_nameDef] volunteered for a generic modification program that created pilots for the very fighter craft that he had helped develop. The modifications allowed him to pilot the ship, but also made him less able to focus on the people around him.&lt;br /&gt;
&lt;br /&gt;
By this time, people were calling him &amp;quot;Squirrel.&amp;quot; &lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Envoy of the stars{{br}}(Envoy)&lt;br /&gt;
| [PAWN_nameDef] entered the diplomatic corps. Honor and tradition were the values he took with him on every mission.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] prestigious position distanced him from backbreaking manual labor, allowing [PAWN_objective] to focus on his wordsmithing abilities. He left the blacksmithing to others.&lt;br /&gt;
| Shooting: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|8}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}ManualSkilled{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Escaped convict{{br}}(Escapee)&lt;br /&gt;
| [PAWN_nameDef] denies involvement in the crimes that brought about [PAWN_possessive] incarceration in a brutal penal colony. [PAWN_pronoun] escaped by tunnelling beneath the perimeter using modified cutlery.&lt;br /&gt;
| Mining: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Evangelist{{br}}(Evangelist)&lt;br /&gt;
| As a youth, [PAWN_nameDef] experienced a religious awakening. [PAWN_pronoun] decided to spend the rest of [PAWN_possessive] life spreading the word of [PAWN_possessive] deity, the beauty of its culture, and its unusual medical tradition.&lt;br /&gt;
| Social: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Executive officer{{br}}(Executive)&lt;br /&gt;
| [PAWN_nameDef] was an executive officer for a large space trading corporation. After a failed attempt at manipulating his way up the corporate ladder, he was framed for the rape and murder of another executive and her family.&lt;br /&gt;
&lt;br /&gt;
He was found guilty. However, because of his family's influence, he was exiled instead of put to death.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|7}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Exiled researcher{{br}}(Exile)&lt;br /&gt;
| [PAWN_nameDef]'s love of robotics was not appreciated in her technophobic empire. The High Cardinal of the system excommunicated her, and she was never allowed to return.&lt;br /&gt;
| Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Exotic chef{{br}}(Chef)&lt;br /&gt;
| [PAWN_nameDef] has always gone overboard when it comes to food. [PAWN_pronoun] is always seeking new and exotic ingredients.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] quest for ingredients has brought [PAWN_objective] into some close calls with local flora and fauna.&lt;br /&gt;
| Cooking: {{+|6}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Expert handyman{{br}}(Handyman)&lt;br /&gt;
| [PAWN_nameDef] worked as a traveling engineer. [PAWN_pronoun] fixed things ranging from a simple communications array to the intricate software harness in his ship's AI meta-core. Nothing is beyond repair for [PAWN_objective].&lt;br /&gt;
| Construction: {{+|7}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Explorer{{br}}(Explorer)&lt;br /&gt;
| [PAWN_nameDef] traveled from planet to planet, gathering samples, stories, and research. He hoped one day to compile a record of every animal, plant, mineral, and machine and device in known space: The Complete Traveler's Guide to the RimWorlds.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Explorer-writer{{br}}(Explorer)&lt;br /&gt;
| [PAWN_nameDef] traveled from planet to planet, gathering samples, stories, and research. &lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] goal was to bring together enough knowledge to make a survival guide for future generations.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Explosives expert{{br}}(Blaster)&lt;br /&gt;
| [PAWN_nameDef] was an explosive engineer employed in mines. [PAWN_pronoun] took [PAWN_possessive] job very seriously and was well-versed in the technicalities - so much so that [PAWN_pronoun] refused to demean [PAWN_objective]self by helping with the clean-up once [PAWN_possessive] carefully-calculated explosion was complete.&lt;br /&gt;
| Mining: {{+|5}}&amp;lt;/br&amp;gt;Intellectual: {{+|5}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Faction leader{{br}}(Leader)&lt;br /&gt;
| Early in [PAWN_possessive] adulthood, [PAWN_nameDef] found [PAWN_objective]self surrounded by a gaggle of low-lifes. &lt;br /&gt;
&lt;br /&gt;
For fun, [PAWN_pronoun] gathered them and lead them to a certain death. [PAWN_pronoun] knew then that [PAWN_pronoun] had the talent to realize [PAWN_possessive] ambitions of leadership.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|8}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Factory worker{{br}}(Worker)&lt;br /&gt;
| [PAWN_nameDef] did menial, unskilled work in an industrial-era factory. [PAWN_possessive] job also included caring for the mules and horses which transported goods around the city.&lt;br /&gt;
| Animals: {{+|3}}&amp;lt;/br&amp;gt;Construction: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Artistic{{br}}Cooking{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Fallen official{{br}}(Official)&lt;br /&gt;
| [PAWN_nameDef] was an official for an autocratic government.&lt;br /&gt;
&lt;br /&gt;
When [PAWN_possessive] superiors demanded [PAWN_pronoun] participate in atrocities, [PAWN_nameDef] resigned and escaped from [PAWN_possessive] homeworld with nothing but the clothes on [PAWN_possessive] back.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| ManualSkilled{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Fearful chef{{br}}(Chef)&lt;br /&gt;
| [PAWN_nameDef] was a excellent chef who worked in a high-end restaurant.&lt;br /&gt;
&lt;br /&gt;
One day, [PAWN_pronoun] left the stove on, and accidentally burned down the whole building. This event shook [PAWN_objective] so much that [PAWN_pronoun] swore to never touch a stove again.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Cooking{{br}}Firefighting{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Feline scientist{{br}}(Scientist)&lt;br /&gt;
| [PAWN_nameDef] became a renowned scientist in the field of felines. Wanting the best for his animals and specializing in selective breeding, he set out on a journey to find the perfect breeding grounds for his cats.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Fervent researcher{{br}}(Researcher)&lt;br /&gt;
| As a young adult, Holly was sure that her planet and its people were nearing their time of transcendence.&lt;br /&gt;
&lt;br /&gt;
A firm belief that her research would be the catalyst drove her to increasingly alarming acts as bureaucrats and bioethics committees worked to stall her progress.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|8}}&lt;br /&gt;
| ManualDumb{{br}}ManualSkilled{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Fighter controller{{br}}(Controller)&lt;br /&gt;
| During the Zartha crisis, Bashkire fought across many worlds, providing the vital link between the ground and the air as a fighter controller. During the campaign, he saw friends injured and killed. This mental trauma haunts his dreams to this day, but his aim remains sharp.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|1}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Flaneur{{br}}(Flaneur)&lt;br /&gt;
| [PAWN_nameDef] strolled and sipped his way through the streets and cafes of [PAWN_possessive] world, pursuing freedom at every turn, never becoming attached.&lt;br /&gt;
&lt;br /&gt;
Through all this time, [PAWN_pronoun] remained distrustful of others. And never took an order from anyone.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|6}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Forest prowler{{br}}(Prowler)&lt;br /&gt;
| [PAWN_nameDef] led a band of wild men in the forest. They foraged for food, hunted, and sometimes murdered more civilized people to steal their shiny objects.&lt;br /&gt;
| Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Mining{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{check}} || {{check}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Frontier marshal{{br}}(Marshal)&lt;br /&gt;
| Nate was the marshal of his colony. He tried to honorably uphold the law, but the corrupt local mayor killed his family and left him for dead.&lt;br /&gt;
&lt;br /&gt;
After regaining his health, Nate arrested the mayor. [PAWN_pronoun] left his homeworld and started a new life working to make a difference in the universe.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Fugitive{{br}}(Fugitive)&lt;br /&gt;
| [PAWN_nameDef] rebelled against the corporation [PAWN_pronoun] worked for. [PAWN_pronoun] failed, and was forced him to go on the run.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was always on the move, always leaving everything behind. [PAWN_pronoun] tried to gain supporters for [PAWN_possessive] cause, but failed due to [PAWN_possessive] poor social skills.&lt;br /&gt;
&lt;br /&gt;
| Plants: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Cooking: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Game developer{{br}}(Game dev)&lt;br /&gt;
| [PAWN_nameDef] was an independent game developer.{{br}}After an early success, [PAWN_possessive] career quickly degenerated into a circus of misguided ideas, deals gone wrong, and desperate, failed PR stunts.&lt;br /&gt;
| Construction: {{--|2}}&amp;lt;/br&amp;gt;Mining: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Game tester{{br}}(Tester)&lt;br /&gt;
| Making a new life on a barely-livable planet after nuclear war, [PAWN_nameDef] was able to fulfill his desires with money borrowed from his father.&lt;br /&gt;
&lt;br /&gt;
He loved playing a particular colony simulator. His favorite thing to do in the game was to build elaborate hospitals. Spending most of his time playing, he forgot horrors of war and his need for revenge.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gang boss{{br}}(Boss)&lt;br /&gt;
| To survive, [PAWN_nameDef]'s gang often had to rob interstellar traders for food and supplies. Sometimes he had to kill the guards. Sometimes he had to kill the police who arrived to stop him.&lt;br /&gt;
&lt;br /&gt;
After years of this, he became one of the most-wanted criminals in the local stellar empire.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|6}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gang soldier{{br}}(Soldier)&lt;br /&gt;
| Living for many years between three raider settlements, [PAWN_nameDef] persevered through many challenges: a spacecraft implosion, cryptostasis, crashlanding on a miserable dustball of a planet, and nursing an old man back to health, and many of battles.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] eventually took control of a violent gang.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Artistic{{br}}Hauling{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gardener{{br}}(Gardener)&lt;br /&gt;
| On industrial worlds, wealth concentrates in the hands of those who own the factories and sell the goods. [PAWN_nameDef] worked at the mansion of one such rich family, tending the lavish gardens as part of a team of servants.&lt;br /&gt;
| Plants: {{+|8}}&lt;br /&gt;
| Intellectual{{br}}Crafting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Genetic engineer{{br}}(Geneticist)&lt;br /&gt;
| [PAWN_nameDef] carried out [PAWN_possessive] first genetic experiments on farm animals. [PAWN_pronoun] soon grew to become quite skilled in all forms of genetic engineering.&lt;br /&gt;
&lt;br /&gt;
A horrifying lab accident left him with a mortal fear of rodents.&lt;br /&gt;
| Plants: {{+|1}}&amp;lt;/br&amp;gt;Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Genetic scientist{{br}}(Geneticist)&lt;br /&gt;
| After the war he joined a genetic engineering firm. He worked on enhancements for humans and livestock. His experiences in inflicting and healing wounds were very beneficial to his work, but he developed a black sense of humor. This made social gatherings awkward. &lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}Crafting{{br}}Cooking{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Geologist{{br}}(Geologist)&lt;br /&gt;
| [PAWN_nameDef] worked with miners and cave-diggers, identifying rock types and natural formations.{{br}}During [PAWN_possessive] years underground [PAWN_pronoun] also gained experience repairing drilling machines and other technical equipment.&lt;br /&gt;
| Mining: {{+|8}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gigolo{{br}}(Gigolo)&lt;br /&gt;
| [PAWN_nameDef] sold [PAWN_objective]self into slavery for money to purchase boomrat pizza. [PAWN_pronoun] was then traded to the Zeglar colonies, where he worked as a male prostitute.&lt;br /&gt;
&lt;br /&gt;
In a fluke event, [PAWN_pronoun] managed to join other escaping slaves as they hijacked a ship. After fighting with the captain of the slave crew over the last piece of boomrat pizza, [PAWN_nameDef] was sent off the ship in an escape pod.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|6}}&amp;lt;/br&amp;gt;Cooking: {{+|7}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Glitterworld empath{{br}}(Empath)&lt;br /&gt;
| [PAWN_nameDef] had an amazing ability to relate to others and mediate conflict. [PAWN_pronoun] was selected to train as an empath. The training intensified [PAWN_possessive] natural abilities, but [PAWN_pronoun] became unable to harm others.&lt;br /&gt;
| Social: {{+|8}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Glitterworld officer{{br}}(Officer)&lt;br /&gt;
| Though glitterworlds are peaceful places, they often remain prepared for war. [PAWN_nameDef]'s unit rarely saw any real action.{{br}}Though [PAWN_pronoun] pursued [PAWN_possessive] artistic hobbies, [PAWN_possessive] subordinates preferred to entertain themselves by brawling, so [PAWN_nameDef] got good at breaking up fights.&lt;br /&gt;
| Melee: {{+|6}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Glitterworld surgeon{{br}}(Surgeon)&lt;br /&gt;
| [PAWN_nameDef] worked as a surgeon on a world mostly free of disease and human suffering.{{br}}[PAWN_possessive] job mostly involved elaborate and creative cosmetic surgeries. [PAWN_pronoun] has a good understanding of human biology, but never had to remove a cancer — or a bullet.&lt;br /&gt;
| Artistic: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gnomebiologist{{br}}(Biologist)&lt;br /&gt;
| Gizmo was a xenobiology professor in a glitterworld university. He went to conferences and managed an art gallery.&lt;br /&gt;
&lt;br /&gt;
However, he never stopped sculpting yard gnomes, and considers this to be his true profession.&lt;br /&gt;
&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|7}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Cooking{{br}}Firefighting{{br}}Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Government agent  {{br}}(Agent)&lt;br /&gt;
| [PAWN_nameDef] worked for the government against rebel groups and excelled in this capacity. During [PAWN_possessive] training [PAWN_pronoun] was taught firearms, melee combat and medical skills.&lt;br /&gt;
&lt;br /&gt;
Having grown up in a war-ravaged city, dirt, blood and dead bodies don’t bother [PAWN_objective] and [PAWN_pronoun] sees no reason to clean them up.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Graphic designer{{br}}(Designer)&lt;br /&gt;
| Kees' interest in artistic expression led him to become a designer. His eye for detail made him a reasonably well-known artist on his planet, though his meticulousness often led him to spend too much time perfecting a single project.&lt;br /&gt;
| Artistic: {{+|7}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Guardian{{br}}(Guardian)&lt;br /&gt;
| After [PAWN_pronoun] learned what truly matters in life, [PAWN_nameDef] changed for the better. [PAWN_pronoun] learned to work hard and protect the things that matter - not money or material things, but friends and loved ones.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] became a professional guardian.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gun dealer{{br}}(Gun dealer)&lt;br /&gt;
| [PAWN_nameDef] traded high-tech firearms between warring factions.&lt;br /&gt;
&lt;br /&gt;
Over time, [PAWN_pronoun] became very skilled at conducting product demonstrations and negotiating profitable deals.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|8}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gunfighter{{br}}(Gunfighter)&lt;br /&gt;
| [PAWN_nameDef] was a deadly shot. Peace wasn't for him. [PAWN_pronoun] found [PAWN_possessive] family among the brothers and sisters that [PAWN_pronoun] spent years fighting alongside.&lt;br /&gt;
&lt;br /&gt;
After most of those close to [PAWN_objective] died, [PAWN_pronoun] once again set off to lend [PAWN_possessive] gun to those who needed it - or those who could pay.&lt;br /&gt;
| Shooting: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
! Healer{{br}}(Healer)&lt;br /&gt;
| [PAWN_nameDef] took the time to admire the beauty of the world.&lt;br /&gt;
&lt;br /&gt;
Her passive aggressiveness surfaced once in a while, but she tried to adapt to her changing life.&lt;br /&gt;
| Plants: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|7}}&lt;br /&gt;
| ManualDumb{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Hedge fund manager{{br}}(Banker)&lt;br /&gt;
| A top hedge fund manager on a teeming urbworld, [PAWN_nameDef]'s portfolio grew rapidly as he charmed clients with a sweet voice and devious intent. When the deal turned out too good to be true, he was forced to flee the planet with a bounty on his head.&lt;br /&gt;
&lt;br /&gt;
As he travelled the stars he found a passion in the arts, making masterpieces fit for high society customers.&lt;br /&gt;
| Construction: {{--|2}}&amp;lt;/br&amp;gt;Plants: {{--|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|7}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Herbalist{{br}}(Herbalist)&lt;br /&gt;
| [PAWN_nameDef] lived in the forest near a village. Though many of the villagers feared [PAWN_objective], sick villagers would come to [PAWN_objective] to purchase salves and poultices made from the herbs [PAWN_pronoun] grew in [PAWN_possessive] garden. [PAWN_pronoun] was happy to help them — for a price.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Herpetologist{{br}}(Herper)&lt;br /&gt;
| After a terrible mining accident, [PAWN_nameDef] set off into space in search of exotic new animal species.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] hoped to leave [PAWN_possessive] past behind and find long-lived companions. [PAWN_pronoun] knew the pain of loss too well.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Animals: {{+|6}}&lt;br /&gt;
| Mining{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hired assassin{{br}}(Assassin)&lt;br /&gt;
| Axle was a master thief, working mostly for organized crime. Over time, he made a name for himself and shifted his business into the paid &amp;quot;removal&amp;quot; of human threats.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hired gun{{br}}(Hired gun)&lt;br /&gt;
| [PAWN_nameDef] always wanted to prove [PAWN_pronoun] could make a living without [PAWN_possessive] parents' help. [PAWN_pronoun] did shady jobs that often involved pointing guns at innocent people.&lt;br /&gt;
&lt;br /&gt;
He eventually made enough money to board a cheap freighter. He discovered why it was so cheap when it crashed.&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hired muscle{{br}}(Hired thug)&lt;br /&gt;
| Knowing what life on the streets was truly like, [PAWN_nameDef] slipped into police work. However, a particularly disturbing case ended with him beating the perpetrator to death.&lt;br /&gt;
&lt;br /&gt;
Dishonorably discharged from his duties, he used his contacts and skills to find work as a thug for hire.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hiveworld drone{{br}}(Drone)&lt;br /&gt;
| [PAWN_nameDef] worked as a mindless construction drone in a massive hiveworld civilization. Though [PAWN_pronoun] is now freed from the brutal social experiments to which [PAWN_pronoun] was subjected, [PAWN_pronoun] remains incapable of creative thought and leadership.&lt;br /&gt;
| Construction: {{+|5}}&amp;lt;/br&amp;gt;Mining: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Artistic{{br}}Intellectual{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! House servant{{br}}(Servant)&lt;br /&gt;
| Early in [PAWN_possessive] adulthood, [PAWN_nameDef] was kidnapped and sold to wealthy aristocrats as a domestic servant.{{br}}[PAWN_pronoun] got to know the kitchens and basements of [PAWN_possessive] master's mansion well, but never did any work outside.&lt;br /&gt;
| Cooking: {{+|4}}&amp;lt;/br&amp;gt;Plants: {{--|3}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Housemate{{br}}(Housemate)&lt;br /&gt;
| As an adult, [PAWN_nameDef] kept house and cared for children while [PAWN_possessive] spouse worked.&lt;br /&gt;
| Cooking: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Human computer{{br}}(Computer)&lt;br /&gt;
| [PAWN_nameDef] turned out to have an excellent memory and a gift for performing complex calculations in [PAWN_possessive] head. A midworld dictator decided to employ [PAWN_nameDef] to keep track of [PAWN_possessive] state's finances and expenditure, since electrical computers were too susceptible to hacking.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|7}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Human trafficker{{br}}(Trafficker)&lt;br /&gt;
| [PAWN_nameDef] stole children from their homes to sell them to interested buyers.&lt;br /&gt;
&lt;br /&gt;
Over time, he lost what little moral sense he had left.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hunter of the king{{br}}(Pest guard)&lt;br /&gt;
| [PAWN_nameDef] was forced to protect his colony in the name of the king after a mysterious outbreak of murderous genetically-modified wildlife.&lt;br /&gt;
&lt;br /&gt;
Despite his best efforts, his kingdom was destroyed. [PAWN_nameDef] developed PTSD, a hatred of animals and a bad case of technophobia. [PAWN_pronoun] was named for the place they found him.&lt;br /&gt;
| Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{--|3}}&lt;br /&gt;
| Animals{{br}}Artistic{{br}}PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hunter{{br}}(Hunter)&lt;br /&gt;
| Hawke was a master hunter.&lt;br /&gt;
&lt;br /&gt;
He learned to track and trap any animal in the most dangerous of places, and had deep knowledge of many ingenious methods for taking down specific large animals.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|6}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Imperial general{{br}}(General)&lt;br /&gt;
| [PAWN_nameDef]'s thirst for power defined [PAWN_objective]. [PAWN_pronoun] quickly rose through the military ranks and soon attained the rank of general.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was given with the most challenging task - conquering distant and unexplored rim worlds. Victory here could even position [PAWN_objective] as a successor to the emperor.&lt;br /&gt;
| Construction: {{--|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Information broker{{br}}(Broker)&lt;br /&gt;
| [PAWN_nameDef] caught a ship to the next star system and began a life of travel and learning, quickly collecting a massive bank of knowledge from people of all shapes and sizes.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned to sell this knowledge for great profit, and became a powerful broker of information.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{--|1}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Intelligence agent{{br}}(Agent)&lt;br /&gt;
| Because of his hacking skills, Wedge was recruited by his home planet's governing body to serve as an intelligence agent. The government trained him in combat, but he prefers psychological warfare.&lt;br /&gt;
&lt;br /&gt;
Government rules proved too strict for him, so he went rogue. His current activities are unknown.&lt;br /&gt;
| Shooting: {{+|7}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|8}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Intimate assassin{{br}}(Assassin)&lt;br /&gt;
| [PAWN_nameDef] was a professional assassin. She was sadistic, calculating, and appeared utterly harmless.&lt;br /&gt;
&lt;br /&gt;
She preferred using intimate means to dispatch her targets. This fulfilled both her contracts and her own personal desire for control.&lt;br /&gt;
| Melee: {{+|8}}&amp;lt;/br&amp;gt;Social: {{+|4}}&lt;br /&gt;
| Caring{{br}}Animals{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Inventor{{br}}(Inventor)&lt;br /&gt;
| On [PAWN_possessive] homeworld, [PAWN_nameDef] worked as a moderately successful inventor. [PAWN_pronoun] developed several minor technologies.&lt;br /&gt;
| Crafting: {{+|5}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Involuntary hermit{{br}}(Hermit)&lt;br /&gt;
| [PAWN_nameDef]’s escape pod was jettisoned onto an unexplored region of a frontier world. She eked out a lonely existence with only a herd of muffalo for company.&lt;br /&gt;
 &lt;br /&gt;
Later, she was spotted clad in pygmy wombat furs, discussing the importance of hoof hygiene with a group of elderly muffalo.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Jailbird{{br}}(Jailbird)&lt;br /&gt;
| [PAWN_nameDef] spent most of [PAWN_possessive] life in prisons, where [PAWN_pronoun] was put to work in the kitchens. [PAWN_pronoun] had a habit of getting into fights, and developed an aggressive way of speaking.&lt;br /&gt;
| Melee: {{+|5}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&lt;br /&gt;
| Social{{br}}Caring{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Joywire artist{{br}}(Joywirer)&lt;br /&gt;
| [PAWN_nameDef] worked in an urbworld lab developing cutting-edge joywire software to maximize user pleasure.{{br}}When the local government imposed harsh restrictions on joywire manufacturing, [PAWN_pronoun] began selling [PAWN_possessive] products on the black market.&lt;br /&gt;
| Artistic: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! King of pirates{{br}}(Pirate)&lt;br /&gt;
| As a self-proclaimed king of pirates, [PAWN_nameDef] was ruthless. Manipulative in nature, [PAWN_pronoun] was not afraid to sacrifice the people around [PAWN_objective] in service of [PAWN_possessive] own goals. [PAWN_pronoun] was a good shot, but even more skilled with a sword, and [PAWN_pronoun] loved the adrenaline rush of close combat.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|8}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Animals: {{+|3}}&lt;br /&gt;
| Artistic{{br}}Cooking{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Language analyst{{br}}(Linguist)&lt;br /&gt;
| After war broke out on [PAWN_possessive] homeworld, [PAWN_nameDef] was conscripted as a linguist. [PAWN_pronoun] spent [PAWN_possessive] days in a space station, decoding enemy communications and tending the hydroponic crops.&lt;br /&gt;
&lt;br /&gt;
After a meteorite damaged the station, [PAWN_pronoun] was forced to enter cryptosleep and hope for rescue.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|8}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Lazy programmer{{br}}(Programmer)&lt;br /&gt;
| [PAWN_nameDef] independently developed software that had a competitive edge against local urbworld corporations.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] legally questionable methods lead to a growing number in unsolved claims of intellectual property theft.&lt;br /&gt;
| Intellectual: {{+|8}}&lt;br /&gt;
| PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Lone traveler{{br}}(Traveler)&lt;br /&gt;
| After escaping [PAWN_possessive] homeworld on a jury-rigged ship, [PAWN_nameDef] traveled to new worlds to experience their beauty.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] joined resistance groups and applied the skills [PAWN_pronoun] cultivated on [PAWN_possessive] homeworld. [PAWN_pronoun] often warned of the nuclear horror [PAWN_pronoun] saw as a child.&lt;br /&gt;
| Plants: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Lost marine{{br}}(Traitor)&lt;br /&gt;
| Shortly after being promoted to a respected position in his planet's military, [PAWN_nameDef] disappeared without a trace.&lt;br /&gt;
&lt;br /&gt;
Later, he reappeared at the head of his own military force. No one knows why he became who he was.&lt;br /&gt;
| Shooting: {{+|7}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|6}}&lt;br /&gt;
| ManualDumb{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Lost soldier{{br}}(Lost)&lt;br /&gt;
| [PAWN_nameDef]'s childhood soldier conditioning failed, and the experiment was shut down. [PAWN_pronoun] was abandoned, purposeless, friendless.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] eventually found solace in physically demanding work. [PAWN_pronoun] especially liked building houses and crafting heavy armor.&lt;br /&gt;
| Construction: {{+|5}}&amp;lt;/br&amp;gt;Intellectual: {{--|3}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Low-wage worker{{br}}(Grunt)&lt;br /&gt;
| [PAWN_nameDef] worked a variety of casual jobs to support [PAWN_possessive] family, gaining a set of basic hands-on skills.&lt;br /&gt;
| Cooking: {{+|4}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Luddite rebel{{br}}(Luddite)&lt;br /&gt;
| When the majority of people on [PAWN_possessive] world chose to give up their individuality and biological humanity to join together in an online hivemind, [PAWN_nameDef] joined a rebel faction that chose to forsake most technology.&lt;br /&gt;
| Melee: {{+|3}}&amp;lt;/br&amp;gt;Construction: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Crafting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Machine collector{{br}}(Collector)&lt;br /&gt;
| [PAWN_nameDef] was obsessed with old machines and arcane pieces of technology. [PAWN_pronoun] obtained them wherever [PAWN_pronoun] could, and loved taking them apart to see how they worked.{{br}}[PAWN_pronoun] had a habit of talking about [PAWN_possessive] collection long after people around [PAWN_objective] had stopped listening.&lt;br /&gt;
| Social: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|6}}&amp;lt;/br&amp;gt;Intellectual: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Machine fixer{{br}}(Fixer)&lt;br /&gt;
| [PAWN_nameDef] was adept at dealing with mechanical problems, as long as the problem didn't involve the kitchen.&lt;br /&gt;
&lt;br /&gt;
After a life spent around dangerous machinery and flammable chemicals, [PAWN_pronoun] learned how to patch [PAWN_objective]self up pretty well. Despite the pain, [PAWN_pronoun] never learned to dislike fire.&lt;br /&gt;
| Construction: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Cooking{{br}}Firefighting{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mad accountant{{br}}(Accountant)&lt;br /&gt;
| As an accountant, [PAWN_nameDef] often socialized with colleagues, and made many friends in upper management.&lt;br /&gt;
&lt;br /&gt;
One day, [PAWN_nameDef] discovered a corruption racket run by some of [PAWN_possessive] bosses. After reporting this, [PAWN_pronoun] was fired. Wishing to hunt down those responsible, [PAWN_pronoun] went on a mass murder spree.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mad scientist{{br}}(Scientist)&lt;br /&gt;
| [PAWN_nameDef]'s lust for knowledge was only matched by his disdain for anyone who would stand in the way of his research.&lt;br /&gt;
&lt;br /&gt;
Traveling from world to world, he sought answers to questions few dared to ask.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|7}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Caring{{br}}Animals{{br}}Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mad scientist{{br}}(Scientist)&lt;br /&gt;
| After finishing her education, [PAWN_nameDef] was hired by the planet's leading genetic researcher. Later, she was caught running illegal, inhumane experiments.&lt;br /&gt;
&lt;br /&gt;
Despite her family's influence, she was convicted and sentenced to hard labor on a penal colony.&lt;br /&gt;
| Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&amp;lt;/br&amp;gt;Animals: {{--|2}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mad scientist{{br}}(Scientist)&lt;br /&gt;
| Stripped of his life’s work and exiled after his unethical experiments on the survivors of the Callos IX incident were published, [PAWN_nameDef] learned the skills necessary to survive in the outer rim.&lt;br /&gt;
&lt;br /&gt;
Continuing his research with nothing left to lose, he made minions to carry out the tasks that bored him.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Shooting: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Hauling{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mafia boss{{br}}(Boss)&lt;br /&gt;
| [PAWN_nameDef] was a high-ranking member of an urbworld crime syndicate.{{br}}[PAWN_pronoun] bribed officials, maintained the loyalty of [PAWN_possessive] subordinates, and extracted overdue payments - by any means necessary.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|4}}&lt;br /&gt;
| ManualDumb{{br}}Caring{{br}}Cooking{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Marble doctor{{br}}(Doctor)&lt;br /&gt;
| On a bomb-blasted world, first aid is often the only aid.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] used his medical skills to help the injured and the sick. [PAWN_pronoun] believed that while guns and machines may be powerful, a doctor is even more so.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|8}}&lt;br /&gt;
| Crafting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Master chef{{br}}(Chef)&lt;br /&gt;
| On a glitterworld, [PAWN_nameDef] found a job washing dishes at a famous restaurant and worked [PAWN_possessive] way up the ranks.&lt;br /&gt;
&lt;br /&gt;
A few years later, [PAWN_possessive] career came to an end when someone poisoned the meal [PAWN_pronoun] was preparing for the mayor. Jobless, [PAWN_pronoun] and left to explore the stars once again.&lt;br /&gt;
| Cooking: {{+|8}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Master trader{{br}}(Trader)&lt;br /&gt;
| [PAWN_nameDef] was a master at trading. [PAWN_pronoun] earned his nickname by helping a village through a trying time.&lt;br /&gt;
| Social: {{+|8}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&lt;br /&gt;
| Mining{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mathematician{{br}}(Math prof)&lt;br /&gt;
| [PAWN_nameDef] did mathematical research at a university.{{br}}[PAWN_pronoun] spent much of [PAWN_possessive] spare time immersed in shooting simulations, though [PAWN_pronoun] was frequently ridiculed by other players for [PAWN_possessive] terrible aim.&lt;br /&gt;
| Shooting: {{--|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|8}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mech war veteran{{br}}(Veteran)&lt;br /&gt;
| [PAWN_nameDef] fought against swarms of rogue mechanoids since he was old enough to enlist. [PAWN_pronoun] has bled on half a dozen worlds and has lost more than he cares to recall. These experiences left him hardened, both mentally and physically.&lt;br /&gt;
| Shooting: {{+|7}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mechanics engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] loved solving problems and, with [PAWN_possessive] steady hands and a reputation for quality work, earned a job as a mechanical engineer. [PAWN_pronoun] built and redesigned devices of all shapes and sizes.&lt;br /&gt;
&lt;br /&gt;
Eventually, [PAWN_pronoun] was able to pick and choose [PAWN_possessive] corporate clients. [PAWN_pronoun] made several wealthy friends, as well as a few powerful enemies.&lt;br /&gt;
| Construction: {{+|5}}&amp;lt;/br&amp;gt;Plants: {{--|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medic soldier {{br}}(Medic)&lt;br /&gt;
| [PAWN_nameDef] enrolled in his planetary army as a frontline medic. He soon knew the horrors of war and was deeply marked by them.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] left the military and his homeworld and began researching medicine and helping those he came across.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|7}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medical scientist{{br}}(Scientist)&lt;br /&gt;
| Benjamin enlisted as a doctor on a passing science vessel. Roaming the stars with a large crew of xenohumans and transbirds, he did genetic research on encountered species. He developed a deep friendship with one transbird but was forced to leave the ship when the captain dismissed all non-avians.&lt;br /&gt;
| Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval doctor{{br}}(Quack)&lt;br /&gt;
| [PAWN_nameDef] worked as a doctor on a medieval planet. [PAWN_pronoun] firmly believes that most ailments can be cured with a little bloodletting.{{br}}[PAWN_pronoun] was also a master anaesthetist, developing a specialty technique that involved a heavy blow to the head.&lt;br /&gt;
| Melee: {{+|6}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval farm oaf{{br}}(Oaf)&lt;br /&gt;
| Tilling, hoeing, guiding ox carts, pushing wheelbarrows. Digging ditches, planting seeds, predicting the harvest.{{br}}Medieval-level farmers aren't educated in the usual sense, but they know a lot about growing plants without technology. That said, such a life leaves one essentially incapable of participating in intellectual, technology-driven activities.&lt;br /&gt;
| Plants: {{+|8}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval knight {{br}}(Knight)&lt;br /&gt;
| William fought for king and country on the battlefield, where he further honed his skill as a swordsman. His greatest glory was leading a charge into an enemy courtroom and capturing the king at sword point.&lt;br /&gt;
&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|6}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval lord{{br}}(Noble)&lt;br /&gt;
| [PAWN_nameDef] was a lord on a preindustrial planet. [PAWN_pronoun] went to parties, managed the underlings, and even learned some swordplay.{{br}}[PAWN_possessive] soft hands did not hold a work tool during that entire time. [PAWN_pronoun] considers manual labor to be beneath [PAWN_objective].&lt;br /&gt;
| Social: {{+|7}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&amp;lt;/br&amp;gt;Shooting: {{+|5}}&lt;br /&gt;
| ManualDumb{{br}}ManualSkilled{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval minstrel{{br}}(Minstrel)&lt;br /&gt;
| [PAWN_nameDef] was a traveling entertainer on a medieval world.{{br}}[PAWN_pronoun] could always be found telling stories or singing songs, and is capable of protecting [PAWN_objective]self from the dangers of the road. However, [PAWN_pronoun] was always conspicuously absent whenever there was hard labour to be done.&lt;br /&gt;
| Social: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| ManualSkilled{{br}}Hauling{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mental patient{{br}}(Patient)&lt;br /&gt;
| [PAWN_nameDef] was placed in a psychiatric hospital. There, [PAWN_pronoun] spent [PAWN_possessive] time engaged in the calming activities of the asylum.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was eventually released, but [PAWN_pronoun] retained [PAWN_possessive] emotional distance, [PAWN_possessive] curiosity about human anatomy, and [PAWN_possessive] namesake manic giggling.&lt;br /&gt;
| Plants: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Cooking{{br}}Firefighting{{br}}Mining{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mercenary chef{{br}}(Mercenary)&lt;br /&gt;
| Following in his family's footsteps, [PAWN_nameDef] was a soldier for hire.&lt;br /&gt;
&lt;br /&gt;
He is a naturally gifted sharpshooter. However, his real passion is in perfecting a new recipe or dissecting a new gadget. &lt;br /&gt;
| Construction: {{--|3}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|5}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mercenary leader{{br}}(Mercenary)&lt;br /&gt;
| Alone, [PAWN_nameDef] set out to rebuild [PAWN_possessive] father's life's work. [PAWN_pronoun] challenged the leader of a small band of mercenaries and took control, then led the band as they hijacked trade ships and stole valuable cargo.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] men mutinied. [PAWN_pronoun] was abandoned, arrested, and sentenced to death.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mercenary lord{{br}}(Merc lord)&lt;br /&gt;
| [PAWN_nameDef] formed a mercenary company out of freelancers who wanted to make good money while also making slightly better-than-average moral choices. [PAWN_pronoun] called it the Ashmarines.&lt;br /&gt;
&lt;br /&gt;
To avoid the core worlds' military forces, [PAWN_pronoun] moved his company to the rim worlds. There, [PAWN_pronoun] established bases and communities. In ruling, [PAWN_pronoun] maintained a form of order among the raiders and madmen of deep space.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|7}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Animals{{br}}Mining{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mercenary pilot{{br}}(Mercenary)&lt;br /&gt;
| [PAWN_nameDef] convinced his squadron to abscond with their ships and make a course for the rim worlds. There they could fight for the causes they believed in.&lt;br /&gt;
&lt;br /&gt;
His men were loyal and fought hard, but their ideals soon faded away and their cause became that of the highest bidder.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|1}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mercenary{{br}}(Merc)&lt;br /&gt;
| Vas spent his teenage years as a mercenary, being hired to kill and maim others. He was tall, menacing, and frightening. He could instill fear into the hearts of any man who crossed him, and kill anyone he wanted.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mercenary{{br}}(Mercenary)&lt;br /&gt;
| After escaping a crew of rimworld slavers, Graham developed a lack of respect for life. He proceeded to sign on to a mercenary group where he developed skills using guns and survival techniques. Graham did dirty work where he found it, and traveled to many worlds.&lt;br /&gt;
&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|5}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mercenary{{br}}(Mercenary)&lt;br /&gt;
| After escaping his home planet, [PAWN_nameDef] fell in with a band of mercenaries. [PAWN_pronoun] fought alongside his brothers and sisters in arms for many years.&lt;br /&gt;
&lt;br /&gt;
One day, they were caught in a fight they couldn't win. Refusing to retreat, [PAWN_nameDef] was shot down by his enemies. [PAWN_pronoun] was alarmed to awake in a heap of corpses, mysteriously unharmed.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|6}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Message carrier{{br}}(Messenger)&lt;br /&gt;
| On a medieval world, the fastest way to send a message is to give it to somebody on a horse and hope they survive the journey. [PAWN_nameDef] was that somebody.&lt;br /&gt;
| Melee: {{+|3}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Microbiologist{{br}}(Biologist)&lt;br /&gt;
| A plague struck [PAWN_nameDef]'s native urbworld. [PAWN_nameDef] and other researchers revealed that the illness was a bioweapon, but the people turned on them, blaming them for the sickness.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] barely escaped his homeworld as it fell into chaos.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Midworld chef{{br}}(Chef)&lt;br /&gt;
| [PAWN_nameDef] ran a high-class midworld restaurant. [PAWN_pronoun] was famous among patrons for [PAWN_possessive] creative culinary specialties, and infamous among kitchen workers for [PAWN_possessive] casual disdain for grunt work.&lt;br /&gt;
| Cooking: {{+|6}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Midworld sailor{{br}}(Sailor)&lt;br /&gt;
| [PAWN_nameDef] joined his country's Royal Navy. After years as a non-commissioned officer, he eventually cracked and used the skills he had acquired to start a mutiny on his ship.&lt;br /&gt;
&lt;br /&gt;
In the end, [PAWN_nameDef] was the leader of a large group of trained and dangerous pirates. He henceforth always had chefs to cook for him.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|4}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Military commissar{{br}}(Commissar)&lt;br /&gt;
| [PAWN_nameDef] was an internal spymaster in an Imperial army battalion. [PAWN_pronoun] made sure that the men were loyal, and did not fall back unless ordered. This made [PAWN_objective] unpopular, but [PAWN_pronoun] gained great skill at detecting the slightest dishonesty.&lt;br /&gt;
| Shooting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Military engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] worked as an engineer for a colonial military. [PAWN_pronoun] got to play with weapons, murder-drones, and other 'fun' stuff.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] specialized in repairing and modifying mechanoids' tools. Sometimes [PAWN_pronoun] tested them [PAWN_objective]self.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Military gunsmith{{br}}(Gunsmith)&lt;br /&gt;
| When [PAWN_possessive] world was thrown into conflict, [PAWN_nameDef] was conscripted along with many of [PAWN_possessive] peers into the war machine that tore across the planet.&lt;br /&gt;
&lt;br /&gt;
With [PAWN_possessive] particular expertise, [PAWN_pronoun] was lucky enough to find a position serving as small arms mechanic rather than on the front line.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{+|1}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Military inventor{{br}}(Inventor)&lt;br /&gt;
| Jackson, in a final act of rebellion, left his father's lab and joined the local Imperial military.&lt;br /&gt;
&lt;br /&gt;
He used his laboratory skills to design machines of war. At this he was one of the best on his planet.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Military officer{{br}}(Officer)&lt;br /&gt;
| Obsessed with interstellar travel, [PAWN_nameDef] left [PAWN_possessive] desolate life behind to join a military academy in hopes of becoming a pilot.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was trained in advanced combat and survival skills. While [PAWN_pronoun] excelled in [PAWN_possessive] studies, [PAWN_nameDef] was a loner and never cared about [PAWN_possessive] crewmates.&lt;br /&gt;
&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|8}}&amp;lt;/br&amp;gt;Social: {{--|3}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Militia soldier{{br}}(Soldier)&lt;br /&gt;
| [PAWN_nameDef] joined the militia forces and fought for rights and peace.&lt;br /&gt;
&lt;br /&gt;
After her homeworld was unexpectedly destroyed in the wars, she traveled great distances, seeking a refuge where she could build a new, free way of life.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mindwiped assassin{{br}}(Mindwipe)&lt;br /&gt;
| The corporation took and remade [PAWN_nameDef]. They trained [PAWN_objective] into an tool of destruction and subversion. [PAWN_pronoun] took to [PAWN_possessive] new life, finding satisfaction in the jobs they sent [PAWN_objective] on.&lt;br /&gt;
&lt;br /&gt;
When [PAWN_pronoun] learned that they planned on disposing of [PAWN_objective], [PAWN_nameDef] turned on his masters, killing several and fleeing the planet.&lt;br /&gt;
| Shooting: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Minister{{br}}(Minister)&lt;br /&gt;
| [PAWN_nameDef] managed to secure an important position in the government of a minor glitterworld. [PAWN_pronoun] got used to the opulence, while attempting to keep [PAWN_possessive] citizens content. [PAWN_pronoun] had ample time for pleasure and indulgence – though [PAWN_pronoun] never forgot how to do hard work.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Missionary{{br}}(Missionary)&lt;br /&gt;
| [PAWN_nameDef] decided to devote [PAWN_possessive] life to religious service. [PAWN_pronoun] made a vow of peace and spent several years preaching and serving food in soup kitchens for the homeless.&lt;br /&gt;
| Social: {{+|6}}&amp;lt;/br&amp;gt;Cooking: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mob henchman{{br}}(Henchman)&lt;br /&gt;
| After being &amp;quot;saved&amp;quot; from his home world by a slaver ship, [PAWN_nameDef] was sold to an urbworld crime lord, where he was used as a henchman. He specialized in low-tech beat-downs and intimidation.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|7}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Model{{br}}(Model)&lt;br /&gt;
| [PAWN_nameDef] modelled clothes and jewellery for advertisers, and was also used as a physical blueprint for characters in virtual reality simulations.&lt;br /&gt;
| Social: {{+|5}}&amp;lt;/br&amp;gt;Artistic: {{+|6}}&lt;br /&gt;
| ManualDumb{{br}}Intellectual{{br}}ManualSkilled{{br}}Caring{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Muffalo researcher{{br}}(Researcher)&lt;br /&gt;
| [PAWN_nameDef] specialized in studying and manipulating the genetic code of the muffalo.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] work left little time to develop an appreciation for the arts or other people's company.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mutinous captain{{br}}(Captain)&lt;br /&gt;
| [PAWN_nameDef] was taken to the stars by slavers after [PAWN_possessive] tribe was decimated in a raid. Over the years [PAWN_pronoun] learned the language of [PAWN_possessive] captors, eventually working for them as an interpreter and diplomat.&lt;br /&gt;
&lt;br /&gt;
The captain only learned of [PAWN_nameDef]'s true cunning when revenge was taken by form of mutiny.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|8}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Navy scientist{{br}}(Scientist)&lt;br /&gt;
| Interstellar warfare is won by technology, so imperial navies are always on the peak of modern research. Even better, they have first access to archotechnological artifacts because they find them in space.{{br}}[PAWN_nameDef] worked in a navy lab.&lt;br /&gt;
| Intellectual: {{+|8}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Novelist&lt;br /&gt;
| [PAWN_nameDef] lived on a glitterworld, penning wildly successful novels. [PAWN_pronoun] lived a carefree lifestyle, spending [PAWN_possessive] days writing and [PAWN_possessive] nights partying - and never did a day's manual labour in [PAWN_possessive] life.&lt;br /&gt;
| Construction: {{--|5}}{{br}}Mining: {{--|5}}{{br}}Artistic: {{+|8}}&lt;br /&gt;
| Dumb labor{{br}}Social&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Nurse&lt;br /&gt;
| [PAWN_nameDef] worked in an industrial-era hospital, doing routine work such as changing bandages and taking temperatures.{{br}}It was a busy job, but [PAWN_pronoun] could always find time for a chat with a patient.&lt;br /&gt;
| Social: {{+|4}}&lt;br /&gt;
| Violent&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Paramedic&lt;br /&gt;
| [PAWN_nameDef]'s job was to respond rapidly to medical emergencies. [PAWN_pronoun] is used to dealing with severe injuries with only limited medical supplies.{{br}}[PAWN_pronoun] treated so many gunshot wounds over the years that even seeing a gun made [PAWN_objective] uncomfortable.&lt;br /&gt;
| Shooting: {{--|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pit brawler{{br}}(Brawler)&lt;br /&gt;
| [PAWN_nameDef] was nine years old when [PAWN_pronoun] got in [PAWN_possessive] first fight. [PAWN_pronoun] won, but more important was the enjoyment of [PAWN_possessive] audience. Pit fighting turned out to be a lucrative career for those who could survive it. And it was even mostly legal.&lt;br /&gt;
| Melee: {{+|8}}&lt;br /&gt;
| Intellectual{{br}}Caring&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Psychiatric patient{{br}}(Patient)&lt;br /&gt;
| [PAWN_nameDef] spent most of [PAWN_possessive] adult life in an insane asylum. [PAWN_possessive] industrial homeworld had a poor understanding of mental illness, and [PAWN_pronoun] was treated more like an animal than a person.{{br}}Though [PAWN_pronoun] eventually recovered and was released, [PAWN_possessive] experience dampened many of [PAWN_possessive] basic life skills.&lt;br /&gt;
| Cooking: {{--|2}}{{br}}Crafting: {{--|2}}&lt;br /&gt;
| Social{{br}}Caring{{br}}Violent&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Ranch owner{{br}}(Rancher)&lt;br /&gt;
| [PAWN_nameDef] owned and operated a successful ranch where [PAWN_pronoun] raised animals for meat and wool.{{br}}[PAWN_pronoun] refused to do any dumb labour [PAWN_pronoun] could pay someone else to do for [PAWN_objective].&lt;br /&gt;
| Mining: {{--|4}}{{br}}Cooking: {{--|4}}{{br}}Animals: {{+|8}}&lt;br /&gt;
| Dumb labor&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Recruiter&lt;br /&gt;
| [PAWN_nameDef] was part of an revered order of martial artists, infamous both for their skill in combat and for their practice of refusing to treat their wounded.{{br}}[PAWN_pronoun] travelled [PAWN_possessive] homeworld, judging the young people [PAWN_pronoun] met to determine if they might be suitable for training.&lt;br /&gt;
| Melee: {{+|5}}{{br}}Social: {{+|5}}&lt;br /&gt;
| Caring&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sailor&lt;br /&gt;
| [PAWN_nameDef] traversed the oceans on journeys of exploration, seeking out plant and animal specimens from exotic places, and occasionally fending off pirates. [PAWN_pronoun] loved the sea so much [PAWN_pronoun] refused to do all but the barest minimum of work on land, except to sell the treasures [PAWN_pronoun] collected.&lt;br /&gt;
| Melee: {{+|4}}{{br}}Animals: {{+|4}}{{br}}Social: {{+|4}}&lt;br /&gt;
| Skilled labor&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Scout&lt;br /&gt;
| Since [PAWN_possessive] tribe has made contact with local outlanders, [PAWN_nameDef] has contracted [PAWN_possessive] services out as a guide to the local area. Frequent contact with ancient relics has made [PAWN_objective] fairly comfortable with the old technology.&lt;br /&gt;
| Shooting: {{+|2}}{{br}}Social: {{+|2}}{{br}}Intellectual: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Sculptor&lt;br /&gt;
| [PAWN_nameDef] started off sculpting person-sized chunks of stone, but [PAWN_pronoun] soon began to think bigger. With the help of mining robots, [PAWN_pronoun] learned how to carve huge monuments out of cliffsides. Soon the nature parks of the glitterworld where [PAWN_pronoun] lived were full of giant rock figures.&lt;br /&gt;
| Mining: {{+|4}}{{br}}Plants: {{--|4}}{{br}}Artistic: {{+|9}}&lt;br /&gt;
| Dumb labor{{br}}Crafting{{br}}Cooking&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sheriff&lt;br /&gt;
| [PAWN_nameDef] was the law enforcer in an isolated industrial town. [PAWN_pronoun] dealt with petty crime, dispute resolution, and the occasional drunken saloon shootout.&lt;br /&gt;
| Shooting: {{+|4}}{{br}}Melee: {{+|4}}{{br}}Social: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Space marine{{br}}(Marine)&lt;br /&gt;
| [PAWN_nameDef] was a warrior in an Imperial navy. [PAWN_possessive] job was to punch into enemy starships, gun down the crew, and capture the ship intact. And [PAWN_pronoun] was good at it.&lt;br /&gt;
| Shooting: {{+|7}}{{br}}Melee: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Space pirate{{br}}(Pirate)&lt;br /&gt;
| Piracy appears everywhere that governments are weak and society spread thin. [PAWN_nameDef] was part of this age-old part of human existence, extorting and smashing peaceful trade ships for profit.&lt;br /&gt;
| Shooting: {{+|4}}{{br}}Melee: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Starship janitor{{br}}(Janitor)&lt;br /&gt;
| While other passengers pass the years between star systems in cryptosleep sarcophagi, [PAWN_nameDef] had to wake up at periodic intervals to perform inspections, check the navigation systems, and to oil the mechanoids.&lt;br /&gt;
| Construction: {{+|2}}{{br}}Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Tactician&lt;br /&gt;
| [PAWN_nameDef] joined the space navy in an unstable system, fraught with large-scale interplanetary wars. [PAWN_pronoun] turned out to have a sharp mind for battle, and became adept at commanding large armies to great effect.&lt;br /&gt;
| Shooting: {{+|4}}{{br}}Intellectual: {{+|4}}&lt;br /&gt;
| Social{{br}}Artistic&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Taster&lt;br /&gt;
| As the taster for a medieval king, any dish served at the royal table had to be sampled first by [PAWN_nameDef]. [PAWN_pronoun] lived a decadent lifestyle at court, getting fat and doing very little work.&lt;br /&gt;
| Construction: {{--|4}}{{br}}Cooking: {{+|7}}{{br}}Crafting: {{--|4}}&lt;br /&gt;
| Dumb labor&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Taxonomist&lt;br /&gt;
| [PAWN_nameDef] travelled between star systems, studying and classifying the plant and animal life [PAWN_pronoun] found in the hopes of creating a complete catalogue.&lt;br /&gt;
| Plants: {{+|5}}{{br}}Animals: {{+|5}}&lt;br /&gt;
| Violent&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Teacher&lt;br /&gt;
| [PAWN_nameDef] was educated in the liberal arts and taught at a public school. [PAWN_pronoun] was widely knowledgeable and well-liked by [PAWN_possessive] students.&lt;br /&gt;
| Social: {{+|4}}{{br}}Intellectual: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Torturer&lt;br /&gt;
| Working for a tyrannical monarch on a medieval world, [PAWN_nameDef] earned a reputation as an expert in 'persuasion.' Any prisoner who went down into the dungeons left with no secrets - and with [PAWN_nameDef]'s smile scarred permanently into their nightmares.&lt;br /&gt;
| Melee: {{+|6}}&lt;br /&gt;
| Social{{br}}Caring&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Urbworld entrepreneur{{br}}(Entrepreneur)&lt;br /&gt;
| In the urbworlds, most suffer. But someone has to run the corporations.{{br}}[PAWN_nameDef] learned the skills of the trade - greasing palms and technical analysis. [PAWN_pronoun] is a sociointellectual machine.&lt;br /&gt;
| Social: {{+|6}}{{br}}Intellectual: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Veterinarian{{br}}(Vet)&lt;br /&gt;
| [PAWN_nameDef] treated sick and injured animals for a living. Seeing their suffering affected [PAWN_possessive] stance on the practice of eating meat, and for many years [PAWN_pronoun] lived as a vegetarian, rejecting the meat-loving culinary tradition of [PAWN_possessive] homeworld.&lt;br /&gt;
| Cooking: {{--|4}}{{br}}Animals: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! VR designer{{br}}(Game dev)&lt;br /&gt;
| [PAWN_nameDef] designed virtual reality simulations for glitterworld citizens. [PAWN_pronoun] paid great attention to the details of [PAWN_possessive] worlds, including learning all [PAWN_pronoun] could about plant life to make [PAWN_possessive] landscapes more realistic.&lt;br /&gt;
| Construction: {{+|3}}{{br}}Plants: {{+|4}}{{br}}Artistic: {{+|5}}&lt;br /&gt;
| Dumb labor&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Warrior&lt;br /&gt;
| [PAWN_nameDef] was a fearsome warrior, proficient with many weapons. [PAWN_pronoun] participated in many battles.&lt;br /&gt;
| Shooting: {{+|2}}{{br}}Melee: {{+|6}}{{br}}Social: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Weaver&lt;br /&gt;
| [PAWN_nameDef] was an expert at working muffalo wool, plant fibres and natural dyes into beautiful clothing for [PAWN_possessive] kin. [PAWN_possessive] beautiful handicrafts were traded frequently between local tribes.&lt;br /&gt;
| Plants: {{+|2}}{{br}}Crafting: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=List_of_adulthood_backstories&amp;diff=63385</id>
		<title>List of adulthood backstories</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=List_of_adulthood_backstories&amp;diff=63385"/>
		<updated>2019-05-07T19:09:19Z</updated>

		<summary type="html">&lt;p&gt;Mehni: Part D-G of the definitive list of backstories, sourced from build 2231. Script made. This is as they appear in the game.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;amp;larr; &amp;lt;small&amp;gt;[[Backstories]]&amp;lt;/small&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| {{STDT| sortable c_17}}&lt;br /&gt;
!Title &amp;lt;br/&amp;gt; (Short Title) !!Description !!Skill Modifications !!Incapable of !!Civil !!Raider !!Slave !!Trader !!Traveler !!Tribal&lt;br /&gt;
|-&lt;br /&gt;
! Ace fighter pilot{{br}}(Ace)&lt;br /&gt;
| [PAWN_nameDef] graduated from the Star Academy with honors and distinguished himself as an ace fighter pilot in three campaigns against more advanced aggressor cultures. &lt;br /&gt;
&lt;br /&gt;
However, after one vicious battle, he found himself stranded and his carrier ship destroyed. With nowhere to go, he entered his escape pod and prayed.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Acolyte of stars{{br}}(Priest)&lt;br /&gt;
| Ever the dreamer, [PAWN_nameDef] traveled across the universe to find the thing he felt was calling to him.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] became poorer and poorer, but used every means possible to carry on.&lt;br /&gt;
| Intellectual: {{--|3}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|7}}&lt;br /&gt;
| ManualDumb{{br}}Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Actor{{br}}(Actor)&lt;br /&gt;
| [PAWN_nameDef] travelled [PAWN_possessive] homeworld with a company of actors, playing to packed theatres and loving audiences everywhere. [PAWN_pronoun] was a perfectionist, and made [PAWN_possessive] own props and costumes rather than use the ones [PAWN_pronoun] was given.&lt;br /&gt;
| Social: {{+|8}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Addiction counsel{{br}}(Counselor)&lt;br /&gt;
| After recovering from a joywire addiction, [PAWN_nameDef] adopted a non-violent way of life and vowed to help others.&lt;br /&gt;
&lt;br /&gt;
Travelling between communities, [PAWN_pronoun] used medicine, arts, and crafts to aid others who struggled with their own addictions.&lt;br /&gt;
| Social: {{+|8}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Adventurer{{br}}(Adventurer)&lt;br /&gt;
| [PAWN_nameDef]'s thirst for adventure took [PAWN_objective] to many planets. [PAWN_pronoun] visited the brightest glitterworlds and the darkest war-torn toxic planets in [PAWN_possessive] quest to find novelty and excitement.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] worked as little as possible, often skirting ethical boundaries to make a quick buck. Among all jobs, [PAWN_pronoun] hated cooking the most.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&amp;lt;/br&amp;gt;Animals: {{+|2}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Adventurous weirdo{{br}}(Weirdo)&lt;br /&gt;
| A creative but strange individual, [PAWN_nameDef] dedicated his life to his twin passions of medieval world history and high technology.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was fascinated by the idea of becoming a 'skyknight' with glittering armor and a giant sword.&lt;br /&gt;
| Shooting: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|6}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Mining{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aerospace engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] was an engineer responsible for the production of aircraft and spaceships. [PAWN_pronoun] focused on improving production lines, and was known for [PAWN_possessive] mastery of technical and research issues.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! AI programmer{{br}}(Programmer)&lt;br /&gt;
| Michael enlisted in the military's robotics division, developing smarter combat AI.&lt;br /&gt;
&lt;br /&gt;
The whole time he was there, he never spoke with another human. He spent all his time conversing with the AI he was developing.&lt;br /&gt;
| Intellectual: {{+|7}}&amp;lt;/br&amp;gt;Crafting: {{+|6}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! AI researcher{{br}}(Researcher)&lt;br /&gt;
| Dave was a renowned researcher in artificial intelligence, robotics, and interactive holography. His friendships with the artificial minds he created gave him the confidence to interact with real people, and he soon excelled at personal communication.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Mining: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Alcoholic trucker{{br}}(Alcoholic)&lt;br /&gt;
| [PAWN_nameDef] was a space trucker working for Arcknight Industries when he killed his wife and daughter in a crash.&lt;br /&gt;
&lt;br /&gt;
His body was repaired with an experimental nano-genetic therapy. Now his muscles continually regenerate and harden, and every movement tears the tissue anew. He bears the pain in silence.&lt;br /&gt;
| Mining: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Caring{{br}}Social{{br}}Artistic{{br}}Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Anarchist rebel{{br}}(Anarchist)&lt;br /&gt;
| After being abandoned on a special operation, [PAWN_nameDef] swore vengeance upon the state. [PAWN_pronoun] formed an anarchist group dedicated to bringing down core world governments.&lt;br /&gt;
&lt;br /&gt;
After too many close calls, and too few successes, [PAWN_nameDef] fled to the outer rim.&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|6}}&lt;br /&gt;
| Crafting{{br}}Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Archaeologist{{br}}(Explorer)&lt;br /&gt;
| [PAWN_pronoun] was trapped in an uninspired life. One day, [PAWN_pronoun] jumped on a ship to learn archaeology and see the universe.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned how to survive. [PAWN_pronoun] also learned about people - although [PAWN_pronoun] understood the dead better than the living.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Architect{{br}}(Architect)&lt;br /&gt;
| [PAWN_nameDef] designed and constructed buildings. On [PAWN_possessive] glitterworld home, most of the technical aspects of architecture were handled by an AI. This enabled [PAWN_objective] to push the artistic limits of the craft, but also meant [PAWN_pronoun] never had to get [PAWN_possessive] hands dirty at building sites.&lt;br /&gt;
| Construction: {{+|5}}&amp;lt;/br&amp;gt;Artistic: {{+|7}}&amp;lt;/br&amp;gt;Crafting: {{--|3}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Archotech spy{{br}}(AI spy)&lt;br /&gt;
| [PAWN_nameDef] was a cybernetic researcher. Studying a transcended world, [PAWN_pronoun] became too involved with [PAWN_possessive] subjects. Over time, the archotech machine core recruited [PAWN_objective] into its service, and used [PAWN_objective] as a spy.&lt;br /&gt;
&lt;br /&gt;
When [PAWN_pronoun] later rebelled against [PAWN_possessive] non-human master, it sent mechanoids across space to hunt [PAWN_objective] down.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Mining{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Army cook{{br}}(Cook)&lt;br /&gt;
| Ben joined the army as a worker and spent most of his time cooking and repairing. While he was stationed on a dangerous planet, he underwent basic shooting and survival training.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Caring{{br}}Social{{br}}Firefighting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Army scientist{{br}}(Scientist)&lt;br /&gt;
| [PAWN_nameDef] did scientific research for a planetary army. [PAWN_pronoun] studied war scenarios and designed weapon systems to help win battles with a minimum of fuss.&lt;br /&gt;
| Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Army sergeant{{br}}(Sergeant)&lt;br /&gt;
| [PAWN_nameDef] served in [PAWN_possessive] nation's military, commanding small units as a non-commissioned officer.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] excelled creating tactically sound plans despite difficult circumstances.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aromatherapist{{br}}(Therapist)&lt;br /&gt;
| [PAWN_nameDef] practiced aromatherapy, using essences extracted from home-grown plants.&lt;br /&gt;
| Plants: {{+|6}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artifact hunter{{br}}(Artifacter)&lt;br /&gt;
| [PAWN_nameDef] became depressed and lost interest in life. [PAWN_pronoun] travelled from planet to planet, searching for psychic artifacts amid mechanoid ruins in the hope that they would cure the pain in [PAWN_possessive] soul.&lt;br /&gt;
&lt;br /&gt;
A steady trigger finger and careful planning kept [PAWN_nameDef] alive.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|8}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artificer rampant{{br}}(Artificer)&lt;br /&gt;
| Fuelled by the thrill of discovery and his own megalomania, [PAWN_nameDef] set out to invent new devices and improve existing ones, breaking laws and customs as necessary.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] formed a crew to gather materials for [PAWN_possessive] work - and to deal with outsiders who might interfere.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|8}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Ascetic priest{{br}}(Priest)&lt;br /&gt;
| After taking a vow of silence, [PAWN_nameDef] joined a monastery on a peaceful backwater planet to spend [PAWN_possessive] days in quiet contemplation.{{br}}[PAWN_pronoun] found happiness growing vegetables in the garden and making cheese in the monastery cellars.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| Violent{{br}}Social{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Assassin{{br}}(Assassin)&lt;br /&gt;
| Robin was specially trained as an operative to be used for high-risk assassinations. His skill with a rifle was unrivalled.&lt;br /&gt;
&lt;br /&gt;
He was eventually betrayed by his superiors when a target found out about the hit and offered to fund their future projects. Robin swore to never trust anyone again.&lt;br /&gt;
| Shooting: {{+|7}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}Crafting{{br}}Cooking{{br}}Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! AWOL soldier{{br}}(Soldier)&lt;br /&gt;
| [PAWN_nameDef] was an infantryman.&lt;br /&gt;
&lt;br /&gt;
When [PAWN_pronoun] was informed of his assignment to the Xennoa-Zartza War, [PAWN_pronoun] decided [PAWN_pronoun] did not want to be a soldier. [PAWN_pronoun] was able to escape via military spacejet.&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bandit leader{{br}}(Bandit)&lt;br /&gt;
| [PAWN_nameDef] rose up the ranks of the crime organization, eventually becoming the leader of one of their most remote cells of bandits. His dog Rest never left his side.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Banished soldier{{br}}(Outlaw)&lt;br /&gt;
| [PAWN_nameDef] became the most physically intimidating of the slaves, spending his little free time obsessively sculpting his body. His efforts eventually paid off when the lord offered him a job as a personal bodyguard.&lt;br /&gt;
&lt;br /&gt;
Later, when he plotted to use his position to kill the lord and free the slaves, he was discovered and barely escaped with his life.&lt;br /&gt;
| Melee: {{+|7}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bartender{{br}}(Barkeep)&lt;br /&gt;
| [PAWN_nameDef] worked as a bartender on a seedy space station. The job entailed one part drink mixing, one part diplomacy, and one part head-bashing.&lt;br /&gt;
| Social: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Battle mechanic{{br}}(Mechanic)&lt;br /&gt;
| [PAWN_nameDef] was a tech-obsessed mercenary in an early fusion-era system.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was unusually obsessed with gathering the right gear, and often customized [PAWN_possessive] own equipment with original modifications.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Battlefield tech{{br}}(Technician)&lt;br /&gt;
| [PAWN_nameDef] had received firearms training, but [PAWN_possessive] work was focused on technical adaption and manipulation of combat mechanoids on the battlefield.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] developed PTSD after narrowly escaping a primitive firebomb attack in a wheat field. The army medically discharged him from service.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Firefighting{{br}}PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Beast slayer{{br}}(Slayer)&lt;br /&gt;
| [PAWN_nameDef] traveled between planets, following news of animal attacks. [PAWN_pronoun] would camp on the planet for weeks, learning about [PAWN_possessive] prey before striking. [PAWN_pronoun] most enjoyed hunting thrumbos.&lt;br /&gt;
&lt;br /&gt;
Preferring to work alone, [PAWN_nameDef] enjoyed the thrill of the hunt, and the meat from the kill.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Behaviour research{{br}}(Scientist)&lt;br /&gt;
| Captured as a feral child, [PAWN_nameDef] was forced into the ways of modern society. [PAWN_pronoun] quickly adapted and became a behavioural researcher, eventually owning a private facility.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] specialized in canines, but learned a great deal about all animals. [PAWN_pronoun] never had interest in plants, however.&lt;br /&gt;
| Plants: {{--|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Biosphere manager{{br}}(Botanist)&lt;br /&gt;
| [PAWN_nameDef] lived on a peaceful glitterworld where all menial work was done by robots and people devoted themselves to leisure. [PAWN_pronoun] managed the plant and animal life of a sprawling park, where citizens came to admire the natural beauty.&lt;br /&gt;
| Shooting: {{--|4}}&amp;lt;/br&amp;gt;Animals: {{+|6}}&amp;lt;/br&amp;gt;Plants: {{+|6}}&lt;br /&gt;
| ManualDumb{{br}}Crafting{{br}}Cooking{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blacksmith shooter{{br}}(Gunsmith)&lt;br /&gt;
| As a young blacksmith, [PAWN_nameDef]'s family shop was raided by the police. [PAWN_pronoun] shot two officers before they knocked him out and arrested him.&lt;br /&gt;
&lt;br /&gt;
Sentenced to life in prison, [PAWN_nameDef] learned about traveling and raiding from other criminals.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blacksmith{{br}}(Blacksmith)&lt;br /&gt;
| As a blacksmith on a medieval world, [PAWN_nameDef] gained a reputation for the high quality of [PAWN_possessive] work. [PAWN_pronoun] wasn't bad at using the swords [PAWN_pronoun] forged either.&lt;br /&gt;
| Mining: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|8}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blacksmith{{br}}(Blacksmith)&lt;br /&gt;
| As a smith on a medieval world, [PAWN_nameDef] gained a reputation for the high quality of [PAWN_possessive] work. [PAWN_pronoun] wasn't bad at using the swords [PAWN_pronoun] forged either.&lt;br /&gt;
| Shooting: {{--|5}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|6}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bloodgame survivor{{br}}(Bloodgamer)&lt;br /&gt;
| [PAWN_nameDef] was sold to the Corestars Entertainment Company and used as meat in one of the company's system-wide broadcast shows.&lt;br /&gt;
 &lt;br /&gt;
[PAWN_possessive] manipulative nature made [PAWN_objective] quite a nightmare, even to the audience. He was kicked out and exiled to a planet full of deadly animals, criminals and armed camera-drones.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|7}}&amp;lt;/br&amp;gt;Social: {{+|6}}&lt;br /&gt;
| Crafting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bloody dentist{{br}}(Dentist)&lt;br /&gt;
| After studying at a famous college, [PAWN_nameDef]'s weak personality eventually snapped under the strain of angry administrators and whining patients. [PAWN_pronoun] went on a secret murder spree, killing many of those under [PAWN_possessive] care.&lt;br /&gt;
&lt;br /&gt;
After a pursuit, [PAWN_pronoun] managed to escape [PAWN_possessive] planet and travel to a new world.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bloody wanderer{{br}}(Wanderer)&lt;br /&gt;
| [PAWN_nameDef] was a wanderer, traveling from town to town, taking odd jobs and stealing to live.&lt;br /&gt;
&lt;br /&gt;
One day, he had a mental break and went on a long rampage, destroying several towns and killing many. [PAWN_pronoun] eventually calmed, but [PAWN_possessive] bloodlust never left [PAWN_objective].&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Social{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bodyguard{{br}}(Bodyguard)&lt;br /&gt;
| [PAWN_nameDef] found work on a midworld, protecting whoever paid [PAWN_objective] from harm. [PAWN_pronoun] gained proficiency in many different combat forms, and was known for [PAWN_possessive] ruthlessness against those who crossed [PAWN_objective].&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bounty hunter{{br}}(Hunter)&lt;br /&gt;
| [PAWN_nameDef] is a self-employed bounty hunter. [PAWN_pronoun] spent [PAWN_possessive] days hunting space pirates and collecting cash bounties.&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bounty hunter{{br}}(Hunter)&lt;br /&gt;
| [PAWN_nameDef] was a bounty hunter on a massive glitterworld. [PAWN_pronoun] worked sensitive assignments for extremely wealthy clients, and was known for quiet execution and total discretion.&lt;br /&gt;
| Shooting: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bounty hunter{{br}}(Hunter)&lt;br /&gt;
| When the civil war ended, Mushinto had to find a new way to use his fighting skills. He decided to hunt down war criminals and soon realized that he enjoyed capturing  bad guys by any means necessary.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Brigand{{br}}(Brigand)&lt;br /&gt;
| [PAWN_nameDef] flew with a band of brigands [PAWN_pronoun] called friends. [PAWN_pronoun] even had a ship of [PAWN_possessive] own - The Dung Mucker 2000.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bush sniper{{br}}(Sniper)&lt;br /&gt;
| [PAWN_nameDef]'s peaceful life was cut short when [PAWN_possessive] country was brutally invaded.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] was drafted into service as soon as [PAWN_pronoun] was of legal age, and quickly showed an aptitude for rifles. [PAWN_pronoun] spent months living in the forests picking off soldiers who dared cross the border.&lt;br /&gt;
| Plants: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|6}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Business gangster{{br}}(Gangster)&lt;br /&gt;
| Staying one step ahead of the law, [PAWN_nameDef] became a legitimate businessman and silenced anyone who dared say otherwise. As proprietor of brothels, speakeasies and eateries, [PAWN_nameDef]'s good fortune continued while his competition suffered a series of unfortunate and unexplained accidents.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|7}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Caring{{br}}Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caravaneer{{br}}(Caravaneer)&lt;br /&gt;
| [PAWN_nameDef] was the leader of a caravan. [PAWN_pronoun] was responsible for the safety of [PAWN_possessive] caravan and was the head negotiator in countless trade deals.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] and [PAWN_possessive] people prospered, but their wealth made them a target for brigands. They often had to take up arms to fend off bandits and highwaymen.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|7}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cargo pilot{{br}}(Pilot)&lt;br /&gt;
| [PAWN_nameDef] was brought up by cargo hands on a long-haul ore transport ship. [PAWN_pronoun] perfected [PAWN_possessive] skills at trading and manipulation of people while running weapons between systems.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|1}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Casket builder{{br}}(Builder)&lt;br /&gt;
| [PAWN_nameDef] was fascinated with cryosleep, and spent [PAWN_possessive] life learning about the mysterious technology.&lt;br /&gt;
&lt;br /&gt;
Working as an assembler on a midworld, [PAWN_nameDef] built an experimental prototype casket from discarded parts. Unfortunately, while [PAWN_pronoun] was searching for the final component, [PAWN_possessive] home was leveled by a bomb.  &lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Castaway{{br}}(Castaway)&lt;br /&gt;
| [PAWN_nameDef] was a passenger on a routine interstellar transit. When his ship was destroyed, he lived as a castaway on an uninhabited planet for several years.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|02}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Castaway{{br}}(Castaway)&lt;br /&gt;
| [PAWN_nameDef] was the only survivor of a ship crash on an unhabited animal world. For many years until [PAWN_possessive] rescue [PAWN_pronoun] scrounged an existence out of whatever [PAWN_pronoun] could find.{{br}}[PAWN_possessive] survival skills became razor-sharp, but spending so long alone severely dampened [PAWN_possessive] conversatial abilities.&lt;br /&gt;
| Melee: {{+|5}}&amp;lt;/br&amp;gt;Animals: {{+|3}}&amp;lt;/br&amp;gt;Construction: {{+|4}}&lt;br /&gt;
| Intellectual{{br}}Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caveworld illuminator{{br}}(Illuminator)&lt;br /&gt;
| Among tunnel-dwellers, those with vision as strong as [PAWN_nameDef]’s are revered as sages. [PAWN_pronoun] would lead the way, marking spots to dig with bioluminescent fungus and warning others of impending danger.&lt;br /&gt;
| Mining: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Charity worker{{br}}(Altruist)&lt;br /&gt;
| Glitterworlds are havens of safety and comfort for those lucky enough to live there, but [PAWN_nameDef] could not ignore nearby planets where people suffered in poverty. [PAWN_pronoun] spent [PAWN_possessive] working life appealing for donations and supporting those in need.&lt;br /&gt;
| Social: {{+|6}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Chemist{{br}}(Chemist)&lt;br /&gt;
| [PAWN_nameDef] was a renowned chemist on a thriving midworld.&lt;br /&gt;
&lt;br /&gt;
After performing inhumane experiments that turned men into beasts, [PAWN_pronoun] was arrested and banished to a far-off rim world.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|6}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Chemist{{br}}(Chemist)&lt;br /&gt;
| [PAWN_nameDef] was a research chemist. [PAWN_pronoun] worked with chemicals, from pharmaceuticals to explosives, to develop new substances and treatments.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Chief engineer{{br}}(Engineer)&lt;br /&gt;
| As chief engineer on board a large spaceship, [PAWN_nameDef] was an expert in all things fiddly and complex.&lt;br /&gt;
&lt;br /&gt;
She relied on other members of the crew for some of the basic necessities of life. She and her ship eventually disappeared into a longsleep voyage of exploration.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Civil engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] was a well-known civil engineer. [PAWN_possessive] job involved designing and maintaining rock fortification structures. [PAWN_pronoun] did enough statistical analysis to keep his mind sharp.&lt;br /&gt;
| Construction: {{+|7}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Civil servant{{br}}(Clerk)&lt;br /&gt;
| [PAWN_nameDef] worked as a low-ranking administrator for a moribund government bureaucracy. [PAWN_pronoun] is most at home filling out complicated paperwork and playing office politics.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Construction: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Clan chief{{br}}(Chief)&lt;br /&gt;
| [PAWN_nameDef] managed a small criminal clan on an outlying trade hub world.&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Social: {{+|7}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Clone farmer{{br}}(Cloner)&lt;br /&gt;
| Harvesting the products of clone farms is mostly done by the clones themselves -particularly to those whose sims tended towards the social. This clone was one such, who escaped from the farms and headed out to the stars.&lt;br /&gt;
| Social: {{+|6}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Cooking{{br}}Firefighting{{br}}Mining{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Coliseum fighter{{br}}(Fighter)&lt;br /&gt;
| Applying the knowledge that he gained from years around fighters, [PAWN_pronoun] became a successful gladiator in the coliseum that he once cleaned.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|5}}&amp;lt;/br&amp;gt;Social: {{--|1}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Colonial governor{{br}}(Governor)&lt;br /&gt;
| Disillusioned by rampant government corruption, Henry ran for governor and won. However, the local gangs and their pet officials soon forced him out of power.&lt;br /&gt;
&lt;br /&gt;
He left the community to return to his life as a marshal.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Colony engineer{{br}}(Engineer)&lt;br /&gt;
| The children took over the facility, and they declared independence from the corporation.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] had used the VR system to become a master engineer, and he worked diligently to prepare the colony for the corporation's inevitable return.&lt;br /&gt;
| Construction: {{+|7}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Colony settler{{br}}(Settler)&lt;br /&gt;
| [PAWN_nameDef] was a settler on a new colony world.{{br}}Such a life requires a jack-of-all trades at basic hands-on tasks.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Plants: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Combat engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] became a combat engineer. [PAWN_pronoun] built bases, fixed guns, and repaired vehicles for the army - when [PAWN_pronoun] wasn't shooting at people, that is.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Combat engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] was recruited by the military as an engineer and set to work improving the navy's space shuttles. The harsh training taught [PAWN_objective] how to build and repair military vehicles and structures.&lt;br /&gt;
&lt;br /&gt;
One mission left [PAWN_nameDef] with pyrophobia and a strong desire to avoid plants.&lt;br /&gt;
| Construction: {{+|6}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}Firefighting{{br}}PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Combat medic{{br}}(Medic)&lt;br /&gt;
| After his home country entered a large-scale war, Felix was drafted into the army as a combat medic.&lt;br /&gt;
&lt;br /&gt;
His few years in the trenches trying to keep his fellow soldiers alive gave him an acute sense for first aid. Losing many friend has made him stoic and reserved.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Combat medtech{{br}}(Medic)&lt;br /&gt;
| As a military medtech, [PAWN_nameDef]'s job was to fix and build anything he could get [PAWN_possessive] hands on, from living people to machines and mechs.&lt;br /&gt;
&lt;br /&gt;
Sent into dangerous areas, [PAWN_pronoun] never had a problem saving soldiers' lives and building the technology and machines needed to win.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Medicine: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|5}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Combat negotiator{{br}}(Negotiator)&lt;br /&gt;
| After escaping his homeworld, [PAWN_nameDef] took his skills to the stars.&lt;br /&gt;
&lt;br /&gt;
He chose to operate as a hired gun, working for various rebel organizations, enslaved groups, and merchant enclaves. His specialty was negotiation in combat situations.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Commoner lord{{br}}(Lord)&lt;br /&gt;
| After years of training in martial arts and diplomacy, [PAWN_nameDef] was eventually given land and subjects of [PAWN_possessive] own to rule.&lt;br /&gt;
&lt;br /&gt;
Because of [PAWN_nameDef]'s commoner heritage, the other lords disapproved. They framed [PAWN_objective] for a heinous crime, and the emperor had no choice but to exile [PAWN_objective].&lt;br /&gt;
| Melee: {{+|7}}&amp;lt;/br&amp;gt;Social: {{+|6}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Computer engineer {{br}}(Tech head)&lt;br /&gt;
| Bored of his code-monkey office job and missing the glory days of the Academy, [PAWN_nameDef] saw a commercial about the frontier where &amp;quot;only the strong survive&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
With his wife Morgan, [PAWN_nameDef] undertook a journey into the unknown.&lt;br /&gt;
| Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Con artist{{br}}(Con artist)&lt;br /&gt;
| [PAWN_nameDef] never created anything in [PAWN_possessive] life. [PAWN_pronoun] did, however, prove to be a natural at getting others to give [PAWN_objective] what they had created.&lt;br /&gt;
| Social: {{+|10}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Conceptual artist{{br}}(Artist)&lt;br /&gt;
| [PAWN_nameDef] was well-known in art circles on [PAWN_possessive] home world for [PAWN_possessive] unique and creative conceptual artworks.{{br}}Nobody was sure exactly what [PAWN_pronoun] was trying to communicate, but [PAWN_possessive] pieces were highly valued by collectors.&lt;br /&gt;
| Artistic: {{+|8}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Social{{br}}Caring{{br}}Hauling{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Construction engineer{{br}}(Builder)&lt;br /&gt;
| [PAWN_nameDef] was a construction worker on a midworld. [PAWN_pronoun] lead a team which built everything from office blocks to cathedrals.{{br}}[PAWN_possessive] busy job and numerous nearby fast-food outlets meant [PAWN_pronoun] never cooked for [PAWN_objective]self.&lt;br /&gt;
| Construction: {{+|8}}&amp;lt;/br&amp;gt;Plants: {{--|3}}&lt;br /&gt;
| Intellectual{{br}}Cooking{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Core world jeweler{{br}}(Jeweler)&lt;br /&gt;
| After Alyssa had completed all of her surgeries, she found that she had a lot of time and energy to dedicate to her passion: trinket crafting. She spent years perfecting her art as a jeweler, then left her home world to sell her wares across the galaxy.&lt;br /&gt;
&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|7}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corp researcher{{br}}(Researcher)&lt;br /&gt;
| [PAWN_nameDef] was a leading researcher for a massive space exploration corporation.&lt;br /&gt;
| Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corp researcher{{br}}(Researcher)&lt;br /&gt;
| [PAWN_nameDef] was sold to a corporation and put to work as a corporate slave doing scientific research.&lt;br /&gt;
&lt;br /&gt;
Unable to adapt to the social politics of his workplace, he buried himself in his work and failed to progress up the corporate ladder. Every day, he yearned to be left alone.&lt;br /&gt;
| Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corporate builder{{br}}(Builder)&lt;br /&gt;
| Even as [PAWN_pronoun] stewed in [PAWN_possessive] own wasted potential, [PAWN_nameDef] found [PAWN_pronoun] had a knack for moving objects quickly. It was just what the planetary mega-corps wanted in their construction divisions.&lt;br /&gt;
&lt;br /&gt;
Unfortunately, the monotonous work erased [PAWN_possessive] remaining creative impulses.&lt;br /&gt;
| Construction: {{+|7}}&amp;lt;/br&amp;gt;Mining: {{+|4}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cosmetic reject{{br}}(Reject)&lt;br /&gt;
| Living on the streets, Chaz submitted himself to an unethical cosmetics lab in exchange for food and shelter.&lt;br /&gt;
&lt;br /&gt;
After some painful cosmetic modification, Chaz barely resembles his former self. Having been forced to work for the lab until he was rescued, Chaz is now too afraid to lash out at anyone.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{+|5}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cosmetic surgeon{{br}}(Surgeon)&lt;br /&gt;
| [PAWN_nameDef] had a terrible bedside manner due to [PAWN_possessive] abrasiveness. [PAWN_pronoun] often bullied [PAWN_possessive] patients into getting cosmetic surgery. [PAWN_pronoun] made a lot of money this way.&lt;br /&gt;
&lt;br /&gt;
While very studious and careful in [PAWN_possessive] work, [PAWN_pronoun] never had to lift a finger doing domestic chores.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|8}}&amp;lt;/br&amp;gt;Artistic: {{+|6}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Costume crafter{{br}}(Costumer)&lt;br /&gt;
| By day, [PAWN_nameDef] was an office worker on a midworld. At night, [PAWN_pronoun] designed and built elaborate monster costumes for science fiction conventions.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned a great deal about sewing. Unfortunately this came at the cost of being able to cook anything more complex than an instant meal.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|8}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Counselor{{br}}(Counselor)&lt;br /&gt;
| A terrifying trauma when [PAWN_nameDef] was a young adult caused [PAWN_objective] to develop a serious eating disorder. With counseling [PAWN_pronoun] learned to have a healthier relationship with food, and decided to put [PAWN_possessive] new skills to use helping others overcome their emotional problems.&lt;br /&gt;
| Social: {{+|9}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Craft shaper{{br}}(Shaper)&lt;br /&gt;
| [PAWN_nameDef] locked [PAWN_objective]self in his studio for years, ordering delivery food to save time on cooking.&lt;br /&gt;
&lt;br /&gt;
Eventually, [PAWN_possessive] creations brought [PAWN_objective] the highest honor on Semantic World: Permission to materialize any design in minutes using the most advanced technologies.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|8}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Crime lord{{br}}(Crime lord)&lt;br /&gt;
| Through brutality and cruelty, [PAWN_nameDef] rose to the rank of crime lord.&lt;br /&gt;
&lt;br /&gt;
He relied less on his fists and more on his guns. His reputation spread faster due to his cold-bloodedness and ruthless methods.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Criminal kingpin{{br}}(Kingpin)&lt;br /&gt;
| [PAWN_nameDef] discovered his gift - people did what he said, when he said it. Taking advantage of this, he set off for the rimworlds planets to make a name for himself in the criminal underworld.&lt;br /&gt;
&lt;br /&gt;
Having people do things for him taught him to avoid manual labor at all costs.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|5}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Criminal surgeon{{br}}(Surgeon)&lt;br /&gt;
| Being near many injured fellow criminals, [PAWN_nameDef] took it upon [PAWN_objective]self to work on them.&lt;br /&gt;
&lt;br /&gt;
Although many people died, [PAWN_pronoun] did get better at using knives.&lt;br /&gt;
| Intellectual: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{+|6}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|5}}&amp;lt;/br&amp;gt;Artistic: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Deep space miner{{br}}(Miner)&lt;br /&gt;
| [PAWN_nameDef] did the sweaty, grimy work of pulling metal out of asteroids on a deep space rig. [PAWN_pronoun] used [PAWN_possessive] hands-on industrial skills daily - and wasn't bad in a bar fight either.&lt;br /&gt;
| Mining: {{+|7}}&amp;lt;/br&amp;gt;Construction: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Deep space surveyor{{br}}(Surveyor)&lt;br /&gt;
| [PAWN_nameDef] was a deep space surveyor. She studied which worlds were the most suitable for colonization.&lt;br /&gt;
&lt;br /&gt;
Her expeditions were met by hostile natives, green-painted space-women, and wannabe Greek gods. Surviving many firefights, she learned to build rudimentary lathes and rock cannons to fend off enemies.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Plants: {{--|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Defector {{br}}(Defector )&lt;br /&gt;
| [PAWN_nameDef] decided to leave the oppressive dictatorship where [PAWN_pronoun] lived. [PAWN_possessive] defection was not well-received, and agents were sent after [PAWN_objective].&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] spent years on the run. Since [PAWN_pronoun] could trust no doctor, [PAWN_pronoun] treated [PAWN_possessive] own wounds. The ordeal made [PAWN_objective] bitter and untrusting. &lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Animals{{br}}Artistic{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Defector{{br}}(Defector)&lt;br /&gt;
| Early in [PAWN_possessive] adulthood, [PAWN_nameDef] decided to leave the oppressive dictatorship where [PAWN_pronoun] lived. [PAWN_possessive] defection was not well-received, and agents were sent out after [PAWN_objective].{{br}}[PAWN_pronoun] spent years on the run, treating [PAWN_possessive] own wounds so no doctor could betray [PAWN_objective]. The ordeal made [PAWN_objective] bitter and untrusting.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Social: {{--|4}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Defense lawyer{{br}}(Lawyer)&lt;br /&gt;
| [PAWN_nameDef] found that [PAWN_pronoun] could make more money with a quick word than a blaster. Seeking a job where [PAWN_possessive] silver tongue could be useful, [PAWN_pronoun] turned to the law.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] often defended the illegal speeder racers [PAWN_pronoun] grew up with.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|8}}&lt;br /&gt;
| ManualDumb{{br}}ManualSkilled{{br}}Caring{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Destroyer-general{{br}}(General)&lt;br /&gt;
| [PAWN_nameDef] held the rank of Destroyer-General in a powerful midworld military.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was known for his mastery of weapons, and was also a good ship pilot.&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|6}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Discharged soldier{{br}}(Soldier)&lt;br /&gt;
| [PAWN_nameDef] prostituted himself to fund his drug habits. As an escape, [PAWN_pronoun] joined the military and learned to fight.&lt;br /&gt;
&lt;br /&gt;
Too smart for the army, [PAWN_pronoun] questioned and often disagreed with [PAWN_possessive] superiors' decisions. This eventually led to [PAWN_possessive] dishonorable discharge and left [PAWN_objective] with a chip on [PAWN_possessive] shoulder.&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Doomsday pariah{{br}}(Pariah)&lt;br /&gt;
| [PAWN_nameDef] managed to open a vault of otherworldly technology while scavenging a dig site. [PAWN_pronoun] unwittingly triggered a doomsday device that cleansed the planet of all life. More interested in the tech than human life, [PAWN_pronoun] boarded the vault’s spacecraft and departed to find more relics to abuse.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Dreaded dude{{br}}(Dude)&lt;br /&gt;
| Some followers say that [PAWN_nameDef] and [PAWN_possessive] crew of misfits found the Fountain of Youth, many, many centuries ago, and that they caused the extinction of the dinosaurs on many planets.&lt;br /&gt;
&lt;br /&gt;
There's even a religion about them, somewhere, involving noodles and meatballs.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|8}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Drifter{{br}}(Drifter)&lt;br /&gt;
| [PAWN_nameDef] never figured out what to do with [PAWN_possessive] life. [PAWN_pronoun] travelled often, taking up casual work wherever [PAWN_pronoun] found it.{{br}}[PAWN_pronoun] also occasionally worked on a novel that [PAWN_pronoun] knew would be a bestseller - just as soon as [PAWN_pronoun] could find a publisher who was interested.&lt;br /&gt;
| Cooking: {{+|3}}&amp;lt;/br&amp;gt;Construction: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{--|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Dromedary knight{{br}}(Knight)&lt;br /&gt;
| Having caught the eye of [PAWN_possessive] people's Sand King, [PAWN_nameDef] was trained in the Sandy Boomrat fighting technique.&lt;br /&gt;
&lt;br /&gt;
Always with a camel to carry his things, [PAWN_pronoun] served [PAWN_possessive] sand people faithfully.&lt;br /&gt;
| Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Hauling{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Drug lieutenant{{br}}(Drugman)&lt;br /&gt;
| [PAWN_nameDef] worked the drug trade under kingpin Grady Loughman. He had his men sell drugs when it was profitable, and fight the other cartels when the government came around.&lt;br /&gt;
&lt;br /&gt;
His social skills kept him on top of the political game, and he always had servants to cook and clean.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|7}}&amp;lt;/br&amp;gt;Medicine: {{+|7}}&lt;br /&gt;
| Artistic{{br}}Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Energy researcher{{br}}(Researcher)&lt;br /&gt;
| [PAWN_nameDef] was working on an idea for rapid communication over long distances. [PAWN_pronoun] made an error which destroyed [PAWN_possessive] lab and most of the city. [PAWN_pronoun] fled the planet to escape the authorities.&lt;br /&gt;
| Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{--|1}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] found a job as a tinkering engineer on the trading hub planet Irithir. Tough local traders forced him to learn negotiation skills, and he made good profits selling refurbished weapons and tools.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|8}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Engineered pilot{{br}}(Pilot)&lt;br /&gt;
| After his province was besieged by one of its neighbors, [PAWN_nameDef] volunteered for a generic modification program that created pilots for the very fighter craft that he had helped develop. The modifications allowed him to pilot the ship, but also made him less able to focus on the people around him.&lt;br /&gt;
&lt;br /&gt;
By this time, people were calling him &amp;quot;Squirrel.&amp;quot; &lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Envoy of the stars{{br}}(Envoy)&lt;br /&gt;
| [PAWN_nameDef] entered the diplomatic corps. Honor and tradition were the values he took with him on every mission.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] prestigious position distanced him from backbreaking manual labor, allowing [PAWN_objective] to focus on his wordsmithing abilities. He left the blacksmithing to others.&lt;br /&gt;
| Shooting: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|8}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}ManualSkilled{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Escaped convict{{br}}(Escapee)&lt;br /&gt;
| [PAWN_nameDef] denies involvement in the crimes that brought about [PAWN_possessive] incarceration in a brutal penal colony. [PAWN_pronoun] escaped by tunnelling beneath the perimeter using modified cutlery.&lt;br /&gt;
| Mining: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Evangelist{{br}}(Evangelist)&lt;br /&gt;
| As a youth, [PAWN_nameDef] experienced a religious awakening. [PAWN_pronoun] decided to spend the rest of [PAWN_possessive] life spreading the word of [PAWN_possessive] deity, the beauty of its culture, and its unusual medical tradition.&lt;br /&gt;
| Social: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Executive officer{{br}}(Executive)&lt;br /&gt;
| [PAWN_nameDef] was an executive officer for a large space trading corporation. After a failed attempt at manipulating his way up the corporate ladder, he was framed for the rape and murder of another executive and her family.&lt;br /&gt;
&lt;br /&gt;
He was found guilty. However, because of his family's influence, he was exiled instead of put to death.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|7}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Exiled researcher{{br}}(Exile)&lt;br /&gt;
| [PAWN_nameDef]'s love of robotics was not appreciated in her technophobic empire. The High Cardinal of the system excommunicated her, and she was never allowed to return.&lt;br /&gt;
| Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Exotic chef{{br}}(Chef)&lt;br /&gt;
| [PAWN_nameDef] has always gone overboard when it comes to food. [PAWN_pronoun] is always seeking new and exotic ingredients.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] quest for ingredients has brought [PAWN_objective] into some close calls with local flora and fauna.&lt;br /&gt;
| Cooking: {{+|6}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Expert handyman{{br}}(Handyman)&lt;br /&gt;
| [PAWN_nameDef] worked as a traveling engineer. [PAWN_pronoun] fixed things ranging from a simple communications array to the intricate software harness in his ship's AI meta-core. Nothing is beyond repair for [PAWN_objective].&lt;br /&gt;
| Construction: {{+|7}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Explorer{{br}}(Explorer)&lt;br /&gt;
| [PAWN_nameDef] traveled from planet to planet, gathering samples, stories, and research. He hoped one day to compile a record of every animal, plant, mineral, and machine and device in known space: The Complete Traveler's Guide to the RimWorlds.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Explorer-writer{{br}}(Explorer)&lt;br /&gt;
| [PAWN_nameDef] traveled from planet to planet, gathering samples, stories, and research. &lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] goal was to bring together enough knowledge to make a survival guide for future generations.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Explosives expert{{br}}(Blaster)&lt;br /&gt;
| [PAWN_nameDef] was an explosive engineer employed in mines. [PAWN_pronoun] took [PAWN_possessive] job very seriously and was well-versed in the technicalities - so much so that [PAWN_pronoun] refused to demean [PAWN_objective]self by helping with the clean-up once [PAWN_possessive] carefully-calculated explosion was complete.&lt;br /&gt;
| Mining: {{+|5}}&amp;lt;/br&amp;gt;Intellectual: {{+|5}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Faction leader{{br}}(Leader)&lt;br /&gt;
| Early in [PAWN_possessive] adulthood, [PAWN_nameDef] found [PAWN_objective]self surrounded by a gaggle of low-lifes. &lt;br /&gt;
&lt;br /&gt;
For fun, [PAWN_pronoun] gathered them and lead them to a certain death. [PAWN_pronoun] knew then that [PAWN_pronoun] had the talent to realize [PAWN_possessive] ambitions of leadership.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|8}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Factory worker{{br}}(Worker)&lt;br /&gt;
| [PAWN_nameDef] did menial, unskilled work in an industrial-era factory. [PAWN_possessive] job also included caring for the mules and horses which transported goods around the city.&lt;br /&gt;
| Animals: {{+|3}}&amp;lt;/br&amp;gt;Construction: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Artistic{{br}}Cooking{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Fallen official{{br}}(Official)&lt;br /&gt;
| [PAWN_nameDef] was an official for an autocratic government.&lt;br /&gt;
&lt;br /&gt;
When [PAWN_possessive] superiors demanded [PAWN_pronoun] participate in atrocities, [PAWN_nameDef] resigned and escaped from [PAWN_possessive] homeworld with nothing but the clothes on [PAWN_possessive] back.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| ManualSkilled{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Fearful chef{{br}}(Chef)&lt;br /&gt;
| [PAWN_nameDef] was a excellent chef who worked in a high-end restaurant.&lt;br /&gt;
&lt;br /&gt;
One day, [PAWN_pronoun] left the stove on, and accidentally burned down the whole building. This event shook [PAWN_objective] so much that [PAWN_pronoun] swore to never touch a stove again.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Cooking{{br}}Firefighting{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Feline scientist{{br}}(Scientist)&lt;br /&gt;
| [PAWN_nameDef] became a renowned scientist in the field of felines. Wanting the best for his animals and specializing in selective breeding, he set out on a journey to find the perfect breeding grounds for his cats.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Fervent researcher{{br}}(Researcher)&lt;br /&gt;
| As a young adult, Holly was sure that her planet and its people were nearing their time of transcendence.&lt;br /&gt;
&lt;br /&gt;
A firm belief that her research would be the catalyst drove her to increasingly alarming acts as bureaucrats and bioethics committees worked to stall her progress.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|8}}&lt;br /&gt;
| ManualDumb{{br}}ManualSkilled{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Fighter controller{{br}}(Controller)&lt;br /&gt;
| During the Zartha crisis, Bashkire fought across many worlds, providing the vital link between the ground and the air as a fighter controller. During the campaign, he saw friends injured and killed. This mental trauma haunts his dreams to this day, but his aim remains sharp.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|1}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Flaneur{{br}}(Flaneur)&lt;br /&gt;
| [PAWN_nameDef] strolled and sipped his way through the streets and cafes of [PAWN_possessive] world, pursuing freedom at every turn, never becoming attached.&lt;br /&gt;
&lt;br /&gt;
Through all this time, [PAWN_pronoun] remained distrustful of others. And never took an order from anyone.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|6}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Forest prowler{{br}}(Prowler)&lt;br /&gt;
| [PAWN_nameDef] led a band of wild men in the forest. They foraged for food, hunted, and sometimes murdered more civilized people to steal their shiny objects.&lt;br /&gt;
| Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Mining{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{check}} || {{check}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Frontier marshal{{br}}(Marshal)&lt;br /&gt;
| Nate was the marshal of his colony. He tried to honorably uphold the law, but the corrupt local mayor killed his family and left him for dead.&lt;br /&gt;
&lt;br /&gt;
After regaining his health, Nate arrested the mayor. [PAWN_pronoun] left his homeworld and started a new life working to make a difference in the universe.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Fugitive{{br}}(Fugitive)&lt;br /&gt;
| [PAWN_nameDef] rebelled against the corporation [PAWN_pronoun] worked for. [PAWN_pronoun] failed, and was forced him to go on the run.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was always on the move, always leaving everything behind. [PAWN_pronoun] tried to gain supporters for [PAWN_possessive] cause, but failed due to [PAWN_possessive] poor social skills.&lt;br /&gt;
&lt;br /&gt;
| Plants: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Cooking: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Game developer{{br}}(Game dev)&lt;br /&gt;
| [PAWN_nameDef] was an independent game developer.{{br}}After an early success, [PAWN_possessive] career quickly degenerated into a circus of misguided ideas, deals gone wrong, and desperate, failed PR stunts.&lt;br /&gt;
| Construction: {{--|2}}&amp;lt;/br&amp;gt;Mining: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Game tester{{br}}(Tester)&lt;br /&gt;
| Making a new life on a barely-livable planet after nuclear war, [PAWN_nameDef] was able to fulfill his desires with money borrowed from his father.&lt;br /&gt;
&lt;br /&gt;
He loved playing a particular colony simulator. His favorite thing to do in the game was to build elaborate hospitals. Spending most of his time playing, he forgot horrors of war and his need for revenge.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gang boss{{br}}(Boss)&lt;br /&gt;
| To survive, [PAWN_nameDef]'s gang often had to rob interstellar traders for food and supplies. Sometimes he had to kill the guards. Sometimes he had to kill the police who arrived to stop him.&lt;br /&gt;
&lt;br /&gt;
After years of this, he became one of the most-wanted criminals in the local stellar empire.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|6}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gang soldier{{br}}(Soldier)&lt;br /&gt;
| Living for many years between three raider settlements, [PAWN_nameDef] persevered through many challenges: a spacecraft implosion, cryptostasis, crashlanding on a miserable dustball of a planet, and nursing an old man back to health, and many of battles.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] eventually took control of a violent gang.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Artistic{{br}}Hauling{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gardener{{br}}(Gardener)&lt;br /&gt;
| On industrial worlds, wealth concentrates in the hands of those who own the factories and sell the goods. [PAWN_nameDef] worked at the mansion of one such rich family, tending the lavish gardens as part of a team of servants.&lt;br /&gt;
| Plants: {{+|8}}&lt;br /&gt;
| Intellectual{{br}}Crafting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Genetic engineer{{br}}(Geneticist)&lt;br /&gt;
| [PAWN_nameDef] carried out [PAWN_possessive] first genetic experiments on farm animals. [PAWN_pronoun] soon grew to become quite skilled in all forms of genetic engineering.&lt;br /&gt;
&lt;br /&gt;
A horrifying lab accident left him with a mortal fear of rodents.&lt;br /&gt;
| Plants: {{+|1}}&amp;lt;/br&amp;gt;Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Genetic scientist{{br}}(Geneticist)&lt;br /&gt;
| After the war he joined a genetic engineering firm. He worked on enhancements for humans and livestock. His experiences in inflicting and healing wounds were very beneficial to his work, but he developed a black sense of humor. This made social gatherings awkward. &lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}Crafting{{br}}Cooking{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Geologist{{br}}(Geologist)&lt;br /&gt;
| [PAWN_nameDef] worked with miners and cave-diggers, identifying rock types and natural formations.{{br}}During [PAWN_possessive] years underground [PAWN_pronoun] also gained experience repairing drilling machines and other technical equipment.&lt;br /&gt;
| Mining: {{+|8}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gigolo{{br}}(Gigolo)&lt;br /&gt;
| [PAWN_nameDef] sold [PAWN_objective]self into slavery for money to purchase boomrat pizza. [PAWN_pronoun] was then traded to the Zeglar colonies, where he worked as a male prostitute.&lt;br /&gt;
&lt;br /&gt;
In a fluke event, [PAWN_pronoun] managed to join other escaping slaves as they hijacked a ship. After fighting with the captain of the slave crew over the last piece of boomrat pizza, [PAWN_nameDef] was sent off the ship in an escape pod.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|6}}&amp;lt;/br&amp;gt;Cooking: {{+|7}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Glitterworld empath{{br}}(Empath)&lt;br /&gt;
| [PAWN_nameDef] had an amazing ability to relate to others and mediate conflict. [PAWN_pronoun] was selected to train as an empath. The training intensified [PAWN_possessive] natural abilities, but [PAWN_pronoun] became unable to harm others.&lt;br /&gt;
| Social: {{+|8}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Glitterworld officer{{br}}(Officer)&lt;br /&gt;
| Though glitterworlds are peaceful places, they often remain prepared for war. [PAWN_nameDef]'s unit rarely saw any real action.{{br}}Though [PAWN_pronoun] pursued [PAWN_possessive] artistic hobbies, [PAWN_possessive] subordinates preferred to entertain themselves by brawling, so [PAWN_nameDef] got good at breaking up fights.&lt;br /&gt;
| Melee: {{+|6}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Glitterworld surgeon{{br}}(Surgeon)&lt;br /&gt;
| [PAWN_nameDef] worked as a surgeon on a world mostly free of disease and human suffering.{{br}}[PAWN_possessive] job mostly involved elaborate and creative cosmetic surgeries. [PAWN_pronoun] has a good understanding of human biology, but never had to remove a cancer — or a bullet.&lt;br /&gt;
| Artistic: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gnomebiologist{{br}}(Biologist)&lt;br /&gt;
| Gizmo was a xenobiology professor in a glitterworld university. He went to conferences and managed an art gallery.&lt;br /&gt;
&lt;br /&gt;
However, he never stopped sculpting yard gnomes, and considers this to be his true profession.&lt;br /&gt;
&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|7}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Cooking{{br}}Firefighting{{br}}Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Government agent  {{br}}(Agent)&lt;br /&gt;
| [PAWN_nameDef] worked for the government against rebel groups and excelled in this capacity. During [PAWN_possessive] training [PAWN_pronoun] was taught firearms, melee combat and medical skills.&lt;br /&gt;
&lt;br /&gt;
Having grown up in a war-ravaged city, dirt, blood and dead bodies don’t bother [PAWN_objective] and [PAWN_pronoun] sees no reason to clean them up.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Graphic designer{{br}}(Designer)&lt;br /&gt;
| Kees' interest in artistic expression led him to become a designer. His eye for detail made him a reasonably well-known artist on his planet, though his meticulousness often led him to spend too much time perfecting a single project.&lt;br /&gt;
| Artistic: {{+|7}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Guardian{{br}}(Guardian)&lt;br /&gt;
| After [PAWN_pronoun] learned what truly matters in life, [PAWN_nameDef] changed for the better. [PAWN_pronoun] learned to work hard and protect the things that matter - not money or material things, but friends and loved ones.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] became a professional guardian.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gun dealer{{br}}(Gun dealer)&lt;br /&gt;
| [PAWN_nameDef] traded high-tech firearms between warring factions.&lt;br /&gt;
&lt;br /&gt;
Over time, [PAWN_pronoun] became very skilled at conducting product demonstrations and negotiating profitable deals.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|8}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gunfighter{{br}}(Gunfighter)&lt;br /&gt;
| [PAWN_nameDef] was a deadly shot. Peace wasn't for him. [PAWN_pronoun] found [PAWN_possessive] family among the brothers and sisters that [PAWN_pronoun] spent years fighting alongside.&lt;br /&gt;
&lt;br /&gt;
After most of those close to [PAWN_objective] died, [PAWN_pronoun] once again set off to lend [PAWN_possessive] gun to those who needed it - or those who could pay.&lt;br /&gt;
| Shooting: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Healer&lt;br /&gt;
| After [PAWN_possessive] tribe’s elder healer was killed in a raid, [PAWN_nameDef] took on the role. [PAWN_pronoun] spent [PAWN_possessive] days scrounging up herbs and mineral compounds from the nearby area to use in surprisingly effective remedies.&lt;br /&gt;
| Plants: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Herbalist&lt;br /&gt;
| [PAWN_nameDef] lived in the forest near a village. Though many of the villagers feared [PAWN_objective], sick villagers would come to [PAWN_objective] to purchase salves and poultices made from the herbs [PAWN_pronoun] grew in [PAWN_possessive] garden. [PAWN_pronoun] was happy to help them — for a price.&lt;br /&gt;
| Plants: {{+|4}}{{br}}Social: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hermit&lt;br /&gt;
| Worn out by the pressures of social interaction, [PAWN_nameDef] left [PAWN_possessive] crowded midworld city to live a simple life in the wilderness. There, [PAWN_pronoun] spent [PAWN_possessive] days alone, tending [PAWN_possessive] garden and crafting the simple tools [PAWN_pronoun] needed to survive.&lt;br /&gt;
| Construction: {{+|1}}{{br}}Plants: {{+|4}}{{br}}Crafting: {{+|3}}&lt;br /&gt;
| Social&lt;br /&gt;
| {{cross}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hiveworld drone{{br}}(Drone)&lt;br /&gt;
| [PAWN_nameDef] worked as a mindless construction drone in a massive hiveworld civilization. Though [PAWN_pronoun] is now freed from the brutal social experiments to which [PAWN_pronoun] was subjected, [PAWN_pronoun] remains incapable of creative thought and leadership.&lt;br /&gt;
| Construction: {{+|5}}{{br}}Mining: {{+|4}}{{br}}Social: {{--|2}}&lt;br /&gt;
| Artistic{{br}}Intellectual&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! House servant{{br}}(Servant)&lt;br /&gt;
| Early in [PAWN_possessive] adulthood, [PAWN_nameDef] was kidnapped and sold to wealthy aristocrats as a domestic servant.{{br}}[PAWN_pronoun] got to know the kitchens and basements of [PAWN_possessive] master's mansion well, but never did any work outside.&lt;br /&gt;
| Mining: {{--|3}}{{br}}Cooking: {{+|4}}{{br}}Plants: {{--|3}}&lt;br /&gt;
| Intellectual&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Housemate&lt;br /&gt;
| As an adult, [PAWN_nameDef] kept house and cared for children while [PAWN_possessive] spouse worked.&lt;br /&gt;
| Cooking: {{+|3}}{{br}}Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Human computer{{br}}(Computer)&lt;br /&gt;
| [PAWN_nameDef] turned out to have an excellent memory and a gift for performing complex calculations in [PAWN_possessive] head. A midworld dictator decided to employ [PAWN_nameDef] to keep track of [PAWN_possessive] state's finances and expenditure, since electrical computers were too susceptible to hacking.&lt;br /&gt;
| Shooting: {{+|3}}{{br}}Intellectual: {{+|7}}&lt;br /&gt;
| Artistic&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Illegal shipwright{{br}}(Shipwright)&lt;br /&gt;
| There is a law that says that you're not allowed to put terawatt-range grasers on a cargo scow. Especially if you hide them under what looks like a communications dish for better ambush potential. [PAWN_nameDef] discovered that there is great profit to be made, however, from those who are uninterested in these laws.&lt;br /&gt;
| Construction: {{+|7}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Inventor&lt;br /&gt;
| On [PAWN_possessive] homeworld, [PAWN_nameDef] worked as a moderately successful inventor. [PAWN_pronoun] developed several minor technologies.&lt;br /&gt;
| Crafting: {{+|5}}{{br}}Intellectual: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Jailbird&lt;br /&gt;
| [PAWN_nameDef] spent most of [PAWN_possessive] life in prisons, where [PAWN_pronoun] was put to work in the kitchens. [PAWN_pronoun] had a habit of getting into fights, and developed an aggressive way of speaking.&lt;br /&gt;
| Melee: {{+|5}}{{br}}Cooking: {{+|3}}&lt;br /&gt;
| Social{{br}}Caring&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Joywire artist{{br}}(Joywirer)&lt;br /&gt;
| [PAWN_nameDef] worked in an urbworld lab developing cutting-edge joywire software to maximize user pleasure.{{br}}When the local government imposed harsh restrictions on joywire manufacturing, [PAWN_pronoun] began selling [PAWN_possessive] products on the black market.&lt;br /&gt;
| Artistic: {{+|3}}{{br}}Intellectual: {{+|2}}&lt;br /&gt;
| Dumb labor&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Loner&lt;br /&gt;
| Loner never much liked the tribal council or the yearly festivals. [PAWN_pronoun] prefers the open plain and the lonely whistle of wind through the rocks.{{br}}[PAWN_pronoun] visits [PAWN_possessive] tribe from time to time, but for the most part [PAWN_pronoun] takes care of [PAWN_objective]self using [PAWN_possessive] own survival skills.&lt;br /&gt;
| Shooting: {{+|3}}{{br}}Melee: {{+|2}}{{br}}Construction: {{+|1}}{{br}}Plants: {{+|5}}&lt;br /&gt;
| Social&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Lore keeper{{br}}(Keeper)&lt;br /&gt;
| [PAWN_nameDef] was one of a long line of lore keepers in [PAWN_possessive] tribe. Every night around the fire, [PAWN_pronoun] would pass on ancient knowledge and helpful wisdom through stories.&lt;br /&gt;
| Artistic: {{+|2}}{{br}}Social: {{+|3}}{{br}}Intellectual: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Low-wage worker{{br}}(Grunt)&lt;br /&gt;
| [PAWN_nameDef] worked a variety of casual jobs to support [PAWN_possessive] family, gaining a set of basic hands-on skills.&lt;br /&gt;
| Cooking: {{+|4}}{{br}}Plants: {{+|3}}{{br}}Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Luddite rebel{{br}}(Luddite)&lt;br /&gt;
| When the majority of people on [PAWN_possessive] world chose to give up their individuality and biological humanity to join together in an online hivemind, [PAWN_nameDef] joined a rebel faction that chose to forsake most technology.&lt;br /&gt;
| Melee: {{+|3}}{{br}}Construction: {{+|3}}{{br}}Mining: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Crafting&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Machine collector{{br}}(Collector)&lt;br /&gt;
| [PAWN_nameDef] was obsessed with old machines and arcane pieces of technology. [PAWN_pronoun] obtained them wherever [PAWN_pronoun] could, and loved taking them apart to see how they worked.{{br}}[PAWN_pronoun] had a habit of talking about [PAWN_possessive] collection long after people around [PAWN_objective] had stopped listening.&lt;br /&gt;
| Crafting: {{+|6}}{{br}}Social: {{--|3}}{{br}}Intellectual: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mafia boss{{br}}(Boss)&lt;br /&gt;
| [PAWN_nameDef] was a high-ranking member of an urbworld crime syndicate.{{br}}[PAWN_pronoun] bribed officials, maintained the loyalty of [PAWN_possessive] subordinates, and extracted overdue payments - by any means necessary.&lt;br /&gt;
| Shooting: {{+|4}}{{br}}Melee: {{+|3}}{{br}}Social: {{+|4}}&lt;br /&gt;
| Dumb labor{{br}}Caring{{br}}Cooking&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mathematician{{br}}(Math prof)&lt;br /&gt;
| [PAWN_nameDef] did mathematical research at a university.{{br}}[PAWN_pronoun] spent much of [PAWN_possessive] spare time immersed in shooting simulations, though [PAWN_pronoun] was frequently ridiculed by other players for [PAWN_possessive] terrible aim.&lt;br /&gt;
| Shooting: {{--|3}}{{br}}Intellectual: {{+|8}}&lt;br /&gt;
| Dumb labor&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval doctor{{br}}(Quack)&lt;br /&gt;
| [PAWN_nameDef] worked as a doctor on a medieval planet. [PAWN_pronoun] firmly believes that most ailments can be cured with a little bloodletting.{{br}}[PAWN_pronoun] was also a master anaesthetist, developing a specialty technique that involved a heavy blow to the head.&lt;br /&gt;
| Melee: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval farm oaf{{br}}(Oaf)&lt;br /&gt;
| Tilling, hoeing, guiding ox carts, pushing wheelbarrows. Digging ditches, planting seeds, predicting the harvest.{{br}}Medieval-level farmers aren't educated in the usual sense, but they know a lot about growing plants without technology. That said, such a life leaves one essentially incapable of participating in intellectual, technology-driven activities.&lt;br /&gt;
| Mining: {{+|3}}{{br}}Plants: {{+|8}}&lt;br /&gt;
| Intellectual&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval lord{{br}}(Noble)&lt;br /&gt;
| [PAWN_nameDef] was a lord on a preindustrial planet. [PAWN_pronoun] went to parties, managed the underlings, and even learned some swordplay.{{br}}[PAWN_possessive] soft hands did not hold a work tool during that entire time. [PAWN_pronoun] considers manual labor to be beneath [PAWN_objective].&lt;br /&gt;
| Shooting: {{+|5}}{{br}}Melee: {{+|5}}{{br}}Social: {{+|7}}&lt;br /&gt;
| Dumb labor{{br}}Skilled labor&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval minstrel{{br}}(Minstrel)&lt;br /&gt;
| [PAWN_nameDef] was a traveling entertainer on a medieval world.{{br}}[PAWN_pronoun] could always be found telling stories or singing songs, and is capable of protecting [PAWN_objective]self from the dangers of the road. However, [PAWN_pronoun] was always conspicuously absent whenever there was hard labour to be done.&lt;br /&gt;
| Melee: {{+|2}}{{br}}Artistic: {{+|3}}{{br}}Social: {{+|4}}&lt;br /&gt;
| Skilled labor{{br}}Hauling&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Message carrier{{br}}(Messenger)&lt;br /&gt;
| On a medieval world, the fastest way to send a message is to give it to somebody on a horse and hope they survive the journey. [PAWN_nameDef] was that somebody.&lt;br /&gt;
| Melee: {{+|3}}{{br}}Animals: {{+|4}}&lt;br /&gt;
| Intellectual&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Midworld chef{{br}}(Chef)&lt;br /&gt;
| [PAWN_nameDef] ran a high-class midworld restaurant. [PAWN_pronoun] was famous among patrons for [PAWN_possessive] creative culinary specialties, and infamous among kitchen workers for [PAWN_possessive] casual disdain for grunt work.&lt;br /&gt;
| Cooking: {{+|6}}{{br}}Social: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}Dumb labor&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Military commissar{{br}}(Commissar)&lt;br /&gt;
| [PAWN_nameDef] was an internal spymaster in an Imperial army battalion. [PAWN_pronoun] made sure that the men were loyal, and did not fall back unless ordered. This made [PAWN_objective] unpopular, but [PAWN_pronoun] gained great skill at detecting the slightest dishonesty.&lt;br /&gt;
| Shooting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Model&lt;br /&gt;
| [PAWN_nameDef] modelled clothes and jewellery for advertisers, and was also used as a physical blueprint for characters in virtual reality simulations.&lt;br /&gt;
| Artistic: {{+|6}}{{br}}Social: {{+|5}}&lt;br /&gt;
| Dumb labor{{br}}Intellectual{{br}}Skilled labor{{br}}Caring&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Muffalo shaman{{br}}(Shaman)&lt;br /&gt;
| Because of [PAWN_possessive] quiet wisdom and great strength, [PAWN_nameDef] became the spiritual leader for a nomadic tribe that followed the herds of roaming muffalo.&lt;br /&gt;
| Melee: {{+|5}}{{br}}Social: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Navy scientist{{br}}(Scientist)&lt;br /&gt;
| Interstellar warfare is won by technology, so imperial navies are always on the peak of modern research. Even better, they have first access to archotechnological artifacts because they find them in space.{{br}}[PAWN_nameDef] worked in a navy lab.&lt;br /&gt;
| Intellectual: {{+|8}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Novelist&lt;br /&gt;
| [PAWN_nameDef] lived on a glitterworld, penning wildly successful novels. [PAWN_pronoun] lived a carefree lifestyle, spending [PAWN_possessive] days writing and [PAWN_possessive] nights partying - and never did a day's manual labour in [PAWN_possessive] life.&lt;br /&gt;
| Construction: {{--|5}}{{br}}Mining: {{--|5}}{{br}}Artistic: {{+|8}}&lt;br /&gt;
| Dumb labor{{br}}Social&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Nurse&lt;br /&gt;
| [PAWN_nameDef] worked in an industrial-era hospital, doing routine work such as changing bandages and taking temperatures.{{br}}It was a busy job, but [PAWN_pronoun] could always find time for a chat with a patient.&lt;br /&gt;
| Social: {{+|4}}&lt;br /&gt;
| Violent&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Paramedic&lt;br /&gt;
| [PAWN_nameDef]'s job was to respond rapidly to medical emergencies. [PAWN_pronoun] is used to dealing with severe injuries with only limited medical supplies.{{br}}[PAWN_pronoun] treated so many gunshot wounds over the years that even seeing a gun made [PAWN_objective] uncomfortable.&lt;br /&gt;
| Shooting: {{--|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pit brawler{{br}}(Brawler)&lt;br /&gt;
| [PAWN_nameDef] was nine years old when [PAWN_pronoun] got in [PAWN_possessive] first fight. [PAWN_pronoun] won, but more important was the enjoyment of [PAWN_possessive] audience. Pit fighting turned out to be a lucrative career for those who could survive it. And it was even mostly legal.&lt;br /&gt;
| Melee: {{+|8}}&lt;br /&gt;
| Intellectual{{br}}Caring&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Psychiatric patient{{br}}(Patient)&lt;br /&gt;
| [PAWN_nameDef] spent most of [PAWN_possessive] adult life in an insane asylum. [PAWN_possessive] industrial homeworld had a poor understanding of mental illness, and [PAWN_pronoun] was treated more like an animal than a person.{{br}}Though [PAWN_pronoun] eventually recovered and was released, [PAWN_possessive] experience dampened many of [PAWN_possessive] basic life skills.&lt;br /&gt;
| Cooking: {{--|2}}{{br}}Crafting: {{--|2}}&lt;br /&gt;
| Social{{br}}Caring{{br}}Violent&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Ranch owner{{br}}(Rancher)&lt;br /&gt;
| [PAWN_nameDef] owned and operated a successful ranch where [PAWN_pronoun] raised animals for meat and wool.{{br}}[PAWN_pronoun] refused to do any dumb labour [PAWN_pronoun] could pay someone else to do for [PAWN_objective].&lt;br /&gt;
| Mining: {{--|4}}{{br}}Cooking: {{--|4}}{{br}}Animals: {{+|8}}&lt;br /&gt;
| Dumb labor&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Recruiter&lt;br /&gt;
| [PAWN_nameDef] was part of an revered order of martial artists, infamous both for their skill in combat and for their practice of refusing to treat their wounded.{{br}}[PAWN_pronoun] travelled [PAWN_possessive] homeworld, judging the young people [PAWN_pronoun] met to determine if they might be suitable for training.&lt;br /&gt;
| Melee: {{+|5}}{{br}}Social: {{+|5}}&lt;br /&gt;
| Caring&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sailor&lt;br /&gt;
| [PAWN_nameDef] traversed the oceans on journeys of exploration, seeking out plant and animal specimens from exotic places, and occasionally fending off pirates. [PAWN_pronoun] loved the sea so much [PAWN_pronoun] refused to do all but the barest minimum of work on land, except to sell the treasures [PAWN_pronoun] collected.&lt;br /&gt;
| Melee: {{+|4}}{{br}}Animals: {{+|4}}{{br}}Social: {{+|4}}&lt;br /&gt;
| Skilled labor&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Scout&lt;br /&gt;
| Since [PAWN_possessive] tribe has made contact with local outlanders, [PAWN_nameDef] has contracted [PAWN_possessive] services out as a guide to the local area. Frequent contact with ancient relics has made [PAWN_objective] fairly comfortable with the old technology.&lt;br /&gt;
| Shooting: {{+|2}}{{br}}Social: {{+|2}}{{br}}Intellectual: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Sculptor&lt;br /&gt;
| [PAWN_nameDef] started off sculpting person-sized chunks of stone, but [PAWN_pronoun] soon began to think bigger. With the help of mining robots, [PAWN_pronoun] learned how to carve huge monuments out of cliffsides. Soon the nature parks of the glitterworld where [PAWN_pronoun] lived were full of giant rock figures.&lt;br /&gt;
| Mining: {{+|4}}{{br}}Plants: {{--|4}}{{br}}Artistic: {{+|9}}&lt;br /&gt;
| Dumb labor{{br}}Crafting{{br}}Cooking&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sheriff&lt;br /&gt;
| [PAWN_nameDef] was the law enforcer in an isolated industrial town. [PAWN_pronoun] dealt with petty crime, dispute resolution, and the occasional drunken saloon shootout.&lt;br /&gt;
| Shooting: {{+|4}}{{br}}Melee: {{+|4}}{{br}}Social: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Space marine{{br}}(Marine)&lt;br /&gt;
| [PAWN_nameDef] was a warrior in an Imperial navy. [PAWN_possessive] job was to punch into enemy starships, gun down the crew, and capture the ship intact. And [PAWN_pronoun] was good at it.&lt;br /&gt;
| Shooting: {{+|7}}{{br}}Melee: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Space pirate{{br}}(Pirate)&lt;br /&gt;
| Piracy appears everywhere that governments are weak and society spread thin. [PAWN_nameDef] was part of this age-old part of human existence, extorting and smashing peaceful trade ships for profit.&lt;br /&gt;
| Shooting: {{+|4}}{{br}}Melee: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Starship janitor{{br}}(Janitor)&lt;br /&gt;
| While other passengers pass the years between star systems in cryptosleep sarcophagi, [PAWN_nameDef] had to wake up at periodic intervals to perform inspections, check the navigation systems, and to oil the mechanoids.&lt;br /&gt;
| Construction: {{+|2}}{{br}}Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Tactician&lt;br /&gt;
| [PAWN_nameDef] joined the space navy in an unstable system, fraught with large-scale interplanetary wars. [PAWN_pronoun] turned out to have a sharp mind for battle, and became adept at commanding large armies to great effect.&lt;br /&gt;
| Shooting: {{+|4}}{{br}}Intellectual: {{+|4}}&lt;br /&gt;
| Social{{br}}Artistic&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Taster&lt;br /&gt;
| As the taster for a medieval king, any dish served at the royal table had to be sampled first by [PAWN_nameDef]. [PAWN_pronoun] lived a decadent lifestyle at court, getting fat and doing very little work.&lt;br /&gt;
| Construction: {{--|4}}{{br}}Cooking: {{+|7}}{{br}}Crafting: {{--|4}}&lt;br /&gt;
| Dumb labor&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Taxonomist&lt;br /&gt;
| [PAWN_nameDef] travelled between star systems, studying and classifying the plant and animal life [PAWN_pronoun] found in the hopes of creating a complete catalogue.&lt;br /&gt;
| Plants: {{+|5}}{{br}}Animals: {{+|5}}&lt;br /&gt;
| Violent&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Teacher&lt;br /&gt;
| [PAWN_nameDef] was educated in the liberal arts and taught at a public school. [PAWN_pronoun] was widely knowledgeable and well-liked by [PAWN_possessive] students.&lt;br /&gt;
| Social: {{+|4}}{{br}}Intellectual: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Torturer&lt;br /&gt;
| Working for a tyrannical monarch on a medieval world, [PAWN_nameDef] earned a reputation as an expert in 'persuasion.' Any prisoner who went down into the dungeons left with no secrets - and with [PAWN_nameDef]'s smile scarred permanently into their nightmares.&lt;br /&gt;
| Melee: {{+|6}}&lt;br /&gt;
| Social{{br}}Caring&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Urbworld entrepreneur{{br}}(Entrepreneur)&lt;br /&gt;
| In the urbworlds, most suffer. But someone has to run the corporations.{{br}}[PAWN_nameDef] learned the skills of the trade - greasing palms and technical analysis. [PAWN_pronoun] is a sociointellectual machine.&lt;br /&gt;
| Social: {{+|6}}{{br}}Intellectual: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Veterinarian{{br}}(Vet)&lt;br /&gt;
| [PAWN_nameDef] treated sick and injured animals for a living. Seeing their suffering affected [PAWN_possessive] stance on the practice of eating meat, and for many years [PAWN_pronoun] lived as a vegetarian, rejecting the meat-loving culinary tradition of [PAWN_possessive] homeworld.&lt;br /&gt;
| Cooking: {{--|4}}{{br}}Animals: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! VR designer{{br}}(Game dev)&lt;br /&gt;
| [PAWN_nameDef] designed virtual reality simulations for glitterworld citizens. [PAWN_pronoun] paid great attention to the details of [PAWN_possessive] worlds, including learning all [PAWN_pronoun] could about plant life to make [PAWN_possessive] landscapes more realistic.&lt;br /&gt;
| Construction: {{+|3}}{{br}}Plants: {{+|4}}{{br}}Artistic: {{+|5}}&lt;br /&gt;
| Dumb labor&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Warrior&lt;br /&gt;
| [PAWN_nameDef] was a fearsome warrior, proficient with many weapons. [PAWN_pronoun] participated in many battles.&lt;br /&gt;
| Shooting: {{+|2}}{{br}}Melee: {{+|6}}{{br}}Social: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Weaver&lt;br /&gt;
| [PAWN_nameDef] was an expert at working muffalo wool, plant fibres and natural dyes into beautiful clothing for [PAWN_possessive] kin. [PAWN_possessive] beautiful handicrafts were traded frequently between local tribes.&lt;br /&gt;
| Plants: {{+|2}}{{br}}Crafting: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=List_of_adulthood_backstories&amp;diff=63384</id>
		<title>List of adulthood backstories</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=List_of_adulthood_backstories&amp;diff=63384"/>
		<updated>2019-05-07T19:07:58Z</updated>

		<summary type="html">&lt;p&gt;Mehni: Part A-C of the definitive list of backstories, sourced from build 2231. Script made. This is as they appear in the game.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;amp;larr; &amp;lt;small&amp;gt;[[Backstories]]&amp;lt;/small&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| {{STDT| sortable c_17}}&lt;br /&gt;
!Title &amp;lt;br/&amp;gt; (Short Title) !!Description !!Skill Modifications !!Incapable of !!Civil !!Raider !!Slave !!Trader !!Traveler !!Tribal&lt;br /&gt;
|-&lt;br /&gt;
! Ace fighter pilot{{br}}(Ace)&lt;br /&gt;
| [PAWN_nameDef] graduated from the Star Academy with honors and distinguished himself as an ace fighter pilot in three campaigns against more advanced aggressor cultures. &lt;br /&gt;
&lt;br /&gt;
However, after one vicious battle, he found himself stranded and his carrier ship destroyed. With nowhere to go, he entered his escape pod and prayed.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Acolyte of stars{{br}}(Priest)&lt;br /&gt;
| Ever the dreamer, [PAWN_nameDef] traveled across the universe to find the thing he felt was calling to him.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] became poorer and poorer, but used every means possible to carry on.&lt;br /&gt;
| Intellectual: {{--|3}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|7}}&lt;br /&gt;
| ManualDumb{{br}}Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Actor{{br}}(Actor)&lt;br /&gt;
| [PAWN_nameDef] travelled [PAWN_possessive] homeworld with a company of actors, playing to packed theatres and loving audiences everywhere. [PAWN_pronoun] was a perfectionist, and made [PAWN_possessive] own props and costumes rather than use the ones [PAWN_pronoun] was given.&lt;br /&gt;
| Social: {{+|8}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Addiction counsel{{br}}(Counselor)&lt;br /&gt;
| After recovering from a joywire addiction, [PAWN_nameDef] adopted a non-violent way of life and vowed to help others.&lt;br /&gt;
&lt;br /&gt;
Travelling between communities, [PAWN_pronoun] used medicine, arts, and crafts to aid others who struggled with their own addictions.&lt;br /&gt;
| Social: {{+|8}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Adventurer{{br}}(Adventurer)&lt;br /&gt;
| [PAWN_nameDef]'s thirst for adventure took [PAWN_objective] to many planets. [PAWN_pronoun] visited the brightest glitterworlds and the darkest war-torn toxic planets in [PAWN_possessive] quest to find novelty and excitement.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] worked as little as possible, often skirting ethical boundaries to make a quick buck. Among all jobs, [PAWN_pronoun] hated cooking the most.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&amp;lt;/br&amp;gt;Animals: {{+|2}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Adventurous weirdo{{br}}(Weirdo)&lt;br /&gt;
| A creative but strange individual, [PAWN_nameDef] dedicated his life to his twin passions of medieval world history and high technology.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was fascinated by the idea of becoming a 'skyknight' with glittering armor and a giant sword.&lt;br /&gt;
| Shooting: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|6}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Mining{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aerospace engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] was an engineer responsible for the production of aircraft and spaceships. [PAWN_pronoun] focused on improving production lines, and was known for [PAWN_possessive] mastery of technical and research issues.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! AI programmer{{br}}(Programmer)&lt;br /&gt;
| Michael enlisted in the military's robotics division, developing smarter combat AI.&lt;br /&gt;
&lt;br /&gt;
The whole time he was there, he never spoke with another human. He spent all his time conversing with the AI he was developing.&lt;br /&gt;
| Intellectual: {{+|7}}&amp;lt;/br&amp;gt;Crafting: {{+|6}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! AI researcher{{br}}(Researcher)&lt;br /&gt;
| Dave was a renowned researcher in artificial intelligence, robotics, and interactive holography. His friendships with the artificial minds he created gave him the confidence to interact with real people, and he soon excelled at personal communication.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Mining: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Alcoholic trucker{{br}}(Alcoholic)&lt;br /&gt;
| [PAWN_nameDef] was a space trucker working for Arcknight Industries when he killed his wife and daughter in a crash.&lt;br /&gt;
&lt;br /&gt;
His body was repaired with an experimental nano-genetic therapy. Now his muscles continually regenerate and harden, and every movement tears the tissue anew. He bears the pain in silence.&lt;br /&gt;
| Mining: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Caring{{br}}Social{{br}}Artistic{{br}}Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Anarchist rebel{{br}}(Anarchist)&lt;br /&gt;
| After being abandoned on a special operation, [PAWN_nameDef] swore vengeance upon the state. [PAWN_pronoun] formed an anarchist group dedicated to bringing down core world governments.&lt;br /&gt;
&lt;br /&gt;
After too many close calls, and too few successes, [PAWN_nameDef] fled to the outer rim.&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|6}}&lt;br /&gt;
| Crafting{{br}}Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Archaeologist{{br}}(Explorer)&lt;br /&gt;
| [PAWN_pronoun] was trapped in an uninspired life. One day, [PAWN_pronoun] jumped on a ship to learn archaeology and see the universe.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned how to survive. [PAWN_pronoun] also learned about people - although [PAWN_pronoun] understood the dead better than the living.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Architect{{br}}(Architect)&lt;br /&gt;
| [PAWN_nameDef] designed and constructed buildings. On [PAWN_possessive] glitterworld home, most of the technical aspects of architecture were handled by an AI. This enabled [PAWN_objective] to push the artistic limits of the craft, but also meant [PAWN_pronoun] never had to get [PAWN_possessive] hands dirty at building sites.&lt;br /&gt;
| Construction: {{+|5}}&amp;lt;/br&amp;gt;Artistic: {{+|7}}&amp;lt;/br&amp;gt;Crafting: {{--|3}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Archotech spy{{br}}(AI spy)&lt;br /&gt;
| [PAWN_nameDef] was a cybernetic researcher. Studying a transcended world, [PAWN_pronoun] became too involved with [PAWN_possessive] subjects. Over time, the archotech machine core recruited [PAWN_objective] into its service, and used [PAWN_objective] as a spy.&lt;br /&gt;
&lt;br /&gt;
When [PAWN_pronoun] later rebelled against [PAWN_possessive] non-human master, it sent mechanoids across space to hunt [PAWN_objective] down.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Mining{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Army cook{{br}}(Cook)&lt;br /&gt;
| Ben joined the army as a worker and spent most of his time cooking and repairing. While he was stationed on a dangerous planet, he underwent basic shooting and survival training.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Caring{{br}}Social{{br}}Firefighting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Army scientist{{br}}(Scientist)&lt;br /&gt;
| [PAWN_nameDef] did scientific research for a planetary army. [PAWN_pronoun] studied war scenarios and designed weapon systems to help win battles with a minimum of fuss.&lt;br /&gt;
| Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Army sergeant{{br}}(Sergeant)&lt;br /&gt;
| [PAWN_nameDef] served in [PAWN_possessive] nation's military, commanding small units as a non-commissioned officer.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] excelled creating tactically sound plans despite difficult circumstances.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aromatherapist{{br}}(Therapist)&lt;br /&gt;
| [PAWN_nameDef] practiced aromatherapy, using essences extracted from home-grown plants.&lt;br /&gt;
| Plants: {{+|6}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artifact hunter{{br}}(Artifacter)&lt;br /&gt;
| [PAWN_nameDef] became depressed and lost interest in life. [PAWN_pronoun] travelled from planet to planet, searching for psychic artifacts amid mechanoid ruins in the hope that they would cure the pain in [PAWN_possessive] soul.&lt;br /&gt;
&lt;br /&gt;
A steady trigger finger and careful planning kept [PAWN_nameDef] alive.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|8}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artificer rampant{{br}}(Artificer)&lt;br /&gt;
| Fuelled by the thrill of discovery and his own megalomania, [PAWN_nameDef] set out to invent new devices and improve existing ones, breaking laws and customs as necessary.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] formed a crew to gather materials for [PAWN_possessive] work - and to deal with outsiders who might interfere.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|8}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Ascetic priest{{br}}(Priest)&lt;br /&gt;
| After taking a vow of silence, [PAWN_nameDef] joined a monastery on a peaceful backwater planet to spend [PAWN_possessive] days in quiet contemplation.{{br}}[PAWN_pronoun] found happiness growing vegetables in the garden and making cheese in the monastery cellars.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| Violent{{br}}Social{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Assassin{{br}}(Assassin)&lt;br /&gt;
| Robin was specially trained as an operative to be used for high-risk assassinations. His skill with a rifle was unrivalled.&lt;br /&gt;
&lt;br /&gt;
He was eventually betrayed by his superiors when a target found out about the hit and offered to fund their future projects. Robin swore to never trust anyone again.&lt;br /&gt;
| Shooting: {{+|7}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}Crafting{{br}}Cooking{{br}}Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! AWOL soldier{{br}}(Soldier)&lt;br /&gt;
| [PAWN_nameDef] was an infantryman.&lt;br /&gt;
&lt;br /&gt;
When [PAWN_pronoun] was informed of his assignment to the Xennoa-Zartza War, [PAWN_pronoun] decided [PAWN_pronoun] did not want to be a soldier. [PAWN_pronoun] was able to escape via military spacejet.&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bandit leader{{br}}(Bandit)&lt;br /&gt;
| [PAWN_nameDef] rose up the ranks of the crime organization, eventually becoming the leader of one of their most remote cells of bandits. His dog Rest never left his side.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Banished soldier{{br}}(Outlaw)&lt;br /&gt;
| [PAWN_nameDef] became the most physically intimidating of the slaves, spending his little free time obsessively sculpting his body. His efforts eventually paid off when the lord offered him a job as a personal bodyguard.&lt;br /&gt;
&lt;br /&gt;
Later, when he plotted to use his position to kill the lord and free the slaves, he was discovered and barely escaped with his life.&lt;br /&gt;
| Melee: {{+|7}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bartender{{br}}(Barkeep)&lt;br /&gt;
| [PAWN_nameDef] worked as a bartender on a seedy space station. The job entailed one part drink mixing, one part diplomacy, and one part head-bashing.&lt;br /&gt;
| Social: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Battle mechanic{{br}}(Mechanic)&lt;br /&gt;
| [PAWN_nameDef] was a tech-obsessed mercenary in an early fusion-era system.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was unusually obsessed with gathering the right gear, and often customized [PAWN_possessive] own equipment with original modifications.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Battlefield tech{{br}}(Technician)&lt;br /&gt;
| [PAWN_nameDef] had received firearms training, but [PAWN_possessive] work was focused on technical adaption and manipulation of combat mechanoids on the battlefield.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] developed PTSD after narrowly escaping a primitive firebomb attack in a wheat field. The army medically discharged him from service.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Firefighting{{br}}PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Beast slayer{{br}}(Slayer)&lt;br /&gt;
| [PAWN_nameDef] traveled between planets, following news of animal attacks. [PAWN_pronoun] would camp on the planet for weeks, learning about [PAWN_possessive] prey before striking. [PAWN_pronoun] most enjoyed hunting thrumbos.&lt;br /&gt;
&lt;br /&gt;
Preferring to work alone, [PAWN_nameDef] enjoyed the thrill of the hunt, and the meat from the kill.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Behaviour research{{br}}(Scientist)&lt;br /&gt;
| Captured as a feral child, [PAWN_nameDef] was forced into the ways of modern society. [PAWN_pronoun] quickly adapted and became a behavioural researcher, eventually owning a private facility.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] specialized in canines, but learned a great deal about all animals. [PAWN_pronoun] never had interest in plants, however.&lt;br /&gt;
| Plants: {{--|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Biosphere manager{{br}}(Botanist)&lt;br /&gt;
| [PAWN_nameDef] lived on a peaceful glitterworld where all menial work was done by robots and people devoted themselves to leisure. [PAWN_pronoun] managed the plant and animal life of a sprawling park, where citizens came to admire the natural beauty.&lt;br /&gt;
| Shooting: {{--|4}}&amp;lt;/br&amp;gt;Animals: {{+|6}}&amp;lt;/br&amp;gt;Plants: {{+|6}}&lt;br /&gt;
| ManualDumb{{br}}Crafting{{br}}Cooking{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blacksmith shooter{{br}}(Gunsmith)&lt;br /&gt;
| As a young blacksmith, [PAWN_nameDef]'s family shop was raided by the police. [PAWN_pronoun] shot two officers before they knocked him out and arrested him.&lt;br /&gt;
&lt;br /&gt;
Sentenced to life in prison, [PAWN_nameDef] learned about traveling and raiding from other criminals.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blacksmith{{br}}(Blacksmith)&lt;br /&gt;
| As a blacksmith on a medieval world, [PAWN_nameDef] gained a reputation for the high quality of [PAWN_possessive] work. [PAWN_pronoun] wasn't bad at using the swords [PAWN_pronoun] forged either.&lt;br /&gt;
| Mining: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|8}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blacksmith{{br}}(Blacksmith)&lt;br /&gt;
| As a smith on a medieval world, [PAWN_nameDef] gained a reputation for the high quality of [PAWN_possessive] work. [PAWN_pronoun] wasn't bad at using the swords [PAWN_pronoun] forged either.&lt;br /&gt;
| Shooting: {{--|5}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|6}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bloodgame survivor{{br}}(Bloodgamer)&lt;br /&gt;
| [PAWN_nameDef] was sold to the Corestars Entertainment Company and used as meat in one of the company's system-wide broadcast shows.&lt;br /&gt;
 &lt;br /&gt;
[PAWN_possessive] manipulative nature made [PAWN_objective] quite a nightmare, even to the audience. He was kicked out and exiled to a planet full of deadly animals, criminals and armed camera-drones.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|7}}&amp;lt;/br&amp;gt;Social: {{+|6}}&lt;br /&gt;
| Crafting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bloody dentist{{br}}(Dentist)&lt;br /&gt;
| After studying at a famous college, [PAWN_nameDef]'s weak personality eventually snapped under the strain of angry administrators and whining patients. [PAWN_pronoun] went on a secret murder spree, killing many of those under [PAWN_possessive] care.&lt;br /&gt;
&lt;br /&gt;
After a pursuit, [PAWN_pronoun] managed to escape [PAWN_possessive] planet and travel to a new world.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bloody wanderer{{br}}(Wanderer)&lt;br /&gt;
| [PAWN_nameDef] was a wanderer, traveling from town to town, taking odd jobs and stealing to live.&lt;br /&gt;
&lt;br /&gt;
One day, he had a mental break and went on a long rampage, destroying several towns and killing many. [PAWN_pronoun] eventually calmed, but [PAWN_possessive] bloodlust never left [PAWN_objective].&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Social{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bodyguard{{br}}(Bodyguard)&lt;br /&gt;
| [PAWN_nameDef] found work on a midworld, protecting whoever paid [PAWN_objective] from harm. [PAWN_pronoun] gained proficiency in many different combat forms, and was known for [PAWN_possessive] ruthlessness against those who crossed [PAWN_objective].&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bounty hunter{{br}}(Hunter)&lt;br /&gt;
| [PAWN_nameDef] is a self-employed bounty hunter. [PAWN_pronoun] spent [PAWN_possessive] days hunting space pirates and collecting cash bounties.&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bounty hunter{{br}}(Hunter)&lt;br /&gt;
| [PAWN_nameDef] was a bounty hunter on a massive glitterworld. [PAWN_pronoun] worked sensitive assignments for extremely wealthy clients, and was known for quiet execution and total discretion.&lt;br /&gt;
| Shooting: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bounty hunter{{br}}(Hunter)&lt;br /&gt;
| When the civil war ended, Mushinto had to find a new way to use his fighting skills. He decided to hunt down war criminals and soon realized that he enjoyed capturing  bad guys by any means necessary.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Brigand{{br}}(Brigand)&lt;br /&gt;
| [PAWN_nameDef] flew with a band of brigands [PAWN_pronoun] called friends. [PAWN_pronoun] even had a ship of [PAWN_possessive] own - The Dung Mucker 2000.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bush sniper{{br}}(Sniper)&lt;br /&gt;
| [PAWN_nameDef]'s peaceful life was cut short when [PAWN_possessive] country was brutally invaded.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] was drafted into service as soon as [PAWN_pronoun] was of legal age, and quickly showed an aptitude for rifles. [PAWN_pronoun] spent months living in the forests picking off soldiers who dared cross the border.&lt;br /&gt;
| Plants: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|6}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Business gangster{{br}}(Gangster)&lt;br /&gt;
| Staying one step ahead of the law, [PAWN_nameDef] became a legitimate businessman and silenced anyone who dared say otherwise. As proprietor of brothels, speakeasies and eateries, [PAWN_nameDef]'s good fortune continued while his competition suffered a series of unfortunate and unexplained accidents.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|7}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Caring{{br}}Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caravaneer{{br}}(Caravaneer)&lt;br /&gt;
| [PAWN_nameDef] was the leader of a caravan. [PAWN_pronoun] was responsible for the safety of [PAWN_possessive] caravan and was the head negotiator in countless trade deals.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] and [PAWN_possessive] people prospered, but their wealth made them a target for brigands. They often had to take up arms to fend off bandits and highwaymen.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|7}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cargo pilot{{br}}(Pilot)&lt;br /&gt;
| [PAWN_nameDef] was brought up by cargo hands on a long-haul ore transport ship. [PAWN_pronoun] perfected [PAWN_possessive] skills at trading and manipulation of people while running weapons between systems.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|1}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Casket builder{{br}}(Builder)&lt;br /&gt;
| [PAWN_nameDef] was fascinated with cryosleep, and spent [PAWN_possessive] life learning about the mysterious technology.&lt;br /&gt;
&lt;br /&gt;
Working as an assembler on a midworld, [PAWN_nameDef] built an experimental prototype casket from discarded parts. Unfortunately, while [PAWN_pronoun] was searching for the final component, [PAWN_possessive] home was leveled by a bomb.  &lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Castaway{{br}}(Castaway)&lt;br /&gt;
| [PAWN_nameDef] was a passenger on a routine interstellar transit. When his ship was destroyed, he lived as a castaway on an uninhabited planet for several years.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|02}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Castaway{{br}}(Castaway)&lt;br /&gt;
| [PAWN_nameDef] was the only survivor of a ship crash on an unhabited animal world. For many years until [PAWN_possessive] rescue [PAWN_pronoun] scrounged an existence out of whatever [PAWN_pronoun] could find.{{br}}[PAWN_possessive] survival skills became razor-sharp, but spending so long alone severely dampened [PAWN_possessive] conversatial abilities.&lt;br /&gt;
| Melee: {{+|5}}&amp;lt;/br&amp;gt;Animals: {{+|3}}&amp;lt;/br&amp;gt;Construction: {{+|4}}&lt;br /&gt;
| Intellectual{{br}}Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caveworld illuminator{{br}}(Illuminator)&lt;br /&gt;
| Among tunnel-dwellers, those with vision as strong as [PAWN_nameDef]’s are revered as sages. [PAWN_pronoun] would lead the way, marking spots to dig with bioluminescent fungus and warning others of impending danger.&lt;br /&gt;
| Mining: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Charity worker{{br}}(Altruist)&lt;br /&gt;
| Glitterworlds are havens of safety and comfort for those lucky enough to live there, but [PAWN_nameDef] could not ignore nearby planets where people suffered in poverty. [PAWN_pronoun] spent [PAWN_possessive] working life appealing for donations and supporting those in need.&lt;br /&gt;
| Social: {{+|6}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Chemist{{br}}(Chemist)&lt;br /&gt;
| [PAWN_nameDef] was a renowned chemist on a thriving midworld.&lt;br /&gt;
&lt;br /&gt;
After performing inhumane experiments that turned men into beasts, [PAWN_pronoun] was arrested and banished to a far-off rim world.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|6}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Chemist{{br}}(Chemist)&lt;br /&gt;
| [PAWN_nameDef] was a research chemist. [PAWN_pronoun] worked with chemicals, from pharmaceuticals to explosives, to develop new substances and treatments.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Chief engineer{{br}}(Engineer)&lt;br /&gt;
| As chief engineer on board a large spaceship, [PAWN_nameDef] was an expert in all things fiddly and complex.&lt;br /&gt;
&lt;br /&gt;
She relied on other members of the crew for some of the basic necessities of life. She and her ship eventually disappeared into a longsleep voyage of exploration.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Civil engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] was a well-known civil engineer. [PAWN_possessive] job involved designing and maintaining rock fortification structures. [PAWN_pronoun] did enough statistical analysis to keep his mind sharp.&lt;br /&gt;
| Construction: {{+|7}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Civil servant{{br}}(Clerk)&lt;br /&gt;
| [PAWN_nameDef] worked as a low-ranking administrator for a moribund government bureaucracy. [PAWN_pronoun] is most at home filling out complicated paperwork and playing office politics.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Construction: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Clan chief{{br}}(Chief)&lt;br /&gt;
| [PAWN_nameDef] managed a small criminal clan on an outlying trade hub world.&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Social: {{+|7}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Clone farmer{{br}}(Cloner)&lt;br /&gt;
| Harvesting the products of clone farms is mostly done by the clones themselves -particularly to those whose sims tended towards the social. This clone was one such, who escaped from the farms and headed out to the stars.&lt;br /&gt;
| Social: {{+|6}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Cooking{{br}}Firefighting{{br}}Mining{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Coliseum fighter{{br}}(Fighter)&lt;br /&gt;
| Applying the knowledge that he gained from years around fighters, [PAWN_pronoun] became a successful gladiator in the coliseum that he once cleaned.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|5}}&amp;lt;/br&amp;gt;Social: {{--|1}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Colonial governor{{br}}(Governor)&lt;br /&gt;
| Disillusioned by rampant government corruption, Henry ran for governor and won. However, the local gangs and their pet officials soon forced him out of power.&lt;br /&gt;
&lt;br /&gt;
He left the community to return to his life as a marshal.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Colony engineer{{br}}(Engineer)&lt;br /&gt;
| The children took over the facility, and they declared independence from the corporation.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] had used the VR system to become a master engineer, and he worked diligently to prepare the colony for the corporation's inevitable return.&lt;br /&gt;
| Construction: {{+|7}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Colony settler{{br}}(Settler)&lt;br /&gt;
| [PAWN_nameDef] was a settler on a new colony world.{{br}}Such a life requires a jack-of-all trades at basic hands-on tasks.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Plants: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Combat engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] became a combat engineer. [PAWN_pronoun] built bases, fixed guns, and repaired vehicles for the army - when [PAWN_pronoun] wasn't shooting at people, that is.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Combat engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] was recruited by the military as an engineer and set to work improving the navy's space shuttles. The harsh training taught [PAWN_objective] how to build and repair military vehicles and structures.&lt;br /&gt;
&lt;br /&gt;
One mission left [PAWN_nameDef] with pyrophobia and a strong desire to avoid plants.&lt;br /&gt;
| Construction: {{+|6}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}Firefighting{{br}}PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Combat medic{{br}}(Medic)&lt;br /&gt;
| After his home country entered a large-scale war, Felix was drafted into the army as a combat medic.&lt;br /&gt;
&lt;br /&gt;
His few years in the trenches trying to keep his fellow soldiers alive gave him an acute sense for first aid. Losing many friend has made him stoic and reserved.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Combat medtech{{br}}(Medic)&lt;br /&gt;
| As a military medtech, [PAWN_nameDef]'s job was to fix and build anything he could get [PAWN_possessive] hands on, from living people to machines and mechs.&lt;br /&gt;
&lt;br /&gt;
Sent into dangerous areas, [PAWN_pronoun] never had a problem saving soldiers' lives and building the technology and machines needed to win.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Medicine: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|5}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Combat negotiator{{br}}(Negotiator)&lt;br /&gt;
| After escaping his homeworld, [PAWN_nameDef] took his skills to the stars.&lt;br /&gt;
&lt;br /&gt;
He chose to operate as a hired gun, working for various rebel organizations, enslaved groups, and merchant enclaves. His specialty was negotiation in combat situations.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Commoner lord{{br}}(Lord)&lt;br /&gt;
| After years of training in martial arts and diplomacy, [PAWN_nameDef] was eventually given land and subjects of [PAWN_possessive] own to rule.&lt;br /&gt;
&lt;br /&gt;
Because of [PAWN_nameDef]'s commoner heritage, the other lords disapproved. They framed [PAWN_objective] for a heinous crime, and the emperor had no choice but to exile [PAWN_objective].&lt;br /&gt;
| Melee: {{+|7}}&amp;lt;/br&amp;gt;Social: {{+|6}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Computer engineer {{br}}(Tech head)&lt;br /&gt;
| Bored of his code-monkey office job and missing the glory days of the Academy, [PAWN_nameDef] saw a commercial about the frontier where &amp;quot;only the strong survive&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
With his wife Morgan, [PAWN_nameDef] undertook a journey into the unknown.&lt;br /&gt;
| Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Con artist{{br}}(Con artist)&lt;br /&gt;
| [PAWN_nameDef] never created anything in [PAWN_possessive] life. [PAWN_pronoun] did, however, prove to be a natural at getting others to give [PAWN_objective] what they had created.&lt;br /&gt;
| Social: {{+|10}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Conceptual artist{{br}}(Artist)&lt;br /&gt;
| [PAWN_nameDef] was well-known in art circles on [PAWN_possessive] home world for [PAWN_possessive] unique and creative conceptual artworks.{{br}}Nobody was sure exactly what [PAWN_pronoun] was trying to communicate, but [PAWN_possessive] pieces were highly valued by collectors.&lt;br /&gt;
| Artistic: {{+|8}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Social{{br}}Caring{{br}}Hauling{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Construction engineer{{br}}(Builder)&lt;br /&gt;
| [PAWN_nameDef] was a construction worker on a midworld. [PAWN_pronoun] lead a team which built everything from office blocks to cathedrals.{{br}}[PAWN_possessive] busy job and numerous nearby fast-food outlets meant [PAWN_pronoun] never cooked for [PAWN_objective]self.&lt;br /&gt;
| Construction: {{+|8}}&amp;lt;/br&amp;gt;Plants: {{--|3}}&lt;br /&gt;
| Intellectual{{br}}Cooking{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Core world jeweler{{br}}(Jeweler)&lt;br /&gt;
| After Alyssa had completed all of her surgeries, she found that she had a lot of time and energy to dedicate to her passion: trinket crafting. She spent years perfecting her art as a jeweler, then left her home world to sell her wares across the galaxy.&lt;br /&gt;
&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|7}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corp researcher{{br}}(Researcher)&lt;br /&gt;
| [PAWN_nameDef] was a leading researcher for a massive space exploration corporation.&lt;br /&gt;
| Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corp researcher{{br}}(Researcher)&lt;br /&gt;
| [PAWN_nameDef] was sold to a corporation and put to work as a corporate slave doing scientific research.&lt;br /&gt;
&lt;br /&gt;
Unable to adapt to the social politics of his workplace, he buried himself in his work and failed to progress up the corporate ladder. Every day, he yearned to be left alone.&lt;br /&gt;
| Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corporate builder{{br}}(Builder)&lt;br /&gt;
| Even as [PAWN_pronoun] stewed in [PAWN_possessive] own wasted potential, [PAWN_nameDef] found [PAWN_pronoun] had a knack for moving objects quickly. It was just what the planetary mega-corps wanted in their construction divisions.&lt;br /&gt;
&lt;br /&gt;
Unfortunately, the monotonous work erased [PAWN_possessive] remaining creative impulses.&lt;br /&gt;
| Construction: {{+|7}}&amp;lt;/br&amp;gt;Mining: {{+|4}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cosmetic reject{{br}}(Reject)&lt;br /&gt;
| Living on the streets, Chaz submitted himself to an unethical cosmetics lab in exchange for food and shelter.&lt;br /&gt;
&lt;br /&gt;
After some painful cosmetic modification, Chaz barely resembles his former self. Having been forced to work for the lab until he was rescued, Chaz is now too afraid to lash out at anyone.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{+|5}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cosmetic surgeon{{br}}(Surgeon)&lt;br /&gt;
| [PAWN_nameDef] had a terrible bedside manner due to [PAWN_possessive] abrasiveness. [PAWN_pronoun] often bullied [PAWN_possessive] patients into getting cosmetic surgery. [PAWN_pronoun] made a lot of money this way.&lt;br /&gt;
&lt;br /&gt;
While very studious and careful in [PAWN_possessive] work, [PAWN_pronoun] never had to lift a finger doing domestic chores.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|8}}&amp;lt;/br&amp;gt;Artistic: {{+|6}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Costume crafter{{br}}(Costumer)&lt;br /&gt;
| By day, [PAWN_nameDef] was an office worker on a midworld. At night, [PAWN_pronoun] designed and built elaborate monster costumes for science fiction conventions.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned a great deal about sewing. Unfortunately this came at the cost of being able to cook anything more complex than an instant meal.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|8}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Counselor{{br}}(Counselor)&lt;br /&gt;
| A terrifying trauma when [PAWN_nameDef] was a young adult caused [PAWN_objective] to develop a serious eating disorder. With counseling [PAWN_pronoun] learned to have a healthier relationship with food, and decided to put [PAWN_possessive] new skills to use helping others overcome their emotional problems.&lt;br /&gt;
| Social: {{+|9}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Craft shaper{{br}}(Shaper)&lt;br /&gt;
| [PAWN_nameDef] locked [PAWN_objective]self in his studio for years, ordering delivery food to save time on cooking.&lt;br /&gt;
&lt;br /&gt;
Eventually, [PAWN_possessive] creations brought [PAWN_objective] the highest honor on Semantic World: Permission to materialize any design in minutes using the most advanced technologies.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|8}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Crime lord{{br}}(Crime lord)&lt;br /&gt;
| Through brutality and cruelty, [PAWN_nameDef] rose to the rank of crime lord.&lt;br /&gt;
&lt;br /&gt;
He relied less on his fists and more on his guns. His reputation spread faster due to his cold-bloodedness and ruthless methods.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Criminal kingpin{{br}}(Kingpin)&lt;br /&gt;
| [PAWN_nameDef] discovered his gift - people did what he said, when he said it. Taking advantage of this, he set off for the rimworlds planets to make a name for himself in the criminal underworld.&lt;br /&gt;
&lt;br /&gt;
Having people do things for him taught him to avoid manual labor at all costs.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|5}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Criminal surgeon{{br}}(Surgeon)&lt;br /&gt;
| Being near many injured fellow criminals, [PAWN_nameDef] took it upon [PAWN_objective]self to work on them.&lt;br /&gt;
&lt;br /&gt;
Although many people died, [PAWN_pronoun] did get better at using knives.&lt;br /&gt;
| Intellectual: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{+|6}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|5}}&amp;lt;/br&amp;gt;Artistic: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Deep space miner{{br}}(Miner)&lt;br /&gt;
| [PAWN_nameDef] did the sweaty, grimy work of pulling metal out of asteroids on a deep space rig. [PAWN_pronoun] used [PAWN_possessive] hands-on industrial skills daily - and wasn't bad in a bar fight either.&lt;br /&gt;
| Melee: {{+|2}}{{br}}Construction: {{+|3}}{{br}}Mining: {{+|7}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Defector&lt;br /&gt;
| Early in [PAWN_possessive] adulthood, [PAWN_nameDef] decided to leave the oppressive dictatorship where [PAWN_pronoun] lived. [PAWN_possessive] defection was not well-received, and agents were sent out after [PAWN_objective].{{br}}[PAWN_pronoun] spent years on the run, treating [PAWN_possessive] own wounds so no doctor could betray [PAWN_objective]. The ordeal made [PAWN_objective] bitter and untrusting.&lt;br /&gt;
| Shooting: {{+|5}}{{br}}Social: {{--|4}}&lt;br /&gt;
| Artistic&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Digger&lt;br /&gt;
| [PAWN_nameDef] and [PAWN_possessive] tribe carved their home deep into the side of a mountain. [PAWN_nameDef] feels most at home picking through rock and shoring up cave walls.&lt;br /&gt;
| Construction: {{+|2}}{{br}}Mining: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Drifter&lt;br /&gt;
| [PAWN_nameDef] never figured out what to do with [PAWN_possessive] life. [PAWN_pronoun] travelled often, taking up casual work wherever [PAWN_pronoun] found it.{{br}}[PAWN_pronoun] also occasionally worked on a novel that [PAWN_pronoun] knew would be a bestseller - just as soon as [PAWN_pronoun] could find a publisher who was interested.&lt;br /&gt;
| Construction: {{+|3}}{{br}}Cooking: {{+|3}}{{br}}Artistic: {{--|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Escaped convict{{br}}(Escapee)&lt;br /&gt;
| [PAWN_nameDef] denies involvement in the crimes that brought about [PAWN_possessive] incarceration in a brutal penal colony. [PAWN_pronoun] escaped by tunnelling beneath the perimeter using modified cutlery.&lt;br /&gt;
| Mining: {{+|4}}{{br}}Crafting: {{+|2}}&lt;br /&gt;
| Caring&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Evangelist&lt;br /&gt;
| As a youth, [PAWN_nameDef] experienced a religious awakening. [PAWN_pronoun] decided to spend the rest of [PAWN_possessive] life spreading the word of [PAWN_possessive] deity, the beauty of its culture, and its unusual medical tradition.&lt;br /&gt;
| Artistic: {{+|4}}{{br}}Social: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Explosives expert{{br}}(Blaster)&lt;br /&gt;
| [PAWN_nameDef] was an explosive engineer employed in mines. [PAWN_pronoun] took [PAWN_possessive] job very seriously and was well-versed in the technicalities - so much so that [PAWN_pronoun] refused to demean [PAWN_objective]self by helping with the clean-up once [PAWN_possessive] carefully-calculated explosion was complete.&lt;br /&gt;
| Mining: {{+|5}}{{br}}Intellectual: {{+|5}}&lt;br /&gt;
| Dumb labor&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Factory worker{{br}}(Worker)&lt;br /&gt;
| [PAWN_nameDef] did menial, unskilled work in an industrial-era factory. [PAWN_possessive] job also included caring for the mules and horses which transported goods around the city.&lt;br /&gt;
| Construction: {{+|3}}{{br}}Animals: {{+|3}}{{br}}Crafting: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Artistic{{br}}Cooking&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gardener&lt;br /&gt;
| On industrial worlds, wealth concentrates in the hands of those who own the factories and sell the goods. [PAWN_nameDef] worked at the mansion of one such rich family, tending the lavish gardens as part of a team of servants.&lt;br /&gt;
| Plants: {{+|8}}&lt;br /&gt;
| Intellectual{{br}}Crafting&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gatherer&lt;br /&gt;
| [PAWN_nameDef] is a master gatherer. [PAWN_pronoun] can find food in the most barren of places using [PAWN_possessive] deep knowledge of plants, roots, and berries.&lt;br /&gt;
| Plants: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Geologist&lt;br /&gt;
| [PAWN_nameDef] worked with miners and cave-diggers, identifying rock types and natural formations.{{br}}During [PAWN_possessive] years underground [PAWN_pronoun] also gained experience repairing drilling machines and other technical equipment.&lt;br /&gt;
| Mining: {{+|8}}{{br}}Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Glitterworld empath{{br}}(Empath)&lt;br /&gt;
| [PAWN_nameDef] had an amazing ability to relate to others and mediate conflict. [PAWN_pronoun] was selected to train as an empath. The training intensified [PAWN_possessive] natural abilities, but [PAWN_pronoun] became unable to harm others.&lt;br /&gt;
| Social: {{+|8}}&lt;br /&gt;
| Violent&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Glitterworld officer{{br}}(Officer)&lt;br /&gt;
| Though glitterworlds are peaceful places, they often remain prepared for war. [PAWN_nameDef]'s unit rarely saw any real action.{{br}}Though [PAWN_pronoun] pursued [PAWN_possessive] artistic hobbies, [PAWN_possessive] subordinates preferred to entertain themselves by brawling, so [PAWN_nameDef] got good at breaking up fights.&lt;br /&gt;
| Melee: {{+|6}}{{br}}Artistic: {{+|4}}&lt;br /&gt;
| Dumb labor&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Glitterworld surgeon{{br}}(Surgeon)&lt;br /&gt;
| [PAWN_nameDef] worked as a surgeon on a world mostly free of disease and human suffering.{{br}}[PAWN_possessive] job mostly involved elaborate and creative cosmetic surgeries. [PAWN_pronoun] has a good understanding of human biology, but never had to remove a cancer — or a bullet.&lt;br /&gt;
| Artistic: {{+|5}}{{br}}Social: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Healer&lt;br /&gt;
| After [PAWN_possessive] tribe’s elder healer was killed in a raid, [PAWN_nameDef] took on the role. [PAWN_pronoun] spent [PAWN_possessive] days scrounging up herbs and mineral compounds from the nearby area to use in surprisingly effective remedies.&lt;br /&gt;
| Plants: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Herbalist&lt;br /&gt;
| [PAWN_nameDef] lived in the forest near a village. Though many of the villagers feared [PAWN_objective], sick villagers would come to [PAWN_objective] to purchase salves and poultices made from the herbs [PAWN_pronoun] grew in [PAWN_possessive] garden. [PAWN_pronoun] was happy to help them — for a price.&lt;br /&gt;
| Plants: {{+|4}}{{br}}Social: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hermit&lt;br /&gt;
| Worn out by the pressures of social interaction, [PAWN_nameDef] left [PAWN_possessive] crowded midworld city to live a simple life in the wilderness. There, [PAWN_pronoun] spent [PAWN_possessive] days alone, tending [PAWN_possessive] garden and crafting the simple tools [PAWN_pronoun] needed to survive.&lt;br /&gt;
| Construction: {{+|1}}{{br}}Plants: {{+|4}}{{br}}Crafting: {{+|3}}&lt;br /&gt;
| Social&lt;br /&gt;
| {{cross}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hiveworld drone{{br}}(Drone)&lt;br /&gt;
| [PAWN_nameDef] worked as a mindless construction drone in a massive hiveworld civilization. Though [PAWN_pronoun] is now freed from the brutal social experiments to which [PAWN_pronoun] was subjected, [PAWN_pronoun] remains incapable of creative thought and leadership.&lt;br /&gt;
| Construction: {{+|5}}{{br}}Mining: {{+|4}}{{br}}Social: {{--|2}}&lt;br /&gt;
| Artistic{{br}}Intellectual&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! House servant{{br}}(Servant)&lt;br /&gt;
| Early in [PAWN_possessive] adulthood, [PAWN_nameDef] was kidnapped and sold to wealthy aristocrats as a domestic servant.{{br}}[PAWN_pronoun] got to know the kitchens and basements of [PAWN_possessive] master's mansion well, but never did any work outside.&lt;br /&gt;
| Mining: {{--|3}}{{br}}Cooking: {{+|4}}{{br}}Plants: {{--|3}}&lt;br /&gt;
| Intellectual&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Housemate&lt;br /&gt;
| As an adult, [PAWN_nameDef] kept house and cared for children while [PAWN_possessive] spouse worked.&lt;br /&gt;
| Cooking: {{+|3}}{{br}}Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Human computer{{br}}(Computer)&lt;br /&gt;
| [PAWN_nameDef] turned out to have an excellent memory and a gift for performing complex calculations in [PAWN_possessive] head. A midworld dictator decided to employ [PAWN_nameDef] to keep track of [PAWN_possessive] state's finances and expenditure, since electrical computers were too susceptible to hacking.&lt;br /&gt;
| Shooting: {{+|3}}{{br}}Intellectual: {{+|7}}&lt;br /&gt;
| Artistic&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Illegal shipwright{{br}}(Shipwright)&lt;br /&gt;
| There is a law that says that you're not allowed to put terawatt-range grasers on a cargo scow. Especially if you hide them under what looks like a communications dish for better ambush potential. [PAWN_nameDef] discovered that there is great profit to be made, however, from those who are uninterested in these laws.&lt;br /&gt;
| Construction: {{+|7}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Inventor&lt;br /&gt;
| On [PAWN_possessive] homeworld, [PAWN_nameDef] worked as a moderately successful inventor. [PAWN_pronoun] developed several minor technologies.&lt;br /&gt;
| Crafting: {{+|5}}{{br}}Intellectual: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Jailbird&lt;br /&gt;
| [PAWN_nameDef] spent most of [PAWN_possessive] life in prisons, where [PAWN_pronoun] was put to work in the kitchens. [PAWN_pronoun] had a habit of getting into fights, and developed an aggressive way of speaking.&lt;br /&gt;
| Melee: {{+|5}}{{br}}Cooking: {{+|3}}&lt;br /&gt;
| Social{{br}}Caring&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Joywire artist{{br}}(Joywirer)&lt;br /&gt;
| [PAWN_nameDef] worked in an urbworld lab developing cutting-edge joywire software to maximize user pleasure.{{br}}When the local government imposed harsh restrictions on joywire manufacturing, [PAWN_pronoun] began selling [PAWN_possessive] products on the black market.&lt;br /&gt;
| Artistic: {{+|3}}{{br}}Intellectual: {{+|2}}&lt;br /&gt;
| Dumb labor&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Loner&lt;br /&gt;
| Loner never much liked the tribal council or the yearly festivals. [PAWN_pronoun] prefers the open plain and the lonely whistle of wind through the rocks.{{br}}[PAWN_pronoun] visits [PAWN_possessive] tribe from time to time, but for the most part [PAWN_pronoun] takes care of [PAWN_objective]self using [PAWN_possessive] own survival skills.&lt;br /&gt;
| Shooting: {{+|3}}{{br}}Melee: {{+|2}}{{br}}Construction: {{+|1}}{{br}}Plants: {{+|5}}&lt;br /&gt;
| Social&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Lore keeper{{br}}(Keeper)&lt;br /&gt;
| [PAWN_nameDef] was one of a long line of lore keepers in [PAWN_possessive] tribe. Every night around the fire, [PAWN_pronoun] would pass on ancient knowledge and helpful wisdom through stories.&lt;br /&gt;
| Artistic: {{+|2}}{{br}}Social: {{+|3}}{{br}}Intellectual: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Low-wage worker{{br}}(Grunt)&lt;br /&gt;
| [PAWN_nameDef] worked a variety of casual jobs to support [PAWN_possessive] family, gaining a set of basic hands-on skills.&lt;br /&gt;
| Cooking: {{+|4}}{{br}}Plants: {{+|3}}{{br}}Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Luddite rebel{{br}}(Luddite)&lt;br /&gt;
| When the majority of people on [PAWN_possessive] world chose to give up their individuality and biological humanity to join together in an online hivemind, [PAWN_nameDef] joined a rebel faction that chose to forsake most technology.&lt;br /&gt;
| Melee: {{+|3}}{{br}}Construction: {{+|3}}{{br}}Mining: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Crafting&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Machine collector{{br}}(Collector)&lt;br /&gt;
| [PAWN_nameDef] was obsessed with old machines and arcane pieces of technology. [PAWN_pronoun] obtained them wherever [PAWN_pronoun] could, and loved taking them apart to see how they worked.{{br}}[PAWN_pronoun] had a habit of talking about [PAWN_possessive] collection long after people around [PAWN_objective] had stopped listening.&lt;br /&gt;
| Crafting: {{+|6}}{{br}}Social: {{--|3}}{{br}}Intellectual: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mafia boss{{br}}(Boss)&lt;br /&gt;
| [PAWN_nameDef] was a high-ranking member of an urbworld crime syndicate.{{br}}[PAWN_pronoun] bribed officials, maintained the loyalty of [PAWN_possessive] subordinates, and extracted overdue payments - by any means necessary.&lt;br /&gt;
| Shooting: {{+|4}}{{br}}Melee: {{+|3}}{{br}}Social: {{+|4}}&lt;br /&gt;
| Dumb labor{{br}}Caring{{br}}Cooking&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mathematician{{br}}(Math prof)&lt;br /&gt;
| [PAWN_nameDef] did mathematical research at a university.{{br}}[PAWN_pronoun] spent much of [PAWN_possessive] spare time immersed in shooting simulations, though [PAWN_pronoun] was frequently ridiculed by other players for [PAWN_possessive] terrible aim.&lt;br /&gt;
| Shooting: {{--|3}}{{br}}Intellectual: {{+|8}}&lt;br /&gt;
| Dumb labor&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval doctor{{br}}(Quack)&lt;br /&gt;
| [PAWN_nameDef] worked as a doctor on a medieval planet. [PAWN_pronoun] firmly believes that most ailments can be cured with a little bloodletting.{{br}}[PAWN_pronoun] was also a master anaesthetist, developing a specialty technique that involved a heavy blow to the head.&lt;br /&gt;
| Melee: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval farm oaf{{br}}(Oaf)&lt;br /&gt;
| Tilling, hoeing, guiding ox carts, pushing wheelbarrows. Digging ditches, planting seeds, predicting the harvest.{{br}}Medieval-level farmers aren't educated in the usual sense, but they know a lot about growing plants without technology. That said, such a life leaves one essentially incapable of participating in intellectual, technology-driven activities.&lt;br /&gt;
| Mining: {{+|3}}{{br}}Plants: {{+|8}}&lt;br /&gt;
| Intellectual&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval lord{{br}}(Noble)&lt;br /&gt;
| [PAWN_nameDef] was a lord on a preindustrial planet. [PAWN_pronoun] went to parties, managed the underlings, and even learned some swordplay.{{br}}[PAWN_possessive] soft hands did not hold a work tool during that entire time. [PAWN_pronoun] considers manual labor to be beneath [PAWN_objective].&lt;br /&gt;
| Shooting: {{+|5}}{{br}}Melee: {{+|5}}{{br}}Social: {{+|7}}&lt;br /&gt;
| Dumb labor{{br}}Skilled labor&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval minstrel{{br}}(Minstrel)&lt;br /&gt;
| [PAWN_nameDef] was a traveling entertainer on a medieval world.{{br}}[PAWN_pronoun] could always be found telling stories or singing songs, and is capable of protecting [PAWN_objective]self from the dangers of the road. However, [PAWN_pronoun] was always conspicuously absent whenever there was hard labour to be done.&lt;br /&gt;
| Melee: {{+|2}}{{br}}Artistic: {{+|3}}{{br}}Social: {{+|4}}&lt;br /&gt;
| Skilled labor{{br}}Hauling&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Message carrier{{br}}(Messenger)&lt;br /&gt;
| On a medieval world, the fastest way to send a message is to give it to somebody on a horse and hope they survive the journey. [PAWN_nameDef] was that somebody.&lt;br /&gt;
| Melee: {{+|3}}{{br}}Animals: {{+|4}}&lt;br /&gt;
| Intellectual&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Midworld chef{{br}}(Chef)&lt;br /&gt;
| [PAWN_nameDef] ran a high-class midworld restaurant. [PAWN_pronoun] was famous among patrons for [PAWN_possessive] creative culinary specialties, and infamous among kitchen workers for [PAWN_possessive] casual disdain for grunt work.&lt;br /&gt;
| Cooking: {{+|6}}{{br}}Social: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}Dumb labor&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Military commissar{{br}}(Commissar)&lt;br /&gt;
| [PAWN_nameDef] was an internal spymaster in an Imperial army battalion. [PAWN_pronoun] made sure that the men were loyal, and did not fall back unless ordered. This made [PAWN_objective] unpopular, but [PAWN_pronoun] gained great skill at detecting the slightest dishonesty.&lt;br /&gt;
| Shooting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Model&lt;br /&gt;
| [PAWN_nameDef] modelled clothes and jewellery for advertisers, and was also used as a physical blueprint for characters in virtual reality simulations.&lt;br /&gt;
| Artistic: {{+|6}}{{br}}Social: {{+|5}}&lt;br /&gt;
| Dumb labor{{br}}Intellectual{{br}}Skilled labor{{br}}Caring&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Muffalo shaman{{br}}(Shaman)&lt;br /&gt;
| Because of [PAWN_possessive] quiet wisdom and great strength, [PAWN_nameDef] became the spiritual leader for a nomadic tribe that followed the herds of roaming muffalo.&lt;br /&gt;
| Melee: {{+|5}}{{br}}Social: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Navy scientist{{br}}(Scientist)&lt;br /&gt;
| Interstellar warfare is won by technology, so imperial navies are always on the peak of modern research. Even better, they have first access to archotechnological artifacts because they find them in space.{{br}}[PAWN_nameDef] worked in a navy lab.&lt;br /&gt;
| Intellectual: {{+|8}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Novelist&lt;br /&gt;
| [PAWN_nameDef] lived on a glitterworld, penning wildly successful novels. [PAWN_pronoun] lived a carefree lifestyle, spending [PAWN_possessive] days writing and [PAWN_possessive] nights partying - and never did a day's manual labour in [PAWN_possessive] life.&lt;br /&gt;
| Construction: {{--|5}}{{br}}Mining: {{--|5}}{{br}}Artistic: {{+|8}}&lt;br /&gt;
| Dumb labor{{br}}Social&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Nurse&lt;br /&gt;
| [PAWN_nameDef] worked in an industrial-era hospital, doing routine work such as changing bandages and taking temperatures.{{br}}It was a busy job, but [PAWN_pronoun] could always find time for a chat with a patient.&lt;br /&gt;
| Social: {{+|4}}&lt;br /&gt;
| Violent&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Paramedic&lt;br /&gt;
| [PAWN_nameDef]'s job was to respond rapidly to medical emergencies. [PAWN_pronoun] is used to dealing with severe injuries with only limited medical supplies.{{br}}[PAWN_pronoun] treated so many gunshot wounds over the years that even seeing a gun made [PAWN_objective] uncomfortable.&lt;br /&gt;
| Shooting: {{--|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pit brawler{{br}}(Brawler)&lt;br /&gt;
| [PAWN_nameDef] was nine years old when [PAWN_pronoun] got in [PAWN_possessive] first fight. [PAWN_pronoun] won, but more important was the enjoyment of [PAWN_possessive] audience. Pit fighting turned out to be a lucrative career for those who could survive it. And it was even mostly legal.&lt;br /&gt;
| Melee: {{+|8}}&lt;br /&gt;
| Intellectual{{br}}Caring&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Psychiatric patient{{br}}(Patient)&lt;br /&gt;
| [PAWN_nameDef] spent most of [PAWN_possessive] adult life in an insane asylum. [PAWN_possessive] industrial homeworld had a poor understanding of mental illness, and [PAWN_pronoun] was treated more like an animal than a person.{{br}}Though [PAWN_pronoun] eventually recovered and was released, [PAWN_possessive] experience dampened many of [PAWN_possessive] basic life skills.&lt;br /&gt;
| Cooking: {{--|2}}{{br}}Crafting: {{--|2}}&lt;br /&gt;
| Social{{br}}Caring{{br}}Violent&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Ranch owner{{br}}(Rancher)&lt;br /&gt;
| [PAWN_nameDef] owned and operated a successful ranch where [PAWN_pronoun] raised animals for meat and wool.{{br}}[PAWN_pronoun] refused to do any dumb labour [PAWN_pronoun] could pay someone else to do for [PAWN_objective].&lt;br /&gt;
| Mining: {{--|4}}{{br}}Cooking: {{--|4}}{{br}}Animals: {{+|8}}&lt;br /&gt;
| Dumb labor&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Recruiter&lt;br /&gt;
| [PAWN_nameDef] was part of an revered order of martial artists, infamous both for their skill in combat and for their practice of refusing to treat their wounded.{{br}}[PAWN_pronoun] travelled [PAWN_possessive] homeworld, judging the young people [PAWN_pronoun] met to determine if they might be suitable for training.&lt;br /&gt;
| Melee: {{+|5}}{{br}}Social: {{+|5}}&lt;br /&gt;
| Caring&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sailor&lt;br /&gt;
| [PAWN_nameDef] traversed the oceans on journeys of exploration, seeking out plant and animal specimens from exotic places, and occasionally fending off pirates. [PAWN_pronoun] loved the sea so much [PAWN_pronoun] refused to do all but the barest minimum of work on land, except to sell the treasures [PAWN_pronoun] collected.&lt;br /&gt;
| Melee: {{+|4}}{{br}}Animals: {{+|4}}{{br}}Social: {{+|4}}&lt;br /&gt;
| Skilled labor&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Scout&lt;br /&gt;
| Since [PAWN_possessive] tribe has made contact with local outlanders, [PAWN_nameDef] has contracted [PAWN_possessive] services out as a guide to the local area. Frequent contact with ancient relics has made [PAWN_objective] fairly comfortable with the old technology.&lt;br /&gt;
| Shooting: {{+|2}}{{br}}Social: {{+|2}}{{br}}Intellectual: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Sculptor&lt;br /&gt;
| [PAWN_nameDef] started off sculpting person-sized chunks of stone, but [PAWN_pronoun] soon began to think bigger. With the help of mining robots, [PAWN_pronoun] learned how to carve huge monuments out of cliffsides. Soon the nature parks of the glitterworld where [PAWN_pronoun] lived were full of giant rock figures.&lt;br /&gt;
| Mining: {{+|4}}{{br}}Plants: {{--|4}}{{br}}Artistic: {{+|9}}&lt;br /&gt;
| Dumb labor{{br}}Crafting{{br}}Cooking&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sheriff&lt;br /&gt;
| [PAWN_nameDef] was the law enforcer in an isolated industrial town. [PAWN_pronoun] dealt with petty crime, dispute resolution, and the occasional drunken saloon shootout.&lt;br /&gt;
| Shooting: {{+|4}}{{br}}Melee: {{+|4}}{{br}}Social: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Space marine{{br}}(Marine)&lt;br /&gt;
| [PAWN_nameDef] was a warrior in an Imperial navy. [PAWN_possessive] job was to punch into enemy starships, gun down the crew, and capture the ship intact. And [PAWN_pronoun] was good at it.&lt;br /&gt;
| Shooting: {{+|7}}{{br}}Melee: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Space pirate{{br}}(Pirate)&lt;br /&gt;
| Piracy appears everywhere that governments are weak and society spread thin. [PAWN_nameDef] was part of this age-old part of human existence, extorting and smashing peaceful trade ships for profit.&lt;br /&gt;
| Shooting: {{+|4}}{{br}}Melee: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Starship janitor{{br}}(Janitor)&lt;br /&gt;
| While other passengers pass the years between star systems in cryptosleep sarcophagi, [PAWN_nameDef] had to wake up at periodic intervals to perform inspections, check the navigation systems, and to oil the mechanoids.&lt;br /&gt;
| Construction: {{+|2}}{{br}}Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Tactician&lt;br /&gt;
| [PAWN_nameDef] joined the space navy in an unstable system, fraught with large-scale interplanetary wars. [PAWN_pronoun] turned out to have a sharp mind for battle, and became adept at commanding large armies to great effect.&lt;br /&gt;
| Shooting: {{+|4}}{{br}}Intellectual: {{+|4}}&lt;br /&gt;
| Social{{br}}Artistic&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Taster&lt;br /&gt;
| As the taster for a medieval king, any dish served at the royal table had to be sampled first by [PAWN_nameDef]. [PAWN_pronoun] lived a decadent lifestyle at court, getting fat and doing very little work.&lt;br /&gt;
| Construction: {{--|4}}{{br}}Cooking: {{+|7}}{{br}}Crafting: {{--|4}}&lt;br /&gt;
| Dumb labor&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Taxonomist&lt;br /&gt;
| [PAWN_nameDef] travelled between star systems, studying and classifying the plant and animal life [PAWN_pronoun] found in the hopes of creating a complete catalogue.&lt;br /&gt;
| Plants: {{+|5}}{{br}}Animals: {{+|5}}&lt;br /&gt;
| Violent&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Teacher&lt;br /&gt;
| [PAWN_nameDef] was educated in the liberal arts and taught at a public school. [PAWN_pronoun] was widely knowledgeable and well-liked by [PAWN_possessive] students.&lt;br /&gt;
| Social: {{+|4}}{{br}}Intellectual: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Torturer&lt;br /&gt;
| Working for a tyrannical monarch on a medieval world, [PAWN_nameDef] earned a reputation as an expert in 'persuasion.' Any prisoner who went down into the dungeons left with no secrets - and with [PAWN_nameDef]'s smile scarred permanently into their nightmares.&lt;br /&gt;
| Melee: {{+|6}}&lt;br /&gt;
| Social{{br}}Caring&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Urbworld entrepreneur{{br}}(Entrepreneur)&lt;br /&gt;
| In the urbworlds, most suffer. But someone has to run the corporations.{{br}}[PAWN_nameDef] learned the skills of the trade - greasing palms and technical analysis. [PAWN_pronoun] is a sociointellectual machine.&lt;br /&gt;
| Social: {{+|6}}{{br}}Intellectual: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Veterinarian{{br}}(Vet)&lt;br /&gt;
| [PAWN_nameDef] treated sick and injured animals for a living. Seeing their suffering affected [PAWN_possessive] stance on the practice of eating meat, and for many years [PAWN_pronoun] lived as a vegetarian, rejecting the meat-loving culinary tradition of [PAWN_possessive] homeworld.&lt;br /&gt;
| Cooking: {{--|4}}{{br}}Animals: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! VR designer{{br}}(Game dev)&lt;br /&gt;
| [PAWN_nameDef] designed virtual reality simulations for glitterworld citizens. [PAWN_pronoun] paid great attention to the details of [PAWN_possessive] worlds, including learning all [PAWN_pronoun] could about plant life to make [PAWN_possessive] landscapes more realistic.&lt;br /&gt;
| Construction: {{+|3}}{{br}}Plants: {{+|4}}{{br}}Artistic: {{+|5}}&lt;br /&gt;
| Dumb labor&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Warrior&lt;br /&gt;
| [PAWN_nameDef] was a fearsome warrior, proficient with many weapons. [PAWN_pronoun] participated in many battles.&lt;br /&gt;
| Shooting: {{+|2}}{{br}}Melee: {{+|6}}{{br}}Social: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Weaver&lt;br /&gt;
| [PAWN_nameDef] was an expert at working muffalo wool, plant fibres and natural dyes into beautiful clothing for [PAWN_possessive] kin. [PAWN_possessive] beautiful handicrafts were traded frequently between local tribes.&lt;br /&gt;
| Plants: {{+|2}}{{br}}Crafting: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=Topic:Uz7ghv2lxcgrnnnx&amp;topic_postId=uza4ank5v5vogxot&amp;topic_revId=uza4ank5v5vogxot&amp;action=single-view</id>
		<title>Topic:Uz7ghv2lxcgrnnnx</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=Topic:Uz7ghv2lxcgrnnnx&amp;topic_postId=uza4ank5v5vogxot&amp;topic_revId=uza4ank5v5vogxot&amp;action=single-view"/>
		<updated>2019-05-07T18:37:57Z</updated>

		<summary type="html">&lt;span class=&quot;plainlinks&quot;&gt;&lt;a href=&quot;/wiki/User:Mehni&quot; class=&quot;mw-userlink&quot; title=&quot;User:Mehni&quot;&gt;&lt;bdi&gt;Mehni&lt;/bdi&gt;&lt;/a&gt; &lt;span class=&quot;mw-usertoollinks&quot;&gt;(&lt;a href=&quot;/wiki/User_talk:Mehni&quot; class=&quot;mw-usertoollinks-talk&quot; title=&quot;User talk:Mehni&quot;&gt;talk&lt;/a&gt; | &lt;a href=&quot;/wiki/Special:Contributions/Mehni&quot; class=&quot;mw-usertoollinks-contribs&quot; title=&quot;Special:Contributions/Mehni&quot;&gt;contribs&lt;/a&gt;)&lt;/span&gt; &lt;a rel=&quot;nofollow&quot; class=&quot;external text&quot; href=&quot;https://rimworldwiki.com/index.php?title=Topic:Uz7ghv2lxcgrnnnx&amp;amp;topic_showPostId=uza4ank5v5vogxot#flow-post-uza4ank5v5vogxot&quot;&gt;commented&lt;/a&gt; on &quot;Guideline: HECAP, HISCAP, HE, HIS, and transcribing pronouns in backstories&quot; (&lt;em&gt;Great to hear. I&amp;#039;ve started on the childhood backstories, but for some reason I can&amp;#039;t overwrite them all in once. I have to do it in batc...&lt;/em&gt;)&lt;/span&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=List_of_childhood_backstories&amp;diff=63383</id>
		<title>List of childhood backstories</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=List_of_childhood_backstories&amp;diff=63383"/>
		<updated>2019-05-07T18:18:48Z</updated>

		<summary type="html">&lt;p&gt;Mehni: Part S-1 of the definitive list of backstories, sourced from build 2231. Script made. This is as they appear in the game.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;amp;larr; &amp;lt;small&amp;gt;[[Backstories]]&amp;lt;/small&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| {{STDT| sortable c_17}}&lt;br /&gt;
! Title&amp;lt;br /&amp;gt;(Short Title) !! Description !! Skill Modifications !! Incapable of !! Civil !! Raider !! Slave !! Trader !! Traveler !! Tribal&lt;br /&gt;
|-&lt;br /&gt;
! Abandoned child{{br}}(Abandoned)&lt;br /&gt;
| [PAWN_nameDef] was a quick witted, funny child. One day, [PAWN_pronoun] wandered off on [PAWN_possessive] wealthy genetic parents, and was ultimately lost in a supposedly unused ore warehouse. Due to cloning technology, [PAWN_possessive] parents decided that the time looking for [PAWN_objective] was better spent on just cloning a better son.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|1}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Abandoned orphan{{br}}(Orphan)&lt;br /&gt;
| Abandoned at birth, young [PAWN_nameDef] started [PAWN_possessive] life in an orphanage.&lt;br /&gt;
&lt;br /&gt;
A rascal and a scoundrel, [PAWN_pronoun] became a clever troublemaker.&lt;br /&gt;
| Plants: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Abductee{{br}}(Abductee)&lt;br /&gt;
| [PAWN_nameDef] was abducted at a young age and forced to do menial labor on a pirate ship.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Abductee{{br}}(Abductee)&lt;br /&gt;
| [PAWN_nameDef] was abducted by xenohumans when [PAWN_pronoun] was still a baby. They experimented on [PAWN_objective] to understand his genetic structure.&lt;br /&gt;
&lt;br /&gt;
As [PAWN_pronoun] grew up, [PAWN_nameDef] grew a little bit too big and strong for his captors and eventually escaped.&lt;br /&gt;
&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Academy student {{br}}(Student )&lt;br /&gt;
| [PAWN_nameDef] went to school like a good space cadet would. He was very tall and was known for his good looks.&lt;br /&gt;
&lt;br /&gt;
Though he worried more about his hairstyle than his grades, he still somehow passed the final exams.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Accursed child{{br}}(Cursed)&lt;br /&gt;
| [PAWN_nameDef] was born at the peak of a lunar eclipse. The elders declared [PAWN_objective] a child of darkness brought [PAWN_objective] under their care.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] entire childhood was spent studying the lore and rituals of [PAWN_possessive] people - until the day of calling.&lt;br /&gt;
| Construction: {{--|1}}&amp;lt;/br&amp;gt;Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| Firefighting{{br}}Cleaning{{br}}Hauling{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Adventuring child{{br}}(Adventurer)&lt;br /&gt;
| Axle was raised to become an engineer. For years, he planned to stow away on a cargo ship and start a new, more adventuresome life.&lt;br /&gt;
&lt;br /&gt;
One night, after his parents fell asleep, he managed to sneak on board a cargo ship just before it left port.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Adventurous youth{{br}}(Adventurer)&lt;br /&gt;
| [PAWN_nameDef] explored all around [PAWN_possessive] family's large estate, uncovering little natural wonders hidden in nearby catacombs, rivers, and caves.&lt;br /&gt;
&lt;br /&gt;
During his teenage years, [PAWN_nameDef] made numerous enemies&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Amateur astronomer{{br}}(Astronomer)&lt;br /&gt;
| [PAWN_nameDef] was fascinated with astronomy. [PAWN_pronoun] would spend hours gazing at planets and nebulae through his telescope.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] is credited with discovering a small comet that would, years later, strike a nearby moon and disrupt the mining operations there.&lt;br /&gt;
| Intellectual: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Amateur botanist{{br}}(Botanist)&lt;br /&gt;
| Spending many summers crawling through dirt, Christian found he had quite the green thumb. Instead of learning to cook the food he grew, he just grew more and more.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Amateur engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] grew up in a family with a military and engineering background. [PAWN_pronoun] wanted to join the army but his father didn't like the idea, so [PAWN_possessive] interest turned to great flying machines and works of engineering. [PAWN_pronoun] secretly hoped that this would one day lead him to a life of galactic exploration.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|1}}&lt;br /&gt;
| Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Angry student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] trained towards [PAWN_possessive] dream of working for his hometown's local council.&lt;br /&gt;
&lt;br /&gt;
For reasons he never quite understood, [PAWN_pronoun] was bullied relentlessly by his classmates. [PAWN_pronoun] chose to repress his rage.&lt;br /&gt;
| Intellectual: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Animal caretaker{{br}}(Caretaker)&lt;br /&gt;
| Born on a medieval farm, [PAWN_nameDef] was tasked with caring for domestic animals. [PAWN_pronoun] grew to love them.&lt;br /&gt;
&lt;br /&gt;
With time, [PAWN_pronoun] learned to tame wild animals. [PAWN_pronoun] dreamed of one day meeting a thrumbo and taming it.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Animal lab tech{{br}}(Lab tech)&lt;br /&gt;
| [PAWN_nameDef] worked as a technician in a lab studying animals.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] spent [PAWN_possessive] days taking care of the animals and cleaning up after them. [PAWN_pronoun] dreamed of having [PAWN_possessive] own lab one day.&lt;br /&gt;
| Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|3}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Antisocial child{{br}}(Antisocial)&lt;br /&gt;
| [PAWN_nameDef] lacked typical social skills, and avoided social interaction.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] gained satisfaction only from steady work. [PAWN_pronoun] especially disliked speaking with overly creative or outgoing individuals.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Apocalypse child {{br}}(Apocalypse)&lt;br /&gt;
| [PAWN_nameDef] spent his childhood on a post-apocalyptic world. He fought for survival from a young age, on a planet where trust did not exist.&lt;br /&gt;
&lt;br /&gt;
He told everyone that he had no luck.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Apocalypse survivor{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef] was born during a time of unrest on [PAWN_possessive] homeworld, as climate change threatened mass starvation and flooding. As [PAWN_pronoun] grew up the situation worsened - billions died and peaceful states descended into anarchy. [PAWN_nameDef] and [PAWN_possessive] parents did whatever they had to to survive.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Apprentice oracle{{br}}(Oracle)&lt;br /&gt;
| [PAWN_nameDef] was chosen at an early age by the village elders to keep the sacred rituals of the Oracle.&lt;br /&gt;
&lt;br /&gt;
An irrepressibly curious child, [PAWN_nameDef] caused a religious crisis for [PAWN_possessive] tribe when [PAWN_pronoun] accidentally flipped a switch to open the &amp;quot;tombs&amp;quot; of the Gods - cryptosleep caskets inhabited by some very confused ancestors.  &lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Apprentice smith{{br}}(Apprentice)&lt;br /&gt;
| [PAWN_nameDef] grew up helping in his father's smithy.&lt;br /&gt;
&lt;br /&gt;
They were some of the last smiths on the planet that to use traditional smithing methods. They even collect some materials themselves.&lt;br /&gt;
&lt;br /&gt;
Sometimes, after work, [PAWN_nameDef] would practice using the swords [PAWN_pronoun] forged.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artful dodger{{br}}(Dodger)&lt;br /&gt;
| Robin grew up on one of the urbworlds and had to fend for himself all his life. He never trusted anyone, relying on his persuasiveness and cunning to survive.&lt;br /&gt;
&lt;br /&gt;
He soon became skilled with firearms and knives as well as words.&lt;br /&gt;
| Shooting: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}Crafting{{br}}Cooking{{br}}Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artisan farmer{{br}}(Farmer)&lt;br /&gt;
| [PAWN_nameDef] grew up on a [PAWN_possessive] family's glitterworld farm. They were one of the last farms on the planet that preferred traditional farming methods to glitterworld technology.&lt;br /&gt;
| Plants: {{+|7}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artistic weirdo{{br}}(Weirdo)&lt;br /&gt;
| [PAWN_nameDef] grew up in a house near a bustling midworld metropolis.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was talented at art and creative work, but often acted strangely, and thus had few friends.&lt;br /&gt;
| Cooking: {{+|1}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aspergers rebel{{br}}(Rebel)&lt;br /&gt;
| [PAWN_nameDef] grew up as a rebel on an formerly-advanced rimworld devastated by war.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] Aspergers syndrome meant he struggled with social situations and was incapable of caring, but [PAWN_pronoun] learned hard skills like research and shooting very quickly.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&lt;br /&gt;
| Caring{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aspiring engineer{{br}}(Tinkerer)&lt;br /&gt;
| [PAWN_nameDef] had a fascination with gadgets and gizmos. [PAWN_pronoun] took apart and put together almost anything [PAWN_pronoun] could find.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] got used to repairing toys brought to [PAWN_objective] by other children, and even fixed a few devices from [PAWN_possessive] elders.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aspiring physicist{{br}}(Student)&lt;br /&gt;
| The daughter of an engineer and doctor, [PAWN_nameDef]'s early life was intellectually rich. After visiting a physics lab, she decided she wanted to be a quantum physicist.&lt;br /&gt;
&lt;br /&gt;
Bitten by a camel, kicked off a horse, and chased by dogs, [PAWN_nameDef] developed a fear of animals.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}Animals{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aspiring pop idol{{br}}(Pop idol)&lt;br /&gt;
| Min was being trained in song and dance to become the next big pop idol. She grew up being taken care of by company handlers.&lt;br /&gt;
&lt;br /&gt;
She never knew manual labor, but learned a lot about music and social etiquette.&lt;br /&gt;
| Shooting: {{--|4}}&amp;lt;/br&amp;gt;Melee: {{--|4}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&lt;br /&gt;
| ManualDumb{{br}}Cleaning{{br}}Hauling{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Athlete{{br}}(Athlete)&lt;br /&gt;
| [PAWN_nameDef] was professional athlete at early age. Thanks to her skills, she was able to leave her homeworld and enroll in a glitterworld university of science and technology.&lt;br /&gt;
&lt;br /&gt;
Because of her demanding schedule and introverted nature, she became socially inept.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Awkward nerd{{br}}(Nerd)&lt;br /&gt;
| Always fascinated by machines, Dave spent his time studying robotics and holography. He preferred the company of his scientific creations to that of other people.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blackjack player{{br}}(Gambler)&lt;br /&gt;
| The only useful skill [PAWN_nameDef] learned from his tough military school was card counting. He amassed many enemies by cheating at casinos, becoming ever more edgy and violent as the threat of retaliation grew.&lt;br /&gt;
&lt;br /&gt;
When he was finally caught, they burned half his skin off. He'll never be able to face fire or violence again.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|4}}&lt;br /&gt;
| Violent{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blacksmith's son{{br}}(Blacksmith)&lt;br /&gt;
| [PAWN_nameDef]'s father owned the blacksmith shop in an run-down old city district. [PAWN_nameDef] would help his father whenever he could.&lt;br /&gt;
&lt;br /&gt;
Later, [PAWN_possessive] father took him as a blacksmith's apprentice and raised him as a man. [PAWN_nameDef] also to on shooting as a hobby.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blessed child{{br}}(Blessed)&lt;br /&gt;
| [PAWN_nameDef] was born under auspicious circumstances to a midworld spiritual group and held in reverence throughout [PAWN_possessive] childhood.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned to take care of the poor and give succor to the faithful from an early age.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bodyguard trainee{{br}}(Bodyguard)&lt;br /&gt;
| [PAWN_nameDef] was born into a famously skilled family of bodyguards. [PAWN_possessive] mothers Elena and Victoria forced [PAWN_objective] into many dangerous situations, training [PAWN_objective] to put [PAWN_possessive] client's well-being over [PAWN_possessive] own.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] was taught about many herbs and natural poisons to help [PAWN_objective] prevent clients from being poisoned.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bone collector{{br}}(Pupil)&lt;br /&gt;
| Born to a family of fortune hunters, [PAWN_nameDef] always had a passion for ancient history.&lt;br /&gt;
&lt;br /&gt;
Though never a tough or social boy, [PAWN_pronoun] loved to dig through history books as well as dirt piles.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{--|3}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bookworm{{br}}(Bookworm)&lt;br /&gt;
| [PAWN_nameDef] spent his youth in the library, reading every book he could about the technical marvels of space travel, the engineering ingenuity of the space-faring pioneers, and the horrible yet fascinating tales of the mechanoid races. He vowed that one day, he would see these things for himself.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Boy scout{{br}}(Scout)&lt;br /&gt;
| [PAWN_nameDef] was in a boy scout troop on a midworld.&lt;br /&gt;
&lt;br /&gt;
He learned many survival skills including how to thrive in the outdoors and how to tend to basic wounds.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Boy soldier{{br}}(Soldier)&lt;br /&gt;
| War may never change - but the cast of characters does.&lt;br /&gt;
&lt;br /&gt;
Born on a violent urbworld, [PAWN_nameDef] was trained from a young age to fight the wars of others, and became rather good at it. &lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Brothel gofer{{br}}(Gofer)&lt;br /&gt;
| Born on a steam-powered midworld wracked by a century of economic crises, [PAWN_nameDef] went to work at a young age. Scrounging, shoe-polishing, sewing - he did it all. But [PAWN_pronoun] was most known as a brothel gofer, delivering all manner of aphrodisiacs and chemicals to the girls' rooms.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Brutal thief{{br}}(Thief)&lt;br /&gt;
| Growing up in a gang, [PAWN_nameDef] learned the brutality of the streets.&lt;br /&gt;
&lt;br /&gt;
Knowing that showing weakness could be fatal, he closed himself of to others.&lt;br /&gt;
| Plants: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bunker kid{{br}}(Bunker kid)&lt;br /&gt;
| Ricardo grew up in an underground shelter, waiting for radioactive fallout to subside. His rich family had gained access to a luxury bunker city, while billions died on the surface.&lt;br /&gt;
&lt;br /&gt;
Determined to one day seek revenge against the hated enemy, Ricardo spent most of his time practicing shooting in his private training facility.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Artistic{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cadet{{br}}(Cadet)&lt;br /&gt;
| Born on the planet New China, [PAWN_nameDef]'s father was a police chief and kept extremely strict watch over his son.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] had to do military-style drill exercises every day and keep his room spotlessly clean, always ready for inspection. [PAWN_pronoun] came to abhor violence.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caravan child{{br}}(Child)&lt;br /&gt;
| [PAWN_nameDef] was born on a urbworld merchant ship to an entrepreneurial mother and an absent father. Born male, she disliked boy stuff, and got into her mother’s things all the time.&lt;br /&gt;
&lt;br /&gt;
Eventually, she traveled with her mother to a glitterworld and spent her savings on a body she was happy with.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caravan traveler{{br}}(Traveler)&lt;br /&gt;
| Born to a family of traveling merchants, [PAWN_nameDef] was mentored by [PAWN_possessive] father in the ways of being a trader. [PAWN_pronoun] was often tasked with caring for the pack animals. Due to [PAWN_possessive] nomadic lifestyle, [PAWN_pronoun] hunted and bartered for [PAWN_possessive] food.&lt;br /&gt;
| Plants: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cat herder{{br}}(Herder)&lt;br /&gt;
| [PAWN_nameDef] helped out in his father's cat breeding business, socializing, herding, and feeding hundreds of cats.&lt;br /&gt;
&lt;br /&gt;
When he refused to clean up after the cats, [PAWN_pronoun] was transferred to the breeding science division.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&lt;br /&gt;
| Cleaning{{br}}Hauling{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cave child{{br}}(Cave kid)&lt;br /&gt;
| [PAWN_nameDef] grew up in a cave on an tundra planet, and was adopted by a traveling group of entertainers known only as the Wizards. Once a starfaring crew, the Wizards told [PAWN_objective] wondrous stories about the universe.&lt;br /&gt;
&lt;br /&gt;
One day, the Wizards did not return from scavenging. After years of waiting, [PAWN_nameDef] set off into space to find them.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caveworld tender{{br}}(Cave kid)&lt;br /&gt;
| [PAWN_nameDef] grew up in cave complex deep beneath the surface of an inhospitable world. [PAWN_pronoun] worked with the other children tending the tribe’s fungus crops.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caveworld tunneler{{br}}(Tunneler)&lt;br /&gt;
| [PAWN_nameDef] worked as a digger in the massive underground cave complex.{{br}}[PAWN_pronoun] knows rock so well that [PAWN_pronoun] can almost navigate caves by smell.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Mining: {{+|6}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&lt;br /&gt;
| Intellectual{{br}}Crafting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Chess master{{br}}(Chesshead)&lt;br /&gt;
| [PAWN_nameDef] loved to play chess. [PAWN_pronoun] even earned the nickname Bishop for some of [PAWN_possessive] craftier moves. &lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] never got into trouble - mostly because he was good at not getting caught. &lt;br /&gt;
&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child of drifters{{br}}(Drifter)&lt;br /&gt;
| Ever since [PAWN_pronoun] was very small, [PAWN_nameDef] had never known a home beyond [PAWN_possessive] parent's ship. They were a family of nomads whose meandering provided a constant change of scenery. [PAWN_possessive] life was often perilous but never dull, and [PAWN_pronoun] inherited [PAWN_possessive] parents' wanderlust at a young age.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|6}}&lt;br /&gt;
| Firefighting{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child of glass{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef] was raised underground on a &amp;quot;marble&amp;quot; planet - a wasteland of radioactive asphalt and toxic fallout.&lt;br /&gt;
&lt;br /&gt;
To survive on a planet devoid of life, [PAWN_pronoun] had to learn how to farm underground and how to fight without wasting bullets.&lt;br /&gt;
| Plants: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| Social{{br}}Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child prodigy{{br}}(Prodigy)&lt;br /&gt;
| After graduating college at age twelve, Jered devoted his life to becoming immortal.  However his research crossed the line when he tried to modify his body using gene therapy and mechanical augmentation.  He was arrested and condemned to a prison planet.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child researcher{{br}}(Researcher)&lt;br /&gt;
| A frightfully intelligent child, [PAWN_nameDef] was kidnapped by a glitterworld corporation and forced to research technologies for weaponizing anti-matter.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] vowed never to invent anything again.&lt;br /&gt;
| Intellectual: {{+|7}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&lt;br /&gt;
| Crafting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child scientist{{br}}(Scientist)&lt;br /&gt;
| After graduating college very young, [PAWN_nameDef] devoted [PAWN_possessive] life to becoming immortal. He was arrested for trying to genetically modify himself.&lt;br /&gt;
&lt;br /&gt;
The authorities released [PAWN_objective] on the condition that he would work in a government lab on spacecraft technology. He was permitted to continue his personal research in his free time.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child slave{{br}}(Slave)&lt;br /&gt;
| Graham was born to a poor family on a rimworld. His father sold him into slavery at a young age and he was traded many times. A tycoon bought him as part of a child labor force and sent down into mines to look after machines and to work alongside them.&lt;br /&gt;
&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child spy {{br}}(Spy )&lt;br /&gt;
| Children are often presumed innocent, and so make ideal spies. [PAWN_nameDef] was trained in the arts of infiltration and information-gathering when [PAWN_pronoun] was very young.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] spent years behind enemy lines, gathering intel in a brutal planetary war. During this time, [PAWN_pronoun] had limited opportunity for education. &lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child spy{{br}}(Spy)&lt;br /&gt;
| Children are often presumed innocent, and can be ideal as spies. [PAWN_nameDef] was trained in the art of infiltration and information-gathering when [PAWN_pronoun] was just nine years old.{{br}}[PAWN_possessive] years behind enemy lines and the war-torn nature of [PAWN_possessive] homeworld meant [PAWN_pronoun] had limited opportunity for education.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Intellectual: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child star{{br}}(Star)&lt;br /&gt;
| [PAWN_nameDef] was well-known throughout [PAWN_possessive] homeworld as a child actor in films and TV shows. [PAWN_possessive] fame put [PAWN_objective] in contact with many different kinds of people, but also tended to get in the way of [PAWN_possessive] education.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child-knave{{br}}(Knave)&lt;br /&gt;
| [PAWN_nameDef] was a child-knave of King Loteric. [PAWN_pronoun] enjoyed the training with wooden sticks and engaging others in close combat. [PAWN_pronoun] adapted quickly to the heat of battle and was good at spreading fire.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] served his lord well, until the king died in an unfortunate accident.&lt;br /&gt;
| Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Circus performer{{br}}(Performer)&lt;br /&gt;
| Growing up in the circus, [PAWN_nameDef] learned a lot of interesting things. More interesting then the balls he juggled were the pockets he picked between shows.&lt;br /&gt;
&lt;br /&gt;
A mistake with some firesticks made him develop a deathly fear of fire.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Class clown{{br}}(Clowny kid)&lt;br /&gt;
| In the ultra-competitive environs of his glitterworld school, [PAWN_nameDef] always offered to play the class clown to diffuse tension.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] developed a sense of social desperation from this, as well as an appreciation for the artistic side of comedy.&lt;br /&gt;
| Social: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Clone-farmed{{br}}(Disposable)&lt;br /&gt;
| Clone children are seeded into organic-rich wombvats and rapidly grown in a simmed universe. They're harvested later, sometimes for food, sometimes for organs, sometimes for workers - but they're always called 'Disposable'. &lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Coliseum cleaner{{br}}(Cleaner)&lt;br /&gt;
| During the 'Inner Destrian War' fallout, [PAWN_possessive] parents were captured and [PAWN_pronoun] was born into a life of slavery. Forced to clean coliseums after bloody battles for money. Watching, waiting, and learning. Coliseums were the only thing [PAWN_pronoun] ever knew. One night while cleaning the coliseum, [PAWN_possessive] family was murdered.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Caring{{br}}Firefighting{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Colony kid{{br}}(Colony kid)&lt;br /&gt;
| [PAWN_nameDef] was born the child of two doctors in a small colony. Because of [PAWN_possessive] parents, [PAWN_pronoun] was always interested in science and medicine.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] never really got along with other children, and as a result became withdrawn and unsociable.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Coma child{{br}}(Coma child)&lt;br /&gt;
| A childhood accident put [PAWN_nameDef] into a coma. [PAWN_pronoun] didn’t wake up until [PAWN_pronoun] was in [PAWN_possessive] late teens. [PAWN_possessive] body never recovered from the years of inactivity, but people tend to take pity on [PAWN_objective] when they hear [PAWN_possessive] story.&lt;br /&gt;
| Social: {{+|4}}&amp;lt;/br&amp;gt;Construction: {{--|2}}&amp;lt;/br&amp;gt;Mining: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Commoner heir{{br}}(Heir)&lt;br /&gt;
| [PAWN_nameDef] was a street urchin on a feudal steamworld.&lt;br /&gt;
&lt;br /&gt;
After [PAWN_pronoun] tried to steal food from the palace, the emperor, desperate to secure an heir, took [PAWN_objective] in and groomed [PAWN_objective] to be next in line for the throne.&lt;br /&gt;
| Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Computer geek{{br}}(Geek)&lt;br /&gt;
| [PAWN_nameDef] spent most of [PAWN_possessive] childhood on [PAWN_possessive] computer, typing away, never knowing when to get up and eat.&lt;br /&gt;
&lt;br /&gt;
He had a very narrow interest: hacking cryptobiotic safety protocols.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Animals: {{+|2}}&lt;br /&gt;
| Social{{br}}Cooking{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Construction grunt{{br}}(Builder)&lt;br /&gt;
| Growing up in his father's lab, Jackson was given the life of an intellectual elite. He got everything he desired, and price was never an object.&lt;br /&gt;
&lt;br /&gt;
However Jackson did not partake in the luxury given to him. Instead, he pursued more physical, and - in his father's eyes - lower-class jobs.  &lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Convent child{{br}}(Illicit)&lt;br /&gt;
| The child of an illicit affair, [PAWN_nameDef] was bought up by nuns in a medieval convent. [PAWN_pronoun] learned the value of hard work and submission, but was taught that technology is heretical.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&lt;br /&gt;
| Intellectual{{br}}Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Core dilettante{{br}}(Dilettante)&lt;br /&gt;
| Candice spent her formative years on a glitterworld in the core region, where she and her friends pursued lives of idle pleasure.&lt;br /&gt;
&lt;br /&gt;
As she grew up, she began to find the life of ease unfulfilling. She decided to look for a more challenging path.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Core world student{{br}}(Student)&lt;br /&gt;
| Born a male named Alex, Alyssa didn't fit in well with the other boys. When very young, she preferred creative pursuits, such as crafting jewelry, over sports. She felt she had the wrong body. Luckily, her family and friends supported her sex reassignment; as a teen, she underwent surgery to become a female.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{--|1}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Cooking{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corp student{{br}}(Student)&lt;br /&gt;
| De Dion was bred to become an executive officer for the large space trading corporation that owned his home planet. His family had been working for that corporation for seven generations.&lt;br /&gt;
&lt;br /&gt;
At age six, [PAWN_pronoun] started to study at the corporate academy, where he learned to become a loyal follower and a ruthless executive.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corp-bred student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] was bred to become an executive for the space exploration corporation that owned his home planet. [PAWN_possessive] family had been working for that corporation for four generations.&lt;br /&gt;
&lt;br /&gt;
At age five, [PAWN_pronoun] enrolled at the corporate academy where he learned loyalty and ruthlessness. [PAWN_nameDef] excelled in finding diplomatic solutions where others would need violence.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|7}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Violent{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corporate slave{{br}}(Soldier)&lt;br /&gt;
| [PAWN_nameDef] grew up in a colony owned by a large glitterworld corporation. All children had virtual reality devices attached by force, and were raised in a brutal digital world.&lt;br /&gt;
&lt;br /&gt;
Constantly forced to fight others for the entertainment of the wealthy, gunplay and tactics became the center of [PAWN_nameDef]'s universe.&lt;br /&gt;
| Plants: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Animals: {{--|2}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Country child{{br}}(Hick kid)&lt;br /&gt;
| [PAWN_nameDef] was raised up to fear God and love [PAWN_possessive] country. [PAWN_pronoun] was a genuine backwoods kid. [PAWN_pronoun] always worked hard to earn respect rather than demanding it.&lt;br /&gt;
| Cooking: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cow farmer{{br}}(Farmer)&lt;br /&gt;
| [PAWN_nameDef] grew up on a rim world, under the tyranny of [PAWN_possessive] father, who forced [PAWN_objective] to work every day on the farm. [PAWN_pronoun] dreamed of escaping [PAWN_possessive] father and exploring the universe.&lt;br /&gt;
&lt;br /&gt;
One day, when the trade ship was overhead, [PAWN_pronoun] stowed away among the goods in the launch pods, and escaped into space.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Animals: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Crime boss' child{{br}}(Crime kid)&lt;br /&gt;
| [PAWN_nameDef] was adopted child of a notorious crime boss. [PAWN_pronoun] was taught all facets of the family business, from smuggling to inventive ways of killing.&lt;br /&gt;
&lt;br /&gt;
When the family was attacked, [PAWN_possessive] father ordered [PAWN_objective] to hide in a secret longsleep crypt.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cult child{{br}}(Cult kid)&lt;br /&gt;
| [PAWN_nameDef] was born into a powerful cult which shunned advanced technology and believed that all illness could be cured by cleansing the soul through sacred art.{{br}}After [PAWN_possessive] first glimpse of the outside world, [PAWN_pronoun] decided to run away.&lt;br /&gt;
| Medicine: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|5}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Data decoder{{br}}(Decoder)&lt;br /&gt;
| Born on a glitterworld, [PAWN_nameDef] was very interested  in the process of documenting information, and quickly became senior glitterpedia recorder.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was effective at self-study, but [PAWN_pronoun] was lacked in social experiences.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Dedicated student{{br}}(Student)&lt;br /&gt;
| The child of a wealthy manufacturer, [PAWN_nameDef] was pampered from an early age. [PAWN_pronoun] developed an affinity for reading and art, and a distaste for menial chores.&lt;br /&gt;
&lt;br /&gt;
A revolution brought his father's businesses under state control. Penniless, [PAWN_nameDef] worked hard to complete [PAWN_possessive] education.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Animals{{br}}Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Desert rat{{br}}(Desert rat)&lt;br /&gt;
| [PAWN_nameDef] was born to a tribe of desert ascetics who wandered the endless wastes.&lt;br /&gt;
&lt;br /&gt;
They sought a mythical substance they believed could liberate them from ignorance through psychedelic revelation - and usher in a new period of interstellar peace.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Diplomat's child{{br}}(Diplomat)&lt;br /&gt;
| [PAWN_nameDef] was born in diplomatic family.&lt;br /&gt;
&lt;br /&gt;
Travelling often, [PAWN_pronoun] was home-schooled and saw the world mostly through a computer.&lt;br /&gt;
| Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Artistic: {{+|1}}&lt;br /&gt;
| Violent{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Disaster survivor{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef]'s planet collided with a small moon. Everything he knew as home was destroyed, and his entire family died. [PAWN_pronoun] was left in the ruins to fend for himself.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Disaster survivor{{br}}(Survivor)&lt;br /&gt;
| Steven was uprooted when marauders attacked his family farm, destroying machinery and killing farmhands and beasts alike.&lt;br /&gt;
&lt;br /&gt;
After the death of all he knew, he was left in the ruins to fend for himself.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Discarded youth{{br}}(Discarded)&lt;br /&gt;
| [PAWN_nameDef] grew up isolated on a trash planet. A dumping ground for surrounding glitterworlds, it was a harsh home. As a baby, [PAWN_pronoun] sucked on the tap of a discarded nutrient paste dispenser for comfort.&lt;br /&gt;
&lt;br /&gt;
In these desperate circumstances, against all odds, [PAWN_pronoun] survived - and thrived.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Artistic{{br}}Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Disciplined farmer{{br}}(Farmer)&lt;br /&gt;
| Drew was the younger of two sons on the family farm, a frontier plot that struggled to turn a profit. Drew's father was a strict disciplinarian, constantly at his sons to work harder and keep quiet. Drew burnt his hand making breakfast once and swore to cook only when his life was in danger.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|1}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&lt;br /&gt;
| Social{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Displaced noble{{br}}(Noble)&lt;br /&gt;
| Born on an urbworld to the ruler of three megacities, [PAWN_nameDef]’s prospects looked good - until a violent insurrection overthrew [PAWN_possessive] family. Exile introduced [PAWN_nameDef] to hard work and combat, but some high-born squeamishness remains.&lt;br /&gt;
| Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Dreaded baby{{br}}(Baby dude)&lt;br /&gt;
| [PAWN_nameDef] was found as a baby in a crashed spacecraft. According to the ship's data records, [PAWN_pronoun] invented the nuclear device that powered his ship. Apparently, he also invented the sky and the hamburger, and is said to have fathered a race of tasty golden kittens.&lt;br /&gt;
| Shooting: {{+|1}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Dreamer{{br}}(Dreamer)&lt;br /&gt;
| [PAWN_nameDef] was an expressive child. [PAWN_pronoun] sang often, and made friends very easily, be they young or old, male or female.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] hated fighting, but when made angry, [PAWN_pronoun] could be dangerous. [PAWN_possessive] temper was quick.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Drudge{{br}}(Drudge)&lt;br /&gt;
| [PAWN_nameDef] was never sure what [PAWN_pronoun] wanted to do with [PAWN_possessive] life. [PAWN_pronoun] spent most of [PAWN_possessive] time doing low-wage jobs and wondering what [PAWN_possessive] future would be like.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] entertained himself with space sims and survival games, dreaming of one day being somewhere more interesting.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Drug mule{{br}}(Mule)&lt;br /&gt;
| Raised in an orphanage, [PAWN_nameDef] turned towards the gang life at age ten.&lt;br /&gt;
&lt;br /&gt;
He was exploited by the local gang as a drug mule to traffic &amp;quot;substance F&amp;quot; across rival gang territory. He took a bullet or two.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| Intellectual{{br}}Caring{{br}}Social{{br}}Artistic{{br}}Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Dusty farm hand{{br}}(Farm hand)&lt;br /&gt;
| From the time [PAWN_nameDef] could walk, [PAWN_pronoun] helped take care of the animals and crops that [PAWN_possessive] people tended in their arid homeland.&lt;br /&gt;
&lt;br /&gt;
The work toughened [PAWN_objective], but left little time for intellectual activities.&lt;br /&gt;
 &lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&amp;lt;/br&amp;gt;Animals: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Earth colonist{{br}}(Colonist)&lt;br /&gt;
| [PAWN_nameDef] was born on Earth. As a child, [PAWN_pronoun] was launched into space as part of an interstellar colonization program.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Empath{{br}}(Empath)&lt;br /&gt;
| [PAWN_nameDef] was an incredibly empathetic child, so much that [PAWN_pronoun] was totally overwhelmed by simple social interactions. Once, [PAWN_pronoun] stepped on a bug and felt so guilty [PAWN_pronoun] cried for an hour.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] did try to use a gun one time, but it went very poorly, as the loud noise made [PAWN_objective] flinch uncontrollably.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Violent{{br}}Social{{br}}Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Energetic pop idol{{br}}(Pop idol)&lt;br /&gt;
| Priscilla grew up on a glitterworld, training in rapier arts and singing. She spent several years as an energetic teen pop idol.&lt;br /&gt;
&lt;br /&gt;
However, she decided that the music and modeling industries were not paying her enough attention, so she left.&lt;br /&gt;
| Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Exiled prince{{br}}(Prince)&lt;br /&gt;
| A member of a royal family, [PAWN_nameDef] was exiled for shaming [PAWN_possessive] family.&lt;br /&gt;
&lt;br /&gt;
Living in a foreign land, mostly alone, [PAWN_pronoun] spent most of [PAWN_possessive] time making huts and houses to live in. [PAWN_pronoun] found little time in an average day for enjoyment, and lost all his friends and family.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|1}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Factory worker{{br}}(Worker)&lt;br /&gt;
| Felix grew up in a large factory city on an industrial world.&lt;br /&gt;
&lt;br /&gt;
Since poverty was rampant and food scarce, he worked for whatever wages he could get. This wasn't an easy life, but Felix never shied away from a hard day's work.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Fallen prodigy{{br}}(Prodigy)&lt;br /&gt;
| [PAWN_nameDef] was born on a glitterworld falling into chaos. [PAWN_possessive] father was killed in action.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] struggled for a scholarship at Utmaior Academy and had to prove his right to be there. A child genius, [PAWN_pronoun] was bullied as a charity case and couldn't make friends with the other kids.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farm boy{{br}}(Farm boy)&lt;br /&gt;
| John worked on his family's farm, looking after the animals and treating them when they were injured. Preferring hands-on tasks and the outdoors, he avoided softer jobs that might have kept him cooped up inside.&lt;br /&gt;
&lt;br /&gt;
He enjoyed this lonely work, and tended to stay out of people's way and do his own thing.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farm hand{{br}}(Farm hand)&lt;br /&gt;
| [PAWN_nameDef] was born on a farm on a smaller colony world.&lt;br /&gt;
&lt;br /&gt;
Everything was taken care of by the few members of the farm, including [PAWN_nameDef]. This helped [PAWN_objective] build independence, spirit, and a well-rounded character.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farm kid{{br}}(Farm kid)&lt;br /&gt;
| [PAWN_nameDef] grew up on his family's beef farm. He enjoyed working the fields and taking care of the animals.&lt;br /&gt;
| Plants: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farm mechanic{{br}}(Mechanic)&lt;br /&gt;
| Growing up on a farming planet, [PAWN_nameDef] spent [PAWN_possessive] time learning about the automated machinery that grew and harvested the multitude of crops.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Plants: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farmer boy{{br}}(Farmer)&lt;br /&gt;
| Benjamin's parents died in a fire when he was seven. He grew up on his uncle's farm, plowing fields and doing manual labor.&lt;br /&gt;
&lt;br /&gt;
He could not bear answering questions about his parents, so he replaced social contact with hard work.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Plants: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}Social{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farmer's daughter{{br}}(Farm girl)&lt;br /&gt;
| [PAWN_nameDef] grew up on [PAWN_possessive] parents' vineyard. [PAWN_pronoun] spent [PAWN_possessive] youth exploring the land and making friends with various bugs and insects.&lt;br /&gt;
&lt;br /&gt;
Having heard stories about all the fascinating things out there in the universe, [PAWN_pronoun] always dreamed of venturing out to see it for [PAWN_objective]self.&lt;br /&gt;
| Social: {{--|1}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farmer's son{{br}}(Farmer)&lt;br /&gt;
| Ade spent much of his childhood learning biome farming. In his biome they kept animals to investigate which would cope best in the alien environment.&lt;br /&gt;
&lt;br /&gt;
Due to this, the travel restrictions and oxygen rationing system, he rarely got to meet anyone from outside his family.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{+|1}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Feral child{{br}}(Feral)&lt;br /&gt;
| Abandoned on an animal planet as a small child with nought but a blanket with a name embroidered on it, Felix made himself one with the wilderness.&lt;br /&gt;
&lt;br /&gt;
When he was 13, he encountered a team of mineral surveyors, who &amp;quot;offered&amp;quot; him passage off of the planet.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Intellectual{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Feral child{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef] and his family lived a hard but prosperous lives along with their fellow colonists on a distant rimworld.&lt;br /&gt;
&lt;br /&gt;
One day a group of mechanoids attacked, killing everyone aside from Robert. He then lived alone in the desert until a group of raiders found him.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Feudal farm boy{{br}}(Slave)&lt;br /&gt;
| [PAWN_nameDef] was the son of a medieval farmer, and was expected to follow in his footsteps. He was brought up as a kind, well trained farm boy.&lt;br /&gt;
&lt;br /&gt;
He lived in an unusual feudal kingdom which co-existed with a midworld society which was itself well-known for genetic manipulation.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Feudal lordling{{br}}(Lordling)&lt;br /&gt;
| [PAWN_nameDef] grew up on a feudal world that was part of a multi-planet empire. As the son of a high lord, [PAWN_pronoun] enjoyed many privileges.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned to maneuver in the both the political landscape and in close quarters combat.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Fire-scarred child{{br}}(Scarred)&lt;br /&gt;
| Duster was an active child who lived an uneventful childhood until he fell into a fire and suffered horrific burns to his hands and arms. Although the scars have faded, he can't bear to be in close proximity to fire.&lt;br /&gt;
&lt;br /&gt;
| Mining: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&lt;br /&gt;
| Cooking{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Forest child{{br}}(Forest kid)&lt;br /&gt;
| When [PAWN_pronoun] was a baby, [PAWN_nameDef]'s mother went insane and left [PAWN_objective] in the woods.&lt;br /&gt;
&lt;br /&gt;
Raised by wild people, [PAWN_nameDef] was known for both loving and killing animals.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Foundry apprentice{{br}}(Foundryman)&lt;br /&gt;
| [PAWN_nameDef] grew up as an apprentice in the foundries of an industrial world. This experience gave [PAWN_objective] metalworking skills and strong muscles, but stunted [PAWN_possessive] artistic development.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Freethinker{{br}}(Thinker)&lt;br /&gt;
| [PAWN_nameDef] grew up on a toxic world with tyrannical leaders. While the rest of the population was high on the planet's narcotic exports, [PAWN_pronoun] joined a rebel militia.&lt;br /&gt;
&lt;br /&gt;
After a risky operation against the regime failed, [PAWN_pronoun] fled the planet, staying alive by threatening mutual annihilation with a planetcracker antimatter bomb.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Frightened child{{br}}(Scared)&lt;br /&gt;
| [PAWN_nameDef] grew up with a laundry list of phobias and neuroses. [PAWN_pronoun] feared, among other things, doctors and foodborne pathogens.{{br}}As a result, [PAWN_pronoun] learned to cook and care for [PAWN_objective]self, but many of [PAWN_possessive] fears dog [PAWN_objective] in adulthood.&lt;br /&gt;
| Medicine: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Frontier marshal{{br}}(Marshal)&lt;br /&gt;
| Henry inherited a sense of duty from his father, and began a law enforcement career on his frontier homeworld.&lt;br /&gt;
&lt;br /&gt;
He tried to uphold the law with honor, but the corruption and greed of local government officials often discouraged him.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Galactic page{{br}}(Page)&lt;br /&gt;
| [PAWN_nameDef] served the high admiral of a space fleet. [PAWN_pronoun] learned the ways of court, including etiquette and speechcraft.&lt;br /&gt;
&lt;br /&gt;
In his feudal society, it was considered a great honor to serve a man of such prestige.&lt;br /&gt;
| Social: {{+|6}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}ManualSkilled{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Game fanatic{{br}}(Gamer)&lt;br /&gt;
| [PAWN_nameDef] was a fanatical gamer who learned to survive in virtual reality games.&lt;br /&gt;
&lt;br /&gt;
Once, while attempting to prove [PAWN_possessive] skills in the real world, [PAWN_pronoun] was abducted by a criminal scientist and experimented on. [PAWN_pronoun] escaped, but the experience stayed with him.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gang member{{br}}(Gang kid)&lt;br /&gt;
| [PAWN_nameDef] grew up without parents. [PAWN_possessive] whole life was spent alone, fighting for survival on the streets.&lt;br /&gt;
&lt;br /&gt;
No matter how hard it became to survive, he never gave up.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gang member{{br}}(Ganger)&lt;br /&gt;
| [PAWN_nameDef] grew up homeless on an urbworld. [PAWN_pronoun] was forced to fight and struggle for everything, making [PAWN_objective] hard and ruthless long before adulthood.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] would have stayed in those streets, had [PAWN_pronoun] not been injured in a shootout and had his body confiscated for use by one of the worldwide city's ruling corporations. &lt;br /&gt;
| Plants: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&lt;br /&gt;
| Intellectual{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Glitterworld kid{{br}}(Glit kid)&lt;br /&gt;
| The son of a genetically-engineered &amp;quot;perfect mate&amp;quot; on a glitterworld, Chaz was much more shy, withdrawn and nervous than his parents. [PAWN_pronoun] kept mostly to himself, studying science and medicine and taking on gardening as a hobby. &lt;br /&gt;
&lt;br /&gt;
In [PAWN_possessive] teens, [PAWN_pronoun] ran away from home, seeking a quieter life.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Glitterworld nerd{{br}}(Nerd)&lt;br /&gt;
| [PAWN_nameDef] loved technology from the day [PAWN_pronoun] was born. [PAWN_pronoun] had a mechanoid companion which [PAWN_pronoun] tried to modify when [PAWN_pronoun] was 10.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] obsession with technology meant that [PAWN_pronoun] never appreciated arts or culture.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Glitterworld royal{{br}}(Royalty)&lt;br /&gt;
| [PAWN_nameDef] grew up in a glitterworld royal household. She was groomed from a young age to marry into another planet's royal family.&lt;br /&gt;
&lt;br /&gt;
Unfortunately, her crooked teeth made her undesirable to suitors, so she became bitter and resentful.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! G-nome sculptor{{br}}(Sculptor)&lt;br /&gt;
| [PAWN_nameDef] was engineered in a lab as part of the G-nome Project. He was implanted at birth with encyclopedic knowledge of all aspects of xenobiology.&lt;br /&gt;
&lt;br /&gt;
The G-nome scientists nicknamed him Gizmo and occupied him with sculpting. He developed a love of sculpting gnomes and gnome accessories.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gun kid{{br}}(Gun kid)&lt;br /&gt;
| Growing up in a urbworld, [PAWN_nameDef] never had it easy. Every day was a struggle and pollution, hunger, and gangs of older kids.&lt;br /&gt;
&lt;br /&gt;
In the little space he had to himself, he studied his passion - guns, combat tactics, and war history.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gymnast{{br}}(Gymnast)&lt;br /&gt;
| [PAWN_nameDef] was a professional gymnast at an early age. Thanks to her skills, she was able to leave her homeworld and enroll in a glitterworld university.&lt;br /&gt;
&lt;br /&gt;
Because of the lack of career opportunities in gymnastics, she left the university unemployed and carrying an enormous debt.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hacker kid{{br}}(Hacker)&lt;br /&gt;
| Born on a high-tech world, [PAWN_nameDef] learned hack computers at a young age. &lt;br /&gt;
&lt;br /&gt;
Spending many hours tinkering alone made [PAWN_objective] very good with machines, but very bad with humans.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hacker prodigy{{br}}(Hacker)&lt;br /&gt;
| Wedge was raised as the only child of wealthy surgeons. After being pressured into accepting a medical apprenticeship, he snapped. He seized his inheritance and went underground to learn how to exploit computer networks. He quickly became one of the most feared hackers on his home planet.&lt;br /&gt;
| Intellectual: {{+|7}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| ManualDumb{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Headjack addict{{br}}(Headjacker)&lt;br /&gt;
| Plugged in to the computer via head-jack for days at a time, [PAWN_nameDef] found [PAWN_pronoun] preferred the company of computers to that of people or pets.&lt;br /&gt;
| Plants: {{--|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&lt;br /&gt;
| Social{{br}}Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Help desk worker{{br}}(Help desk)&lt;br /&gt;
| Due to [PAWN_possessive] affinity for technology and desire to help others, [PAWN_nameDef] jumped at the chance to take a job at a help desk.&lt;br /&gt;
&lt;br /&gt;
Unfortunately, the job's soul-crushing after-effects lasted longer than [PAWN_possessive] enthusiasm.&lt;br /&gt;
| Intellectual: {{+|3}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hex-cell artist{{br}}(Artist)&lt;br /&gt;
| [PAWN_nameDef] crafted sculptures from spent hex-cells and traded them to a local museum for food.&lt;br /&gt;
&lt;br /&gt;
After [PAWN_possessive] popularity grew, [PAWN_pronoun] was approached by a pirate and abducted. The pirate kept [PAWN_objective] prisoner and forced [PAWN_objective] to create sculptures for sale.&lt;br /&gt;
| Artistic: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! High baroness{{br}}(Noble)&lt;br /&gt;
| [PAWN_nameDef] was born as low-ranking royalty in a large imperial family.&lt;br /&gt;
&lt;br /&gt;
She was placed In charge of running her home planet from an early age, and learned important political and cultural skills in that role.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|7}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hillbilly prodigy{{br}}(Hillbilly)&lt;br /&gt;
| Born on a cold hillbilly planet inhabited mainly by furred xenohumans, Benjamin grew up to the sound of bar fights and shootouts. Though his childhood was spent playing the banjo and working as a mechanic, his abnormal intelligence made him want something more; he entered medical school at a young age.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! History student{{br}}(Student)&lt;br /&gt;
| As a child, [PAWN_nameDef] spent learned many artistic forms including music and novel writing. As [PAWN_pronoun] grew older, [PAWN_pronoun] began to study legends from [PAWN_possessive] home world - legends of the lizard-like beings at the center of [PAWN_possessive] culture's folklore.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hive world child{{br}}(Hiver)&lt;br /&gt;
| [PAWN_nameDef] had an isolated upbringing in an urbworld hive city. His hatred of heights kept him indoors often, and made him an introverted child.&lt;br /&gt;
&lt;br /&gt;
When [PAWN_pronoun] did go out onto the catwalks of the city, [PAWN_pronoun] enjoyed playing war games, becoming proficient with various simulation weapons.&lt;br /&gt;
| Plants: {{+|1}}&amp;lt;/br&amp;gt;Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hunter scavenger{{br}}(Scavenger)&lt;br /&gt;
| Born to a family of raiders in the mudlands of Vinna, [PAWN_nameDef] survived by scavenging food and resources from nearby settlements with [PAWN_possessive] gang. [PAWN_pronoun] was the most ferocious of the bunch.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Ice planet child{{br}}(Ice child)&lt;br /&gt;
| Growing up on the frozen wastes of an ocean moon, [PAWN_nameDef] only had animals and a few hard-bitten sailors as companions.&lt;br /&gt;
&lt;br /&gt;
The lack of social interaction made him develop a interest in engineering - but he never developed any great fondness for humans. &lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&lt;br /&gt;
| Caring{{br}}Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Iceworld survivor{{br}}(Iceborn)&lt;br /&gt;
| [PAWN_nameDef] was born on an iceworld. Survival depended on staying together and building with nothing.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] got used to the cold. [PAWN_pronoun] never got used to dealing with those strange green things called plants.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Idealistic cadet{{br}}(Cadet)&lt;br /&gt;
| Raised in the military traditions of his forefathers, [PAWN_nameDef] was taught from a young age that he would be a great leader and the hero of the Dichter family.&lt;br /&gt;
&lt;br /&gt;
He excelled at his studies and graduated from the academy with honors.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Imperial student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] studied on an imperial midworld where guns were banned and self-defense study was encouraged. The relative safety allowed [PAWN_objective] to focus on [PAWN_possessive] botanical research.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| Crafting{{br}}Firefighting{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Industrial orphan{{br}}(Orphan)&lt;br /&gt;
| [PAWN_nameDef] never knew [PAWN_possessive] parents. [PAWN_possessive] earliest memories were of drudgery in the mines and workhouses of [PAWN_possessive] industrial world.{{br}}Because of this, [PAWN_pronoun] never received a proper education.&lt;br /&gt;
| Crafting: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Indworld urchin{{br}}(Urchin)&lt;br /&gt;
| [PAWN_nameDef] grew up on the streets of a world in the early stages of its industrial revolution. [PAWN_pronoun] passed [PAWN_possessive] days stealing, begging and tinkering with discarded machine scraps, always on the lookout for a way to escape poverty. &lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Infantry{{br}}(Infantry)&lt;br /&gt;
| Lenka was raised on a world wracked by war.&lt;br /&gt;
&lt;br /&gt;
At an early age, she was shown how to use guns and cruelty to project her will. She later distinguished herself by committing atrocities with more enthusiasm than anyone else.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Joywire addict{{br}}(Addict)&lt;br /&gt;
| [PAWN_nameDef]'s wealthy parents provided everything [PAWN_pronoun] ever wanted. After discovering joywires, [PAWN_pronoun] became obsessed. Once [PAWN_possessive] parents realized what happened, they cut [PAWN_objective] off.&lt;br /&gt;
&lt;br /&gt;
Uncaring and often violent, [PAWN_pronoun] sought [PAWN_possessive] next joywire fix by any means possible.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|6}}&amp;lt;/br&amp;gt;Social: {{--|3}}&lt;br /&gt;
| Intellectual{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Jungle kid{{br}}(Jungle kid)&lt;br /&gt;
| [PAWN_nameDef] was abandoned as a newborn, and grew up among the animals of [PAWN_possessive] homeworld’s dense jungles.&lt;br /&gt;
&lt;br /&gt;
When [PAWN_pronoun] was a teenager, a traveling doctor found [PAWN_objective] injured near a road, hissing and meowing. He rescued [PAWN_objective] and took [PAWN_objective] on as an apprentice.&lt;br /&gt;
| Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Junkyard mechanic{{br}}(Mechanic)&lt;br /&gt;
| Left for dead at a young age, [PAWN_nameDef] was rescued by an old man who ran an urbworld junkyard. The old man forced [PAWN_nameDef] to do dangerous, demanding work. &lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] became very familiar with machines, but [PAWN_pronoun] grew up with almost no other experiences.&lt;br /&gt;
&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Kid scientist{{br}}(Scientist)&lt;br /&gt;
| Born into an influential family, [PAWN_nameDef] received the best education money could buy. Her intellect soon proved to be superior to many. However, her lack of empathy quickly put her at odds with her teachers and her parents.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| ManualDumb{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Killer{{br}}(Killer)&lt;br /&gt;
| [PAWN_nameDef] was a bloodlusting child. Villagers thought her the product of a snake demon and human coupling.&lt;br /&gt;
&lt;br /&gt;
After watching how her human father betrayed and murdered her mother, she longed to see how many more humans she could get to fall into her hands.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Lab-grown child{{br}}(Lab-grown)&lt;br /&gt;
| [PAWN_nameDef] was born in a laboratory as part of a altruistic but failed attempt to create a new class of human.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] childhood was filled with books and one-on-one tutoring. He was awkward, shy, and naive to the true nature of humanity.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Labor camp orphan{{br}}(Orphan)&lt;br /&gt;
| [PAWN_nameDef] lost her parents in an industrial accident and grew up in an orphans' labor camp. The camp overseers worked their charges mercilessly - but at least she was clothed and fed.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|4}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Logical child{{br}}(Logic kid)&lt;br /&gt;
| [PAWN_pronoun] preferred logical activities like computers and was completely useless at art.&lt;br /&gt;
&lt;br /&gt;
Being awkward in social situations, [PAWN_possessive] friends were few but close.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mad scientist{{br}}(Scientist)&lt;br /&gt;
| [PAWN_nameDef] grew up miserable on the plains of a neolithic planet. He found the strength to fight under the teachings of an old, broken scientist.&lt;br /&gt;
&lt;br /&gt;
He quickly learned to play with people's fears, and was nicknamed 'mad scientist'.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Marine cadet{{br}}(Cadet)&lt;br /&gt;
| [PAWN_nameDef] was in a planetary marine cadet program.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was kicked out for shooting an officer. It was never established whether this was an accident.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mechanoid hacker{{br}}(Mechacker)&lt;br /&gt;
| The only son of a well respected mechanoid inventor, [PAWN_nameDef] had access to the materials to subvert and modify [PAWN_possessive] father's creations.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] used drugs to increase [PAWN_possessive] productivity. Unfortunately, the side-effects included persistent delusions of being mechanized, which limited [PAWN_possessive] social life.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mechanoid nerd{{br}}(Mechanerd)&lt;br /&gt;
| [PAWN_nameDef] grew up in an urbworld as the only child of a pair of mechanoid designers.&lt;br /&gt;
They encouraged [PAWN_possessive] interest in the machines. Eventually, [PAWN_pronoun] became obsessed with building [PAWN_possessive] own.&lt;br /&gt;
&lt;br /&gt;
Unfortunately this also lead to [PAWN_objective] being a loner as [PAWN_pronoun] prefered technical books to friends.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medical assistant{{br}}(Medic)&lt;br /&gt;
| [PAWN_nameDef] was born during a catastrophic war in which both sides used napalm extensively. [PAWN_pronoun] grew up helping [PAWN_possessive] parents in an infirmary, treating the cascade of horrific burns from the battlefields. [PAWN_pronoun] was left with a lifelong fear of fire.&lt;br /&gt;
| Medicine: {{+|5}}&lt;br /&gt;
| Firefighting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medical helper{{br}}(Med helper)&lt;br /&gt;
| [PAWN_nameDef] traveled between rim worlds with [PAWN_possessive] family. [PAWN_nameDef]'s mother, a renowned doctor, often delivered lectures from the hull of their retrofitted cargo/medical ship.&lt;br /&gt;
&lt;br /&gt;
Sometimes, the family took on difficult long-term medical work with especially needy patients, and [PAWN_nameDef] helped where he could.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medical student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] grew up on a glitterworld in a family of doctors and chose to maintain the tradition.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] had few friends, but got along with [PAWN_possessive] siblings very well.&lt;br /&gt;
| Social: {{+|1}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medical student{{br}}(Student)&lt;br /&gt;
| Born into a long line of doctors, [PAWN_nameDef] was tutored in all fields of medicine, from herbal ointments to the modern synthetic drugs. [PAWN_pronoun] also picked up a healthy disdain for lower class work.&lt;br /&gt;
| Construction: {{--|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Hauling{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval lordling{{br}}(Lordling)&lt;br /&gt;
| [PAWN_nameDef] was a minor noble in an old kingdom on a medieval world. [PAWN_pronoun] grew up in a manor made of stone, served by bowing lowerclassmen.{{br}}Such a life teaches no technical skills and instils a lifelong aversion to manual labor - but [PAWN_nameDef] learned early the ways of social manipulation.&lt;br /&gt;
| Social: {{+|4}}&amp;lt;/br&amp;gt;Construction: {{--|1}}&amp;lt;/br&amp;gt;Mining: {{--|1}}&amp;lt;/br&amp;gt;Plants: {{--|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval plower{{br}}(Plower)&lt;br /&gt;
| [PAWN_nameDef] lived on a planet where kings and queens ruled with little regard for the peasants beneath them. [PAWN_possessive] family owned a large farm, but the king took most of the food it produced. This left [PAWN_nameDef]'s family poor, and unable to pay for [PAWN_possessive] education. Instead, [PAWN_pronoun] was required to work the fields with [PAWN_possessive] parents, and never had time to practice creativity.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|5}}&amp;lt;/br&amp;gt;Intellectual: {{--|1}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval slave{{br}}(Slave)&lt;br /&gt;
| [PAWN_nameDef] grew up pulling carts and digging holes on a medieval world. Simple manual labor is [PAWN_possessive] oldest companion - along with the master's lash.{{br}}[PAWN_pronoun] didn't learn to read until age nine.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Construction: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval slave{{br}}(Slave)&lt;br /&gt;
| Born into slavery, Soren never knew his parents. He eventually escaped from his masters and boarded a military cargo ship, where he was pressed into military service.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{+|1}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval squire{{br}}(Squire)&lt;br /&gt;
| William grew up on a medieval planet as a knight in training. He trained directly under the king's war adviser for most of his youth, and learned to fight with a sword and shield.&lt;br /&gt;
| Construction: {{--|1}}&amp;lt;/br&amp;gt;Mining: {{--|1}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&lt;br /&gt;
| Cooking{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval thief{{br}}(Thief)&lt;br /&gt;
| [PAWN_nameDef] grew up poor and hungry on a medieval planet, learning to fend for himself.&lt;br /&gt;
&lt;br /&gt;
At first, he only took what he needed. Then he learned to take what he wanted.&lt;br /&gt;
| Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mercenary recruit{{br}}(Mercenary)&lt;br /&gt;
| Descended from a long line of off-world mercenaries, [PAWN_nameDef] grew up in a busy trading hub.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive]'s interest in the foreign goods at the market often distracted him from his chores and training.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mercenary recruit{{br}}(Recruit)&lt;br /&gt;
| Born to a long line of off-world mercenaries, [PAWN_nameDef] grew up in a busy trading hub. At a young age, [PAWN_pronoun] was recruited into one of the mercenary crews.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Midworld cadet{{br}}(Cadet)&lt;br /&gt;
| Growing up on a high-tech midworld with a flourishing space transit industry, [PAWN_nameDef] wished to leave for the stars and live among the growing spacer class.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] excelled in [PAWN_possessive] studies, and gained entry to [PAWN_possessive] homeworld's most prestigious naval academy.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Midworld geek{{br}}(Geek)&lt;br /&gt;
| [PAWN_nameDef] grew up in a quiet suburban neighborhood. He was never a master of social interaction, but his interest in computers blossomed into a true talent at an early age.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Social: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Midworld loner{{br}}(Loner)&lt;br /&gt;
| [PAWN_nameDef] was born on a peaceful, unimportant midworld.&lt;br /&gt;
&lt;br /&gt;
While [PAWN_pronoun] had a few friends, [PAWN_pronoun] preferred to spend [PAWN_possessive] time in solitude, tinkering on [PAWN_possessive] autocycle while listening to netcasts, or plinking at plastic soldiers with a new rifle [PAWN_pronoun] had just put together.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Midworld sketcher{{br}}(Sketcher)&lt;br /&gt;
| [PAWN_nameDef] was born into a loving but poor family.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] discovered he had an artistic talent which he inherited from his father. [PAWN_possessive] mother taught him the benefits of hard work and determination. As he grew older, [PAWN_nameDef] developed a fascination with technology and military history.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Militant child{{br}}(Soldier)&lt;br /&gt;
| [PAWN_nameDef]'s military family forced him to train in hand-to-hand combat and fighting tactics.&lt;br /&gt;
&lt;br /&gt;
In his own time, he built small inventions. This sharpened his mind.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Military cadet{{br}}(Cadet)&lt;br /&gt;
| Orphaned as a child, [PAWN_nameDef] was sent to a secret military school on a harsh deadworld.&lt;br /&gt;
&lt;br /&gt;
Taking quickly to firearms and survival training, [PAWN_pronoun] graduated with honor, transitioning into a leadership position in covert operations.&lt;br /&gt;
| Plants: {{--|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{--|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Military child{{br}}(Military)&lt;br /&gt;
| [PAWN_nameDef] grew up in a family with a rich military background. [PAWN_possessive] teenage years were spent traveling system to system wherever [PAWN_possessive] parents were deployed.&lt;br /&gt;
&lt;br /&gt;
Following the tradition of [PAWN_possessive] family, [PAWN_pronoun] enlisted at the earliest possible age.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Military recruit{{br}}(Recruit)&lt;br /&gt;
| [PAWN_nameDef] was born on a midworld run by an intensely militaristic dictatorship.&lt;br /&gt;
&lt;br /&gt;
From a young age, [PAWN_pronoun] was trained to be a good soldier. They taught him how to use a gun and how to fight with melee weapons.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Military trainee{{br}}(Soldierboy)&lt;br /&gt;
| [PAWN_nameDef] was raised on a military base in the Xennoa system. [PAWN_pronoun] was exposed to many different strenuous activities and grew strong at an early age. [PAWN_pronoun] also learned negotiation, medical, and military tactics.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Music idol{{br}}(Music idol)&lt;br /&gt;
| [PAWN_nameDef] was the only daughter of a powerful company president. [PAWN_possessive] beautiful appearance led to a career as a music idol.&lt;br /&gt;
&lt;br /&gt;
When [PAWN_possessive] mother died, [PAWN_nameDef] could not bear [PAWN_possessive] father's loneliness, and became his sexual companion.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Music lover{{br}}(Musician)&lt;br /&gt;
| As a child, [PAWN_nameDef] had a talent for playing musical instruments and singing. [PAWN_pronoun] was given expert training and loved to perform in recitals and concerts, though the lavish praise [PAWN_pronoun] received made [PAWN_objective] a little self-obsessed.&lt;br /&gt;
| Social: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mute{{br}}(Mute)&lt;br /&gt;
| [PAWN_nameDef] was greatly affected by a traumatic event early in [PAWN_possessive] life. For many years [PAWN_pronoun] refused to speak to people, preferring instead to play with [PAWN_possessive] household's numerous pets.&lt;br /&gt;
| Animals: {{+|5}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Naturalist{{br}}(Naturalist)&lt;br /&gt;
| Mitch grew up on a backwater planet with minimal education. He had to hunt and grow food to survive.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] family's home was frequently raided for food by scavengers. This made Mitch very suspicious and slow to trust anyone he doesn't know.&lt;br /&gt;
| Plants: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Navy pathfinder{{br}}(Pathfinder)&lt;br /&gt;
| [PAWN_nameDef] was raised and trained by a group of military explorers dedicated to charting pathways through deep space and on remote planets.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Nerd{{br}}(Nerd)&lt;br /&gt;
| [PAWN_nameDef] was curious about everything. While other kids played tag in the suburbs of their industrial city, [PAWN_nameDef] read every book he could find about technology, robots, and weapons - whatever looked coolest.&lt;br /&gt;
&lt;br /&gt;
His strong French accent kept him from making real friends.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! New age duelist{{br}}(Duelist)&lt;br /&gt;
| [PAWN_nameDef] was fascinated with combat. [PAWN_possessive] parents traveled often, so [PAWN_pronoun] was able to sample many different fighting styles, from 76th-wave jujutsu to the infamous 'urbworld-style' karate.&lt;br /&gt;
&lt;br /&gt;
A polite child, most fighters accepted [PAWN_possessive] requests for training - but moving around often without finishing a tutelage made [PAWN_objective] lazy.&lt;br /&gt;
| Shooting: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Animals: {{--|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Noble ward{{br}}(Ward)&lt;br /&gt;
| [PAWN_nameDef] was adopted by a prominent noble family after being left on their doorstep by [PAWN_possessive] mother.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] quickly learned secrets that passed between the nobles like cheap wine - of worlds beyond her own, languages, cultures and technologies both new and old.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{--|1}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| ManualDumb{{br}}Firefighting{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Officer cadet{{br}}(Cadet)&lt;br /&gt;
| From a young age, Bashkire trained to be a leader of men. He enrolled in the Vanu Defense College when he was a boy and became proficient with a range of weapons and survival techniques.&lt;br /&gt;
| Plants: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|1}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Offworld recruit{{br}}(Recruit)&lt;br /&gt;
| [PAWN_nameDef] was born an raised in an offworld soldier growth facility. From a very young age, [PAWN_pronoun] was taught close-quarters combat tactics, aggression, and how to survive on distant planets.&lt;br /&gt;
&lt;br /&gt;
One of the best, [PAWN_nameDef] was eventually chose to enter the orbital-deployment shock troop corps.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Optimistic child{{br}}(Optimistic)&lt;br /&gt;
| Kees was blessed with loving parents and a pleasant midworld life. He was an  optimistic and sociable kid who loved making friends and listening to their stories. His imagination would run wild with ideas and questions.&lt;br /&gt;
| Social: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Organ farm{{br}}(Organ farm)&lt;br /&gt;
| [PAWN_nameDef] was raised in an illegal underground organ farm. [PAWN_possessive] body was used to grow organic implants for wounded mercenaries. Though [PAWN_possessive] upbringing has left [PAWN_objective] haunted, it has also given [PAWN_objective] a unique understanding of human biology.&lt;br /&gt;
| Medicine: {{+|5}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Orphan of war{{br}}(Orphan)&lt;br /&gt;
| [PAWN_nameDef] lost his family and home early in life. His life became emotionally hollow, but his painful memories drove him to survive.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] took several jobs, but never achieved more than a basic education.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|3}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Orphan{{br}}(Orphan)&lt;br /&gt;
| Born in a brothel on a harsh world, [PAWN_nameDef] never really had a childhood. [PAWN_pronoun] did odd jobs to survive, and became distant from others.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Social{{br}}Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Orphan{{br}}(Orphan)&lt;br /&gt;
| Born on a deep space station, [PAWN_nameDef] was orphaned at a young age. In the orphanage, he stood up for the weaker kids and fought off the bullies.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Crafting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Orphan{{br}}(Orphan)&lt;br /&gt;
| Left alone in the world without parents, Kevin did the best he could to adapt.&lt;br /&gt;
&lt;br /&gt;
Having to take care both of himself and younger kids at the orphanage, he learned a lot about humans and how to interact with them.&lt;br /&gt;
| Social: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pampered{{br}}(Pampered)&lt;br /&gt;
| Born on a decadent glitterworld, [PAWN_nameDef] was given every expensive toy.&lt;br /&gt;
&lt;br /&gt;
This pampered lifestyle caused [PAWN_objective] to miss many basic life lessons. [PAWN_pronoun] developed a special aversion to cooking, and always ordered the staff to do the kitchen work.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{--|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pet keeper{{br}}(Pet keeper)&lt;br /&gt;
| [PAWN_nameDef] spent most of [PAWN_possessive] childhood tending the animals [PAWN_pronoun] had bought or rescued.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] saw beauty in natural things more than fabricated objects, and chose the company of [PAWN_possessive] animals over that of [PAWN_possessive] peers.&lt;br /&gt;
| Medicine: {{+|1}}&amp;lt;/br&amp;gt;Animals: {{+|6}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Philosopher{{br}}(Thinker)&lt;br /&gt;
| [PAWN_nameDef] was a student on a glitterworld. [PAWN_pronoun] had a hard time in school, since the other kids thought [PAWN_objective] rather strange.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] always maintained a distance from these events, being continuously surprised by the many interesting and awkward ways life can go.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pickpocket{{br}}(Pickpocket)&lt;br /&gt;
| Orphaned and abandoned on the tumultuous streets of his polluted, teeming homeworld, [PAWN_nameDef] survived by deft hand and fleet foot. A natural born thief and trickster, [PAWN_pronoun] rose to prominence early, running the notorious and violent urchin gang 'Doomben Rats'.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pickpocket{{br}}(Thief)&lt;br /&gt;
| [PAWN_nameDef] witnessed [PAWN_possessive] parents' murder at a young age. With no guidance, [PAWN_pronoun] had to fend for [PAWN_objective]self any way possible. Joining a small group of misfits [PAWN_pronoun] did whatever was necessary to survive.&lt;br /&gt;
| Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|1}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pilot fan{{br}}(Pilot fan)&lt;br /&gt;
| [PAWN_nameDef]'s father was a starfighter pilot, and [PAWN_pronoun] always idolized the old man.&lt;br /&gt;
&lt;br /&gt;
From a young age, [PAWN_pronoun] collected pilot memorabilia and studied pilot books, preparing to join the deep space navy and follow in [PAWN_possessive] father's footsteps.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pit gladiator{{br}}(Gladiator)&lt;br /&gt;
| [PAWN_nameDef] was enslaved as a child and forced to fight creatures and other people in an underground fighting arena.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] showed an affinity for the sport, and eventually bought his own freedom. However, his time in the pits never brought him much intellectual stimulation.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pizza lover{{br}}(Pizza kid)&lt;br /&gt;
| [PAWN_nameDef] loved boomrat pizza intensely. Rarely eating anything else, he was prone to bad health and low oxygen uptake.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] loved bashing in the skulls of random creatures to see what was inside.&lt;br /&gt;
| Melee: {{+|5}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Plague child{{br}}(Child)&lt;br /&gt;
| Born on a world wracked by plague, both of [PAWN_nameDef]'s parents were doctors. &lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] was raised in reverse-quarantine, under the Hippocratic oath. [PAWN_pronoun] experienced little social interaction. However, [PAWN_pronoun] gained a lot of medical experience assisting in treatments.&lt;br /&gt;
| Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|5}}&lt;br /&gt;
| Violent{{br}}Animals{{br}}Artistic{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Plague prodigy{{br}}(Prodigy)&lt;br /&gt;
| [PAWN_nameDef]'s childhood was cut short when a mysterious plague hit his homeworld.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] watched his friends die, and his compassion for humanity died with them. In its place a new thirst for knowledge emerged.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Plague survivor{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef] watched as a mysterious plague spread through [PAWN_possessive] town, killing [PAWN_possessive] family and friends.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned some medicine from watching the plague doctors, but was mentally scarred by the ordeal.&lt;br /&gt;
| Social: {{--|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Poor kid{{br}}(Poor kid)&lt;br /&gt;
| Abandoned by his parents, [PAWN_nameDef] learned how to survive by himself before he was ten years old.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|1}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Power-mad scholar{{br}}(Scholar)&lt;br /&gt;
| &amp;quot;Knowledge is power.&amp;quot; These words sparked something within [PAWN_nameDef], and came to form his core drive. When not entombed within libraries, [PAWN_pronoun] would take things apart to see first-hand how they worked, with little regard for the border between mechanical and organic.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Privileged child{{br}}(Privileged)&lt;br /&gt;
| Born to an upper-class family, [PAWN_nameDef] grew up with all the best things - the best education, the best social contacts, and of course the best technology money could buy.&lt;br /&gt;
&lt;br /&gt;
Unfortunately, living in such decadence left [PAWN_nameDef] rather spoiled when it came to labor.&lt;br /&gt;
| Social: {{+|3}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Privileged prodigy{{br}}(Prodigy)&lt;br /&gt;
| [PAWN_nameDef] was recognized as gifted early in his glitterworld upbringing. Luckily, [PAWN_possessive] family was in a position to cultivate that genius through advanced education. [PAWN_possessive] training included science, leadership, and the arts.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}Violent{{br}}Hauling{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Prodigal student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] was a faithful student, and was dedicated to learning anything and everything he could about humanity and its creations.&lt;br /&gt;
&lt;br /&gt;
While [PAWN_pronoun] was shunned as a nerd, [PAWN_pronoun] didn't mind. [PAWN_pronoun] hoped for a brighter future.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Professional gamer{{br}}(Pro gamer)&lt;br /&gt;
| [PAWN_nameDef] was obsessed with video games since his hands were big enough to grip a joystick.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] achieved middling finishes in several local tournaments during the 16-bit era. Nobody noticed when he retired early in his teenage years.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Project subject{{br}}(Subject)&lt;br /&gt;
| [PAWN_nameDef] was picked by government agents for the mysterious &amp;quot;Frame Project&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Due to memory blockages, however, he remembers very little about this project or its true agenda - only that there were few survivors.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Psychology student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] researched new religions and traditions and often dreamt of distant stars. &lt;br /&gt;
&lt;br /&gt;
His dreams prompted him to ask what lay beyond the lights in the sky.&lt;br /&gt;
| Social: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Punk{{br}}(Punk)&lt;br /&gt;
| [PAWN_nameDef] spent his childhood selling knockoff cigarettes to 15-year-olds. The cigarettes were often full of grass clippings.&lt;br /&gt;
| Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pyro assistant{{br}}(Assistant)&lt;br /&gt;
| On an industrial world, [PAWN_nameDef] learned early that if [PAWN_pronoun] wanted to eat, [PAWN_pronoun] had to work. So work [PAWN_pronoun] did. Kids fit in places adults can't, and where [PAWN_pronoun] was from, the safety laws were quite flexible.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was always a bit of a pyromaniac, and was banned from the kitchen after an unfortunate incident.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Cooking{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pyromaniac{{br}}(Pyro)&lt;br /&gt;
| From an early age, [PAWN_nameDef] had an unhealthy fascination with fire. [PAWN_pronoun] would set refuse heaps ablaze and become so entranced by the flames [PAWN_pronoun] would absent-mindedly burn [PAWN_objective]self.{{br}}One day while playing with matches, [PAWN_pronoun] carelessly burned down [PAWN_possessive] home.&lt;br /&gt;
| Social: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| Firefighting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Quiet nerd{{br}}(Nerd)&lt;br /&gt;
| [PAWN_nameDef] was raised by doting parents on a midworld. Instead of playing with other children, [PAWN_pronoun] read books voraciously.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was not particularly rugged, and struggled with physical labor.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Ranger child{{br}}(Ranger kid)&lt;br /&gt;
| [PAWN_nameDef] was raised in a forest. [PAWN_possessive] father taught [PAWN_objective] to hunt and live off the land, so that [PAWN_pronoun] could live without the need of others when father died.&lt;br /&gt;
&lt;br /&gt;
Accustomed to manual labor and with an intuitive mind, [PAWN_nameDef] could survive weeks alone.&lt;br /&gt;
| Mining: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Firefighting{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Rebel child{{br}}(Rebel)&lt;br /&gt;
| [PAWN_nameDef] was born under authoritarian rule. Despite intense oppression from family and community, she never gave up fighting for her dignity and her freedom.&lt;br /&gt;
&lt;br /&gt;
She was often put into hopeless situations where even family would try to terrorize her into propriety. She learned to trust no one.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Rebel slave{{br}}(Rebel)&lt;br /&gt;
| [PAWN_nameDef] was born into corporate slavery and raised to perform menial tasks for minimum pay. [PAWN_pronoun] was just another cog in the machine. &lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] found his freedom by joining a rebel organization whose goal was to break free from their corporate masters.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Plants: {{+|1}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Rebel student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] grew up in a modest but privileged family who encouraged him to play chess and shoot skeet at a young age.&lt;br /&gt;
&lt;br /&gt;
As a bored student, [PAWN_pronoun] found joy in challenging his teachers about the contradictions between his planet's official values and their government's policies.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Rebel writer{{br}}(Writer)&lt;br /&gt;
| Early on, [PAWN_nameDef] developed a talent for writing. [PAWN_pronoun] was soon writing a popular online journal - anonymously, to hide [PAWN_possessive] age - on topics ranging from bioethics to political theory and xenosociology.&lt;br /&gt;
| Intellectual: {{+|7}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Reclusive prodigy{{br}}(Prodigy)&lt;br /&gt;
| Growing up on a flourishing glitterworld afforded Holly the chance to fully devote herself to her studies.&lt;br /&gt;
&lt;br /&gt;
Having taken a keen interest in genetic modification and neural augmentation from a young age, she had little time (or desire) for a regular childhood.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Re-educated youth{{br}}(Reeducated)&lt;br /&gt;
| [PAWN_nameDef] lived on a midworld where the government cared about the youth. &lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was one of the many children who were taken from their parents and forced into the new education programs.&lt;br /&gt;
| Social: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Rich boy{{br}}(Rich boy)&lt;br /&gt;
| [PAWN_nameDef] grew up on a midworld with loving parents, a cute pet and a lot of money - but no friends.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was always told by his father that 'those peasants just want your money'. So, [PAWN_pronoun] spent most of his time alone, or fighting other kids.&lt;br /&gt;
| Melee: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| Caring{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Ritual child{{br}}(Sacrifice)&lt;br /&gt;
| Born with a special mark on [PAWN_possessive] neck, [PAWN_nameDef]'s tribe chose to sacrifice [PAWN_objective] in a blood ritual. They left [PAWN_objective] in the forest to die. A pack of arctic wolves found and adopted [PAWN_objective].&lt;br /&gt;
&lt;br /&gt;
Over time, [PAWN_pronoun] learned to make tools to hunt with the pack.&lt;br /&gt;
| Intellectual: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Scavenger{{br}}(Scavenger)&lt;br /&gt;
| [PAWN_nameDef] grew up in one of the few remaining cities on a world ravaged by nuclear war.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned to survive on [PAWN_possessive] own in this post-apocalyptic wasteland by scavenging for technology and supplies.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Schoolyard outcast{{br}}(Outcast)&lt;br /&gt;
| [PAWN_nameDef] had a modest but proper upbringing. Despite a good family background and plenty of support, [PAWN_pronoun] struggled to make friends and was often bullied. [PAWN_pronoun] learned to work or play alone, and avoided socializing to avoid conflict.&lt;br /&gt;
&lt;br /&gt;
When conflict did arise, [PAWN_nameDef] would retaliate violently.  &lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Science prodigy{{br}}(Prodigy)&lt;br /&gt;
| [PAWN_nameDef] was top of her class in chemistry, physics, exobiology, astronomy and opera.&lt;br /&gt;
&lt;br /&gt;
An unfortunate lab accident left her with a deathly fear of fire.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Violent{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Scout{{br}}(Scout)&lt;br /&gt;
| Born to colonial administrators from a small imperial power, [PAWN_nameDef] was enrolled in a youth program that taught military scouting skills.{{br}}[PAWN_pronoun] learned to survive in the wilderness, to obey, and not to ask questions.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&amp;lt;/br&amp;gt;Construction: {{+|1}}&lt;br /&gt;
| Artistic{{br}}Intellectual{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Scout{{br}}(Scout)&lt;br /&gt;
| Nate loved being outdoors. His parents enrolled him in a program that taught military scouting skills. He thrived when he was left alone in the wilderness.&lt;br /&gt;
&lt;br /&gt;
Due to this upbringing, however, [PAWN_nameDef] did not learn the basic technological skills that are taken for granted by many others.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Scrounger{{br}}(Scrounger)&lt;br /&gt;
| [PAWN_nameDef] would dive into junk mounds in search for valuables and items of interest.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was never bothered by the stink, or dangers that could leave [PAWN_objective] wounded for weeks.&lt;br /&gt;
| Mining: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sentimental child{{br}}(Nice kid)&lt;br /&gt;
| [PAWN_nameDef] was a nice child. When anybody had a problem, [PAWN_pronoun] tried to fix it. But, being a child, [PAWN_pronoun] did not always succeed. This hurt his sensitive soul.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] dreamed of being a soldier who fights raiders and aliens.&lt;br /&gt;
| Social: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Shelter child{{br}}(Shelterkid)&lt;br /&gt;
| [PAWN_nameDef] grew up in a shelter deep beneath a toxic world. [PAWN_pronoun] received a comprehensive education, but had no opportunity to do physical labour.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Construction: {{--|2}}&amp;lt;/br&amp;gt;Mining: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Ship child{{br}}(Ship child)&lt;br /&gt;
| [PAWN_nameDef]'s family were space traders. One day, [PAWN_nameDef]'s cryptosleep pod failed in transit. [PAWN_pronoun] had to spend years awake on the ship as the other slept.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] filled [PAWN_possessive] days creating beautiful contraptions from the ship's cargo - but [PAWN_pronoun] didn't learn a lot of basic planetary living skills.&lt;br /&gt;
| Melee: {{--|3}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Animals{{br}}Cooking{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Ship technician{{br}}(Technician)&lt;br /&gt;
| [PAWN_nameDef] was an apprentice technician on trade ships plying their routes between the stations and planets of her home system. In this job, she learned to fix and improve many machines.&lt;br /&gt;
&lt;br /&gt;
Sometimes, her ship was assigned to short exploratory jaunts into dangerous regions of space.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Plants: {{--|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Shooting coma{{br}}(Coma child)&lt;br /&gt;
| Nebulys fell into a coma at a young age and spent years dreaming about shooting. When he awoke, he was useless at most tasks - but he could aim pretty well.&lt;br /&gt;
| Shooting: {{+|8}}&lt;br /&gt;
| Intellectual{{br}}ManualDumb{{br}}ManualSkilled{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Shopkeeper{{br}}(Shopkeep)&lt;br /&gt;
| [PAWN_nameDef]'s mother was often ill, and it fell to [PAWN_objective] to run the store which was their only source of income. [PAWN_pronoun] learned a little about the exotic artifacts which [PAWN_pronoun] sold, and a lot about the art of the deal.&lt;br /&gt;
| Social: {{+|4}}{{br}}Intellectual: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sickly child{{br}}(Patient)&lt;br /&gt;
| As a child, [PAWN_nameDef] suffered from a rare disease. Quarantined in a research hospital, [PAWN_pronoun] had minimal human contact and got little physical exercise. In the sterile hospital environment, however, [PAWN_pronoun] became very familiar with science and medicine.&lt;br /&gt;
| Melee: {{--|2}}{{br}}Construction: {{--|2}}{{br}}Medical: {{+|5}}{{br}}Social: {{--|2}}{{br}}Intellectual: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sole survivor{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef]’s entire tribe was wiped out in a raid. Though [PAWN_pronoun] was adopted by another group, [PAWN_pronoun] was emotionally scarred, and preferred to stay near home, cooking and tending crops.&lt;br /&gt;
| Cooking: {{+|3}}{{br}}Plants: {{+|3}}&lt;br /&gt;
| Violent&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Story writer{{br}}(Writer)&lt;br /&gt;
| As a child, [PAWN_nameDef] was addicted to reading. [PAWN_pronoun] would spend all day in [PAWN_possessive] local library with [PAWN_possessive] nose in a book. When budget cuts forced the library to close, [PAWN_nameDef] was distraught. [PAWN_pronoun] decided to fill the gap by writing [PAWN_possessive] own stories instead.&lt;br /&gt;
| Artistic: {{+|4}}{{br}}Intellectual: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Test subject{{br}}(Testee)&lt;br /&gt;
| On the most corrupt urbworlds, scientists without a moral compass commit unspeakable atrocities in the name of research. [PAWN_nameDef] was kept alone in a sealed facility from birth and subjected to a variety of behavioural experiments in an attempt to turn [PAWN_objective] into a perfect super-soldier.&lt;br /&gt;
| Shooting: {{+|4}}&lt;br /&gt;
| Social{{br}}Caring{{br}}Firefighting&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Tribe child{{br}}(Tribal)&lt;br /&gt;
| [PAWN_nameDef] grew up in the tribe, running around the village, moving with the muffalo herds, learning essential skills from [PAWN_possessive] parents.{{br}}[PAWN_pronoun] never learned to read and never saw a machine that wasn't an ancient ruin.&lt;br /&gt;
| Shooting: {{+|2}}{{br}}Melee: {{+|2}}{{br}}Plants: {{+|2}}{{br}}Intellectual: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Urbworld urchin{{br}}(Urchin)&lt;br /&gt;
| The urbworlds - ancient and deep industrial cityscapes bursting with humanity and poison. [PAWN_nameDef] grew up in the dark, unwanted reaches of such a place. [PAWN_pronoun] had to fight for every scrap of food.&lt;br /&gt;
| Shooting: {{+|2}}{{br}}Melee: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Vatgrown soldier{{br}}(Vatgrown)&lt;br /&gt;
| [PAWN_nameDef] wasn't made as a person, but as an instrument of destruction. Grown in a bioweapons facility and taught combat during [PAWN_possessive] accelerated growth, [PAWN_nameDef] still has a proclivity for combat of all kinds and an aversion to human contact.&lt;br /&gt;
| Shooting: {{+|4}}{{br}}Melee: {{+|4}}&lt;br /&gt;
| Social{{br}}Caring&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Vengeful child{{br}}(Vengeful)&lt;br /&gt;
| As a child, [PAWN_nameDef] returned to [PAWN_possessive] village to find that it had been wiped out by bandits. [PAWN_pronoun] swore revenge on the attackers and began a violent rampage across the wilderness.&lt;br /&gt;
| Shooting: {{+|3}}{{br}}Melee: {{+|3}}&lt;br /&gt;
| Caring&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! War refugee{{br}}(Refugee)&lt;br /&gt;
| War broke out in [PAWN_nameDef]'s home when [PAWN_pronoun] was a baby. [PAWN_possessive] parents fled with [PAWN_objective], seeking safety wherever they could find it. [PAWN_nameDef]'s earliest memories are of being taught how to defend [PAWN_objective]self.{{br}}The violence and destruction [PAWN_pronoun] witnessed left [PAWN_objective] scarred for life.&lt;br /&gt;
| Cooking: {{+|2}}{{br}}Crafting: {{+|2}}&lt;br /&gt;
| Violent&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Wreckage explorer{{br}}(Explorer)&lt;br /&gt;
| Two generations before [PAWN_nameDef] was born, an apocalyptic war dragged [PAWN_possessive] home planet into anarchy. [PAWN_nameDef] was tasked with watching [PAWN_possessive] tribe's herds, but often shirked [PAWN_possessive] duties to go exploring the crashed warships scattered around the planet.&lt;br /&gt;
| Animals: {{+|3}}{{br}}Intellectual: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=List_of_childhood_backstories&amp;diff=63382</id>
		<title>List of childhood backstories</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=List_of_childhood_backstories&amp;diff=63382"/>
		<updated>2019-05-07T18:14:17Z</updated>

		<summary type="html">&lt;p&gt;Mehni: Part R of the definitive list of backstories, sourced from build 2231. Script made. This is as they appear in the game.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;amp;larr; &amp;lt;small&amp;gt;[[Backstories]]&amp;lt;/small&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| {{STDT| sortable c_17}}&lt;br /&gt;
! Title&amp;lt;br /&amp;gt;(Short Title) !! Description !! Skill Modifications !! Incapable of !! Civil !! Raider !! Slave !! Trader !! Traveler !! Tribal&lt;br /&gt;
|-&lt;br /&gt;
! Abandoned child{{br}}(Abandoned)&lt;br /&gt;
| [PAWN_nameDef] was a quick witted, funny child. One day, [PAWN_pronoun] wandered off on [PAWN_possessive] wealthy genetic parents, and was ultimately lost in a supposedly unused ore warehouse. Due to cloning technology, [PAWN_possessive] parents decided that the time looking for [PAWN_objective] was better spent on just cloning a better son.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|1}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Abandoned orphan{{br}}(Orphan)&lt;br /&gt;
| Abandoned at birth, young [PAWN_nameDef] started [PAWN_possessive] life in an orphanage.&lt;br /&gt;
&lt;br /&gt;
A rascal and a scoundrel, [PAWN_pronoun] became a clever troublemaker.&lt;br /&gt;
| Plants: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Abductee{{br}}(Abductee)&lt;br /&gt;
| [PAWN_nameDef] was abducted at a young age and forced to do menial labor on a pirate ship.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Abductee{{br}}(Abductee)&lt;br /&gt;
| [PAWN_nameDef] was abducted by xenohumans when [PAWN_pronoun] was still a baby. They experimented on [PAWN_objective] to understand his genetic structure.&lt;br /&gt;
&lt;br /&gt;
As [PAWN_pronoun] grew up, [PAWN_nameDef] grew a little bit too big and strong for his captors and eventually escaped.&lt;br /&gt;
&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Academy student {{br}}(Student )&lt;br /&gt;
| [PAWN_nameDef] went to school like a good space cadet would. He was very tall and was known for his good looks.&lt;br /&gt;
&lt;br /&gt;
Though he worried more about his hairstyle than his grades, he still somehow passed the final exams.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Accursed child{{br}}(Cursed)&lt;br /&gt;
| [PAWN_nameDef] was born at the peak of a lunar eclipse. The elders declared [PAWN_objective] a child of darkness brought [PAWN_objective] under their care.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] entire childhood was spent studying the lore and rituals of [PAWN_possessive] people - until the day of calling.&lt;br /&gt;
| Construction: {{--|1}}&amp;lt;/br&amp;gt;Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| Firefighting{{br}}Cleaning{{br}}Hauling{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Adventuring child{{br}}(Adventurer)&lt;br /&gt;
| Axle was raised to become an engineer. For years, he planned to stow away on a cargo ship and start a new, more adventuresome life.&lt;br /&gt;
&lt;br /&gt;
One night, after his parents fell asleep, he managed to sneak on board a cargo ship just before it left port.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Adventurous youth{{br}}(Adventurer)&lt;br /&gt;
| [PAWN_nameDef] explored all around [PAWN_possessive] family's large estate, uncovering little natural wonders hidden in nearby catacombs, rivers, and caves.&lt;br /&gt;
&lt;br /&gt;
During his teenage years, [PAWN_nameDef] made numerous enemies&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Amateur astronomer{{br}}(Astronomer)&lt;br /&gt;
| [PAWN_nameDef] was fascinated with astronomy. [PAWN_pronoun] would spend hours gazing at planets and nebulae through his telescope.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] is credited with discovering a small comet that would, years later, strike a nearby moon and disrupt the mining operations there.&lt;br /&gt;
| Intellectual: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Amateur botanist{{br}}(Botanist)&lt;br /&gt;
| Spending many summers crawling through dirt, Christian found he had quite the green thumb. Instead of learning to cook the food he grew, he just grew more and more.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Amateur engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] grew up in a family with a military and engineering background. [PAWN_pronoun] wanted to join the army but his father didn't like the idea, so [PAWN_possessive] interest turned to great flying machines and works of engineering. [PAWN_pronoun] secretly hoped that this would one day lead him to a life of galactic exploration.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|1}}&lt;br /&gt;
| Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Angry student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] trained towards [PAWN_possessive] dream of working for his hometown's local council.&lt;br /&gt;
&lt;br /&gt;
For reasons he never quite understood, [PAWN_pronoun] was bullied relentlessly by his classmates. [PAWN_pronoun] chose to repress his rage.&lt;br /&gt;
| Intellectual: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Animal caretaker{{br}}(Caretaker)&lt;br /&gt;
| Born on a medieval farm, [PAWN_nameDef] was tasked with caring for domestic animals. [PAWN_pronoun] grew to love them.&lt;br /&gt;
&lt;br /&gt;
With time, [PAWN_pronoun] learned to tame wild animals. [PAWN_pronoun] dreamed of one day meeting a thrumbo and taming it.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Animal lab tech{{br}}(Lab tech)&lt;br /&gt;
| [PAWN_nameDef] worked as a technician in a lab studying animals.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] spent [PAWN_possessive] days taking care of the animals and cleaning up after them. [PAWN_pronoun] dreamed of having [PAWN_possessive] own lab one day.&lt;br /&gt;
| Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|3}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Antisocial child{{br}}(Antisocial)&lt;br /&gt;
| [PAWN_nameDef] lacked typical social skills, and avoided social interaction.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] gained satisfaction only from steady work. [PAWN_pronoun] especially disliked speaking with overly creative or outgoing individuals.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Apocalypse child {{br}}(Apocalypse)&lt;br /&gt;
| [PAWN_nameDef] spent his childhood on a post-apocalyptic world. He fought for survival from a young age, on a planet where trust did not exist.&lt;br /&gt;
&lt;br /&gt;
He told everyone that he had no luck.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Apocalypse survivor{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef] was born during a time of unrest on [PAWN_possessive] homeworld, as climate change threatened mass starvation and flooding. As [PAWN_pronoun] grew up the situation worsened - billions died and peaceful states descended into anarchy. [PAWN_nameDef] and [PAWN_possessive] parents did whatever they had to to survive.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Apprentice oracle{{br}}(Oracle)&lt;br /&gt;
| [PAWN_nameDef] was chosen at an early age by the village elders to keep the sacred rituals of the Oracle.&lt;br /&gt;
&lt;br /&gt;
An irrepressibly curious child, [PAWN_nameDef] caused a religious crisis for [PAWN_possessive] tribe when [PAWN_pronoun] accidentally flipped a switch to open the &amp;quot;tombs&amp;quot; of the Gods - cryptosleep caskets inhabited by some very confused ancestors.  &lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Apprentice smith{{br}}(Apprentice)&lt;br /&gt;
| [PAWN_nameDef] grew up helping in his father's smithy.&lt;br /&gt;
&lt;br /&gt;
They were some of the last smiths on the planet that to use traditional smithing methods. They even collect some materials themselves.&lt;br /&gt;
&lt;br /&gt;
Sometimes, after work, [PAWN_nameDef] would practice using the swords [PAWN_pronoun] forged.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artful dodger{{br}}(Dodger)&lt;br /&gt;
| Robin grew up on one of the urbworlds and had to fend for himself all his life. He never trusted anyone, relying on his persuasiveness and cunning to survive.&lt;br /&gt;
&lt;br /&gt;
He soon became skilled with firearms and knives as well as words.&lt;br /&gt;
| Shooting: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}Crafting{{br}}Cooking{{br}}Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artisan farmer{{br}}(Farmer)&lt;br /&gt;
| [PAWN_nameDef] grew up on a [PAWN_possessive] family's glitterworld farm. They were one of the last farms on the planet that preferred traditional farming methods to glitterworld technology.&lt;br /&gt;
| Plants: {{+|7}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artistic weirdo{{br}}(Weirdo)&lt;br /&gt;
| [PAWN_nameDef] grew up in a house near a bustling midworld metropolis.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was talented at art and creative work, but often acted strangely, and thus had few friends.&lt;br /&gt;
| Cooking: {{+|1}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aspergers rebel{{br}}(Rebel)&lt;br /&gt;
| [PAWN_nameDef] grew up as a rebel on an formerly-advanced rimworld devastated by war.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] Aspergers syndrome meant he struggled with social situations and was incapable of caring, but [PAWN_pronoun] learned hard skills like research and shooting very quickly.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&lt;br /&gt;
| Caring{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aspiring engineer{{br}}(Tinkerer)&lt;br /&gt;
| [PAWN_nameDef] had a fascination with gadgets and gizmos. [PAWN_pronoun] took apart and put together almost anything [PAWN_pronoun] could find.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] got used to repairing toys brought to [PAWN_objective] by other children, and even fixed a few devices from [PAWN_possessive] elders.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aspiring physicist{{br}}(Student)&lt;br /&gt;
| The daughter of an engineer and doctor, [PAWN_nameDef]'s early life was intellectually rich. After visiting a physics lab, she decided she wanted to be a quantum physicist.&lt;br /&gt;
&lt;br /&gt;
Bitten by a camel, kicked off a horse, and chased by dogs, [PAWN_nameDef] developed a fear of animals.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}Animals{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aspiring pop idol{{br}}(Pop idol)&lt;br /&gt;
| Min was being trained in song and dance to become the next big pop idol. She grew up being taken care of by company handlers.&lt;br /&gt;
&lt;br /&gt;
She never knew manual labor, but learned a lot about music and social etiquette.&lt;br /&gt;
| Shooting: {{--|4}}&amp;lt;/br&amp;gt;Melee: {{--|4}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&lt;br /&gt;
| ManualDumb{{br}}Cleaning{{br}}Hauling{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Athlete{{br}}(Athlete)&lt;br /&gt;
| [PAWN_nameDef] was professional athlete at early age. Thanks to her skills, she was able to leave her homeworld and enroll in a glitterworld university of science and technology.&lt;br /&gt;
&lt;br /&gt;
Because of her demanding schedule and introverted nature, she became socially inept.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Awkward nerd{{br}}(Nerd)&lt;br /&gt;
| Always fascinated by machines, Dave spent his time studying robotics and holography. He preferred the company of his scientific creations to that of other people.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blackjack player{{br}}(Gambler)&lt;br /&gt;
| The only useful skill [PAWN_nameDef] learned from his tough military school was card counting. He amassed many enemies by cheating at casinos, becoming ever more edgy and violent as the threat of retaliation grew.&lt;br /&gt;
&lt;br /&gt;
When he was finally caught, they burned half his skin off. He'll never be able to face fire or violence again.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|4}}&lt;br /&gt;
| Violent{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blacksmith's son{{br}}(Blacksmith)&lt;br /&gt;
| [PAWN_nameDef]'s father owned the blacksmith shop in an run-down old city district. [PAWN_nameDef] would help his father whenever he could.&lt;br /&gt;
&lt;br /&gt;
Later, [PAWN_possessive] father took him as a blacksmith's apprentice and raised him as a man. [PAWN_nameDef] also to on shooting as a hobby.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blessed child{{br}}(Blessed)&lt;br /&gt;
| [PAWN_nameDef] was born under auspicious circumstances to a midworld spiritual group and held in reverence throughout [PAWN_possessive] childhood.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned to take care of the poor and give succor to the faithful from an early age.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bodyguard trainee{{br}}(Bodyguard)&lt;br /&gt;
| [PAWN_nameDef] was born into a famously skilled family of bodyguards. [PAWN_possessive] mothers Elena and Victoria forced [PAWN_objective] into many dangerous situations, training [PAWN_objective] to put [PAWN_possessive] client's well-being over [PAWN_possessive] own.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] was taught about many herbs and natural poisons to help [PAWN_objective] prevent clients from being poisoned.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bone collector{{br}}(Pupil)&lt;br /&gt;
| Born to a family of fortune hunters, [PAWN_nameDef] always had a passion for ancient history.&lt;br /&gt;
&lt;br /&gt;
Though never a tough or social boy, [PAWN_pronoun] loved to dig through history books as well as dirt piles.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{--|3}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bookworm{{br}}(Bookworm)&lt;br /&gt;
| [PAWN_nameDef] spent his youth in the library, reading every book he could about the technical marvels of space travel, the engineering ingenuity of the space-faring pioneers, and the horrible yet fascinating tales of the mechanoid races. He vowed that one day, he would see these things for himself.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Boy scout{{br}}(Scout)&lt;br /&gt;
| [PAWN_nameDef] was in a boy scout troop on a midworld.&lt;br /&gt;
&lt;br /&gt;
He learned many survival skills including how to thrive in the outdoors and how to tend to basic wounds.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Boy soldier{{br}}(Soldier)&lt;br /&gt;
| War may never change - but the cast of characters does.&lt;br /&gt;
&lt;br /&gt;
Born on a violent urbworld, [PAWN_nameDef] was trained from a young age to fight the wars of others, and became rather good at it. &lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Brothel gofer{{br}}(Gofer)&lt;br /&gt;
| Born on a steam-powered midworld wracked by a century of economic crises, [PAWN_nameDef] went to work at a young age. Scrounging, shoe-polishing, sewing - he did it all. But [PAWN_pronoun] was most known as a brothel gofer, delivering all manner of aphrodisiacs and chemicals to the girls' rooms.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Brutal thief{{br}}(Thief)&lt;br /&gt;
| Growing up in a gang, [PAWN_nameDef] learned the brutality of the streets.&lt;br /&gt;
&lt;br /&gt;
Knowing that showing weakness could be fatal, he closed himself of to others.&lt;br /&gt;
| Plants: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bunker kid{{br}}(Bunker kid)&lt;br /&gt;
| Ricardo grew up in an underground shelter, waiting for radioactive fallout to subside. His rich family had gained access to a luxury bunker city, while billions died on the surface.&lt;br /&gt;
&lt;br /&gt;
Determined to one day seek revenge against the hated enemy, Ricardo spent most of his time practicing shooting in his private training facility.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Artistic{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cadet{{br}}(Cadet)&lt;br /&gt;
| Born on the planet New China, [PAWN_nameDef]'s father was a police chief and kept extremely strict watch over his son.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] had to do military-style drill exercises every day and keep his room spotlessly clean, always ready for inspection. [PAWN_pronoun] came to abhor violence.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caravan child{{br}}(Child)&lt;br /&gt;
| [PAWN_nameDef] was born on a urbworld merchant ship to an entrepreneurial mother and an absent father. Born male, she disliked boy stuff, and got into her mother’s things all the time.&lt;br /&gt;
&lt;br /&gt;
Eventually, she traveled with her mother to a glitterworld and spent her savings on a body she was happy with.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caravan traveler{{br}}(Traveler)&lt;br /&gt;
| Born to a family of traveling merchants, [PAWN_nameDef] was mentored by [PAWN_possessive] father in the ways of being a trader. [PAWN_pronoun] was often tasked with caring for the pack animals. Due to [PAWN_possessive] nomadic lifestyle, [PAWN_pronoun] hunted and bartered for [PAWN_possessive] food.&lt;br /&gt;
| Plants: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cat herder{{br}}(Herder)&lt;br /&gt;
| [PAWN_nameDef] helped out in his father's cat breeding business, socializing, herding, and feeding hundreds of cats.&lt;br /&gt;
&lt;br /&gt;
When he refused to clean up after the cats, [PAWN_pronoun] was transferred to the breeding science division.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&lt;br /&gt;
| Cleaning{{br}}Hauling{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cave child{{br}}(Cave kid)&lt;br /&gt;
| [PAWN_nameDef] grew up in a cave on an tundra planet, and was adopted by a traveling group of entertainers known only as the Wizards. Once a starfaring crew, the Wizards told [PAWN_objective] wondrous stories about the universe.&lt;br /&gt;
&lt;br /&gt;
One day, the Wizards did not return from scavenging. After years of waiting, [PAWN_nameDef] set off into space to find them.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caveworld tender{{br}}(Cave kid)&lt;br /&gt;
| [PAWN_nameDef] grew up in cave complex deep beneath the surface of an inhospitable world. [PAWN_pronoun] worked with the other children tending the tribe’s fungus crops.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caveworld tunneler{{br}}(Tunneler)&lt;br /&gt;
| [PAWN_nameDef] worked as a digger in the massive underground cave complex.{{br}}[PAWN_pronoun] knows rock so well that [PAWN_pronoun] can almost navigate caves by smell.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Mining: {{+|6}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&lt;br /&gt;
| Intellectual{{br}}Crafting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Chess master{{br}}(Chesshead)&lt;br /&gt;
| [PAWN_nameDef] loved to play chess. [PAWN_pronoun] even earned the nickname Bishop for some of [PAWN_possessive] craftier moves. &lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] never got into trouble - mostly because he was good at not getting caught. &lt;br /&gt;
&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child of drifters{{br}}(Drifter)&lt;br /&gt;
| Ever since [PAWN_pronoun] was very small, [PAWN_nameDef] had never known a home beyond [PAWN_possessive] parent's ship. They were a family of nomads whose meandering provided a constant change of scenery. [PAWN_possessive] life was often perilous but never dull, and [PAWN_pronoun] inherited [PAWN_possessive] parents' wanderlust at a young age.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|6}}&lt;br /&gt;
| Firefighting{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child of glass{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef] was raised underground on a &amp;quot;marble&amp;quot; planet - a wasteland of radioactive asphalt and toxic fallout.&lt;br /&gt;
&lt;br /&gt;
To survive on a planet devoid of life, [PAWN_pronoun] had to learn how to farm underground and how to fight without wasting bullets.&lt;br /&gt;
| Plants: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| Social{{br}}Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child prodigy{{br}}(Prodigy)&lt;br /&gt;
| After graduating college at age twelve, Jered devoted his life to becoming immortal.  However his research crossed the line when he tried to modify his body using gene therapy and mechanical augmentation.  He was arrested and condemned to a prison planet.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child researcher{{br}}(Researcher)&lt;br /&gt;
| A frightfully intelligent child, [PAWN_nameDef] was kidnapped by a glitterworld corporation and forced to research technologies for weaponizing anti-matter.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] vowed never to invent anything again.&lt;br /&gt;
| Intellectual: {{+|7}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&lt;br /&gt;
| Crafting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child scientist{{br}}(Scientist)&lt;br /&gt;
| After graduating college very young, [PAWN_nameDef] devoted [PAWN_possessive] life to becoming immortal. He was arrested for trying to genetically modify himself.&lt;br /&gt;
&lt;br /&gt;
The authorities released [PAWN_objective] on the condition that he would work in a government lab on spacecraft technology. He was permitted to continue his personal research in his free time.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child slave{{br}}(Slave)&lt;br /&gt;
| Graham was born to a poor family on a rimworld. His father sold him into slavery at a young age and he was traded many times. A tycoon bought him as part of a child labor force and sent down into mines to look after machines and to work alongside them.&lt;br /&gt;
&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child spy {{br}}(Spy )&lt;br /&gt;
| Children are often presumed innocent, and so make ideal spies. [PAWN_nameDef] was trained in the arts of infiltration and information-gathering when [PAWN_pronoun] was very young.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] spent years behind enemy lines, gathering intel in a brutal planetary war. During this time, [PAWN_pronoun] had limited opportunity for education. &lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child spy{{br}}(Spy)&lt;br /&gt;
| Children are often presumed innocent, and can be ideal as spies. [PAWN_nameDef] was trained in the art of infiltration and information-gathering when [PAWN_pronoun] was just nine years old.{{br}}[PAWN_possessive] years behind enemy lines and the war-torn nature of [PAWN_possessive] homeworld meant [PAWN_pronoun] had limited opportunity for education.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Intellectual: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child star{{br}}(Star)&lt;br /&gt;
| [PAWN_nameDef] was well-known throughout [PAWN_possessive] homeworld as a child actor in films and TV shows. [PAWN_possessive] fame put [PAWN_objective] in contact with many different kinds of people, but also tended to get in the way of [PAWN_possessive] education.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child-knave{{br}}(Knave)&lt;br /&gt;
| [PAWN_nameDef] was a child-knave of King Loteric. [PAWN_pronoun] enjoyed the training with wooden sticks and engaging others in close combat. [PAWN_pronoun] adapted quickly to the heat of battle and was good at spreading fire.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] served his lord well, until the king died in an unfortunate accident.&lt;br /&gt;
| Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Circus performer{{br}}(Performer)&lt;br /&gt;
| Growing up in the circus, [PAWN_nameDef] learned a lot of interesting things. More interesting then the balls he juggled were the pockets he picked between shows.&lt;br /&gt;
&lt;br /&gt;
A mistake with some firesticks made him develop a deathly fear of fire.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Class clown{{br}}(Clowny kid)&lt;br /&gt;
| In the ultra-competitive environs of his glitterworld school, [PAWN_nameDef] always offered to play the class clown to diffuse tension.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] developed a sense of social desperation from this, as well as an appreciation for the artistic side of comedy.&lt;br /&gt;
| Social: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Clone-farmed{{br}}(Disposable)&lt;br /&gt;
| Clone children are seeded into organic-rich wombvats and rapidly grown in a simmed universe. They're harvested later, sometimes for food, sometimes for organs, sometimes for workers - but they're always called 'Disposable'. &lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Coliseum cleaner{{br}}(Cleaner)&lt;br /&gt;
| During the 'Inner Destrian War' fallout, [PAWN_possessive] parents were captured and [PAWN_pronoun] was born into a life of slavery. Forced to clean coliseums after bloody battles for money. Watching, waiting, and learning. Coliseums were the only thing [PAWN_pronoun] ever knew. One night while cleaning the coliseum, [PAWN_possessive] family was murdered.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Caring{{br}}Firefighting{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Colony kid{{br}}(Colony kid)&lt;br /&gt;
| [PAWN_nameDef] was born the child of two doctors in a small colony. Because of [PAWN_possessive] parents, [PAWN_pronoun] was always interested in science and medicine.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] never really got along with other children, and as a result became withdrawn and unsociable.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Coma child{{br}}(Coma child)&lt;br /&gt;
| A childhood accident put [PAWN_nameDef] into a coma. [PAWN_pronoun] didn’t wake up until [PAWN_pronoun] was in [PAWN_possessive] late teens. [PAWN_possessive] body never recovered from the years of inactivity, but people tend to take pity on [PAWN_objective] when they hear [PAWN_possessive] story.&lt;br /&gt;
| Social: {{+|4}}&amp;lt;/br&amp;gt;Construction: {{--|2}}&amp;lt;/br&amp;gt;Mining: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Commoner heir{{br}}(Heir)&lt;br /&gt;
| [PAWN_nameDef] was a street urchin on a feudal steamworld.&lt;br /&gt;
&lt;br /&gt;
After [PAWN_pronoun] tried to steal food from the palace, the emperor, desperate to secure an heir, took [PAWN_objective] in and groomed [PAWN_objective] to be next in line for the throne.&lt;br /&gt;
| Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Computer geek{{br}}(Geek)&lt;br /&gt;
| [PAWN_nameDef] spent most of [PAWN_possessive] childhood on [PAWN_possessive] computer, typing away, never knowing when to get up and eat.&lt;br /&gt;
&lt;br /&gt;
He had a very narrow interest: hacking cryptobiotic safety protocols.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Animals: {{+|2}}&lt;br /&gt;
| Social{{br}}Cooking{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Construction grunt{{br}}(Builder)&lt;br /&gt;
| Growing up in his father's lab, Jackson was given the life of an intellectual elite. He got everything he desired, and price was never an object.&lt;br /&gt;
&lt;br /&gt;
However Jackson did not partake in the luxury given to him. Instead, he pursued more physical, and - in his father's eyes - lower-class jobs.  &lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Convent child{{br}}(Illicit)&lt;br /&gt;
| The child of an illicit affair, [PAWN_nameDef] was bought up by nuns in a medieval convent. [PAWN_pronoun] learned the value of hard work and submission, but was taught that technology is heretical.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&lt;br /&gt;
| Intellectual{{br}}Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Core dilettante{{br}}(Dilettante)&lt;br /&gt;
| Candice spent her formative years on a glitterworld in the core region, where she and her friends pursued lives of idle pleasure.&lt;br /&gt;
&lt;br /&gt;
As she grew up, she began to find the life of ease unfulfilling. She decided to look for a more challenging path.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Core world student{{br}}(Student)&lt;br /&gt;
| Born a male named Alex, Alyssa didn't fit in well with the other boys. When very young, she preferred creative pursuits, such as crafting jewelry, over sports. She felt she had the wrong body. Luckily, her family and friends supported her sex reassignment; as a teen, she underwent surgery to become a female.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{--|1}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Cooking{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corp student{{br}}(Student)&lt;br /&gt;
| De Dion was bred to become an executive officer for the large space trading corporation that owned his home planet. His family had been working for that corporation for seven generations.&lt;br /&gt;
&lt;br /&gt;
At age six, [PAWN_pronoun] started to study at the corporate academy, where he learned to become a loyal follower and a ruthless executive.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corp-bred student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] was bred to become an executive for the space exploration corporation that owned his home planet. [PAWN_possessive] family had been working for that corporation for four generations.&lt;br /&gt;
&lt;br /&gt;
At age five, [PAWN_pronoun] enrolled at the corporate academy where he learned loyalty and ruthlessness. [PAWN_nameDef] excelled in finding diplomatic solutions where others would need violence.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|7}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Violent{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corporate slave{{br}}(Soldier)&lt;br /&gt;
| [PAWN_nameDef] grew up in a colony owned by a large glitterworld corporation. All children had virtual reality devices attached by force, and were raised in a brutal digital world.&lt;br /&gt;
&lt;br /&gt;
Constantly forced to fight others for the entertainment of the wealthy, gunplay and tactics became the center of [PAWN_nameDef]'s universe.&lt;br /&gt;
| Plants: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Animals: {{--|2}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Country child{{br}}(Hick kid)&lt;br /&gt;
| [PAWN_nameDef] was raised up to fear God and love [PAWN_possessive] country. [PAWN_pronoun] was a genuine backwoods kid. [PAWN_pronoun] always worked hard to earn respect rather than demanding it.&lt;br /&gt;
| Cooking: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cow farmer{{br}}(Farmer)&lt;br /&gt;
| [PAWN_nameDef] grew up on a rim world, under the tyranny of [PAWN_possessive] father, who forced [PAWN_objective] to work every day on the farm. [PAWN_pronoun] dreamed of escaping [PAWN_possessive] father and exploring the universe.&lt;br /&gt;
&lt;br /&gt;
One day, when the trade ship was overhead, [PAWN_pronoun] stowed away among the goods in the launch pods, and escaped into space.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Animals: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Crime boss' child{{br}}(Crime kid)&lt;br /&gt;
| [PAWN_nameDef] was adopted child of a notorious crime boss. [PAWN_pronoun] was taught all facets of the family business, from smuggling to inventive ways of killing.&lt;br /&gt;
&lt;br /&gt;
When the family was attacked, [PAWN_possessive] father ordered [PAWN_objective] to hide in a secret longsleep crypt.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cult child{{br}}(Cult kid)&lt;br /&gt;
| [PAWN_nameDef] was born into a powerful cult which shunned advanced technology and believed that all illness could be cured by cleansing the soul through sacred art.{{br}}After [PAWN_possessive] first glimpse of the outside world, [PAWN_pronoun] decided to run away.&lt;br /&gt;
| Medicine: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|5}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Data decoder{{br}}(Decoder)&lt;br /&gt;
| Born on a glitterworld, [PAWN_nameDef] was very interested  in the process of documenting information, and quickly became senior glitterpedia recorder.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was effective at self-study, but [PAWN_pronoun] was lacked in social experiences.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Dedicated student{{br}}(Student)&lt;br /&gt;
| The child of a wealthy manufacturer, [PAWN_nameDef] was pampered from an early age. [PAWN_pronoun] developed an affinity for reading and art, and a distaste for menial chores.&lt;br /&gt;
&lt;br /&gt;
A revolution brought his father's businesses under state control. Penniless, [PAWN_nameDef] worked hard to complete [PAWN_possessive] education.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Animals{{br}}Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Desert rat{{br}}(Desert rat)&lt;br /&gt;
| [PAWN_nameDef] was born to a tribe of desert ascetics who wandered the endless wastes.&lt;br /&gt;
&lt;br /&gt;
They sought a mythical substance they believed could liberate them from ignorance through psychedelic revelation - and usher in a new period of interstellar peace.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Diplomat's child{{br}}(Diplomat)&lt;br /&gt;
| [PAWN_nameDef] was born in diplomatic family.&lt;br /&gt;
&lt;br /&gt;
Travelling often, [PAWN_pronoun] was home-schooled and saw the world mostly through a computer.&lt;br /&gt;
| Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Artistic: {{+|1}}&lt;br /&gt;
| Violent{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Disaster survivor{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef]'s planet collided with a small moon. Everything he knew as home was destroyed, and his entire family died. [PAWN_pronoun] was left in the ruins to fend for himself.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Disaster survivor{{br}}(Survivor)&lt;br /&gt;
| Steven was uprooted when marauders attacked his family farm, destroying machinery and killing farmhands and beasts alike.&lt;br /&gt;
&lt;br /&gt;
After the death of all he knew, he was left in the ruins to fend for himself.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Discarded youth{{br}}(Discarded)&lt;br /&gt;
| [PAWN_nameDef] grew up isolated on a trash planet. A dumping ground for surrounding glitterworlds, it was a harsh home. As a baby, [PAWN_pronoun] sucked on the tap of a discarded nutrient paste dispenser for comfort.&lt;br /&gt;
&lt;br /&gt;
In these desperate circumstances, against all odds, [PAWN_pronoun] survived - and thrived.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Artistic{{br}}Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Disciplined farmer{{br}}(Farmer)&lt;br /&gt;
| Drew was the younger of two sons on the family farm, a frontier plot that struggled to turn a profit. Drew's father was a strict disciplinarian, constantly at his sons to work harder and keep quiet. Drew burnt his hand making breakfast once and swore to cook only when his life was in danger.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|1}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&lt;br /&gt;
| Social{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Displaced noble{{br}}(Noble)&lt;br /&gt;
| Born on an urbworld to the ruler of three megacities, [PAWN_nameDef]’s prospects looked good - until a violent insurrection overthrew [PAWN_possessive] family. Exile introduced [PAWN_nameDef] to hard work and combat, but some high-born squeamishness remains.&lt;br /&gt;
| Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Dreaded baby{{br}}(Baby dude)&lt;br /&gt;
| [PAWN_nameDef] was found as a baby in a crashed spacecraft. According to the ship's data records, [PAWN_pronoun] invented the nuclear device that powered his ship. Apparently, he also invented the sky and the hamburger, and is said to have fathered a race of tasty golden kittens.&lt;br /&gt;
| Shooting: {{+|1}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Dreamer{{br}}(Dreamer)&lt;br /&gt;
| [PAWN_nameDef] was an expressive child. [PAWN_pronoun] sang often, and made friends very easily, be they young or old, male or female.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] hated fighting, but when made angry, [PAWN_pronoun] could be dangerous. [PAWN_possessive] temper was quick.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Drudge{{br}}(Drudge)&lt;br /&gt;
| [PAWN_nameDef] was never sure what [PAWN_pronoun] wanted to do with [PAWN_possessive] life. [PAWN_pronoun] spent most of [PAWN_possessive] time doing low-wage jobs and wondering what [PAWN_possessive] future would be like.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] entertained himself with space sims and survival games, dreaming of one day being somewhere more interesting.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Drug mule{{br}}(Mule)&lt;br /&gt;
| Raised in an orphanage, [PAWN_nameDef] turned towards the gang life at age ten.&lt;br /&gt;
&lt;br /&gt;
He was exploited by the local gang as a drug mule to traffic &amp;quot;substance F&amp;quot; across rival gang territory. He took a bullet or two.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| Intellectual{{br}}Caring{{br}}Social{{br}}Artistic{{br}}Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Dusty farm hand{{br}}(Farm hand)&lt;br /&gt;
| From the time [PAWN_nameDef] could walk, [PAWN_pronoun] helped take care of the animals and crops that [PAWN_possessive] people tended in their arid homeland.&lt;br /&gt;
&lt;br /&gt;
The work toughened [PAWN_objective], but left little time for intellectual activities.&lt;br /&gt;
 &lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&amp;lt;/br&amp;gt;Animals: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Earth colonist{{br}}(Colonist)&lt;br /&gt;
| [PAWN_nameDef] was born on Earth. As a child, [PAWN_pronoun] was launched into space as part of an interstellar colonization program.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Empath{{br}}(Empath)&lt;br /&gt;
| [PAWN_nameDef] was an incredibly empathetic child, so much that [PAWN_pronoun] was totally overwhelmed by simple social interactions. Once, [PAWN_pronoun] stepped on a bug and felt so guilty [PAWN_pronoun] cried for an hour.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] did try to use a gun one time, but it went very poorly, as the loud noise made [PAWN_objective] flinch uncontrollably.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Violent{{br}}Social{{br}}Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Energetic pop idol{{br}}(Pop idol)&lt;br /&gt;
| Priscilla grew up on a glitterworld, training in rapier arts and singing. She spent several years as an energetic teen pop idol.&lt;br /&gt;
&lt;br /&gt;
However, she decided that the music and modeling industries were not paying her enough attention, so she left.&lt;br /&gt;
| Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Exiled prince{{br}}(Prince)&lt;br /&gt;
| A member of a royal family, [PAWN_nameDef] was exiled for shaming [PAWN_possessive] family.&lt;br /&gt;
&lt;br /&gt;
Living in a foreign land, mostly alone, [PAWN_pronoun] spent most of [PAWN_possessive] time making huts and houses to live in. [PAWN_pronoun] found little time in an average day for enjoyment, and lost all his friends and family.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|1}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Factory worker{{br}}(Worker)&lt;br /&gt;
| Felix grew up in a large factory city on an industrial world.&lt;br /&gt;
&lt;br /&gt;
Since poverty was rampant and food scarce, he worked for whatever wages he could get. This wasn't an easy life, but Felix never shied away from a hard day's work.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Fallen prodigy{{br}}(Prodigy)&lt;br /&gt;
| [PAWN_nameDef] was born on a glitterworld falling into chaos. [PAWN_possessive] father was killed in action.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] struggled for a scholarship at Utmaior Academy and had to prove his right to be there. A child genius, [PAWN_pronoun] was bullied as a charity case and couldn't make friends with the other kids.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farm boy{{br}}(Farm boy)&lt;br /&gt;
| John worked on his family's farm, looking after the animals and treating them when they were injured. Preferring hands-on tasks and the outdoors, he avoided softer jobs that might have kept him cooped up inside.&lt;br /&gt;
&lt;br /&gt;
He enjoyed this lonely work, and tended to stay out of people's way and do his own thing.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farm hand{{br}}(Farm hand)&lt;br /&gt;
| [PAWN_nameDef] was born on a farm on a smaller colony world.&lt;br /&gt;
&lt;br /&gt;
Everything was taken care of by the few members of the farm, including [PAWN_nameDef]. This helped [PAWN_objective] build independence, spirit, and a well-rounded character.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farm kid{{br}}(Farm kid)&lt;br /&gt;
| [PAWN_nameDef] grew up on his family's beef farm. He enjoyed working the fields and taking care of the animals.&lt;br /&gt;
| Plants: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farm mechanic{{br}}(Mechanic)&lt;br /&gt;
| Growing up on a farming planet, [PAWN_nameDef] spent [PAWN_possessive] time learning about the automated machinery that grew and harvested the multitude of crops.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Plants: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farmer boy{{br}}(Farmer)&lt;br /&gt;
| Benjamin's parents died in a fire when he was seven. He grew up on his uncle's farm, plowing fields and doing manual labor.&lt;br /&gt;
&lt;br /&gt;
He could not bear answering questions about his parents, so he replaced social contact with hard work.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Plants: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}Social{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farmer's daughter{{br}}(Farm girl)&lt;br /&gt;
| [PAWN_nameDef] grew up on [PAWN_possessive] parents' vineyard. [PAWN_pronoun] spent [PAWN_possessive] youth exploring the land and making friends with various bugs and insects.&lt;br /&gt;
&lt;br /&gt;
Having heard stories about all the fascinating things out there in the universe, [PAWN_pronoun] always dreamed of venturing out to see it for [PAWN_objective]self.&lt;br /&gt;
| Social: {{--|1}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farmer's son{{br}}(Farmer)&lt;br /&gt;
| Ade spent much of his childhood learning biome farming. In his biome they kept animals to investigate which would cope best in the alien environment.&lt;br /&gt;
&lt;br /&gt;
Due to this, the travel restrictions and oxygen rationing system, he rarely got to meet anyone from outside his family.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{+|1}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Feral child{{br}}(Feral)&lt;br /&gt;
| Abandoned on an animal planet as a small child with nought but a blanket with a name embroidered on it, Felix made himself one with the wilderness.&lt;br /&gt;
&lt;br /&gt;
When he was 13, he encountered a team of mineral surveyors, who &amp;quot;offered&amp;quot; him passage off of the planet.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Intellectual{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Feral child{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef] and his family lived a hard but prosperous lives along with their fellow colonists on a distant rimworld.&lt;br /&gt;
&lt;br /&gt;
One day a group of mechanoids attacked, killing everyone aside from Robert. He then lived alone in the desert until a group of raiders found him.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Feudal farm boy{{br}}(Slave)&lt;br /&gt;
| [PAWN_nameDef] was the son of a medieval farmer, and was expected to follow in his footsteps. He was brought up as a kind, well trained farm boy.&lt;br /&gt;
&lt;br /&gt;
He lived in an unusual feudal kingdom which co-existed with a midworld society which was itself well-known for genetic manipulation.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Feudal lordling{{br}}(Lordling)&lt;br /&gt;
| [PAWN_nameDef] grew up on a feudal world that was part of a multi-planet empire. As the son of a high lord, [PAWN_pronoun] enjoyed many privileges.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned to maneuver in the both the political landscape and in close quarters combat.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Fire-scarred child{{br}}(Scarred)&lt;br /&gt;
| Duster was an active child who lived an uneventful childhood until he fell into a fire and suffered horrific burns to his hands and arms. Although the scars have faded, he can't bear to be in close proximity to fire.&lt;br /&gt;
&lt;br /&gt;
| Mining: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&lt;br /&gt;
| Cooking{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Forest child{{br}}(Forest kid)&lt;br /&gt;
| When [PAWN_pronoun] was a baby, [PAWN_nameDef]'s mother went insane and left [PAWN_objective] in the woods.&lt;br /&gt;
&lt;br /&gt;
Raised by wild people, [PAWN_nameDef] was known for both loving and killing animals.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Foundry apprentice{{br}}(Foundryman)&lt;br /&gt;
| [PAWN_nameDef] grew up as an apprentice in the foundries of an industrial world. This experience gave [PAWN_objective] metalworking skills and strong muscles, but stunted [PAWN_possessive] artistic development.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Freethinker{{br}}(Thinker)&lt;br /&gt;
| [PAWN_nameDef] grew up on a toxic world with tyrannical leaders. While the rest of the population was high on the planet's narcotic exports, [PAWN_pronoun] joined a rebel militia.&lt;br /&gt;
&lt;br /&gt;
After a risky operation against the regime failed, [PAWN_pronoun] fled the planet, staying alive by threatening mutual annihilation with a planetcracker antimatter bomb.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Frightened child{{br}}(Scared)&lt;br /&gt;
| [PAWN_nameDef] grew up with a laundry list of phobias and neuroses. [PAWN_pronoun] feared, among other things, doctors and foodborne pathogens.{{br}}As a result, [PAWN_pronoun] learned to cook and care for [PAWN_objective]self, but many of [PAWN_possessive] fears dog [PAWN_objective] in adulthood.&lt;br /&gt;
| Medicine: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Frontier marshal{{br}}(Marshal)&lt;br /&gt;
| Henry inherited a sense of duty from his father, and began a law enforcement career on his frontier homeworld.&lt;br /&gt;
&lt;br /&gt;
He tried to uphold the law with honor, but the corruption and greed of local government officials often discouraged him.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Galactic page{{br}}(Page)&lt;br /&gt;
| [PAWN_nameDef] served the high admiral of a space fleet. [PAWN_pronoun] learned the ways of court, including etiquette and speechcraft.&lt;br /&gt;
&lt;br /&gt;
In his feudal society, it was considered a great honor to serve a man of such prestige.&lt;br /&gt;
| Social: {{+|6}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}ManualSkilled{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Game fanatic{{br}}(Gamer)&lt;br /&gt;
| [PAWN_nameDef] was a fanatical gamer who learned to survive in virtual reality games.&lt;br /&gt;
&lt;br /&gt;
Once, while attempting to prove [PAWN_possessive] skills in the real world, [PAWN_pronoun] was abducted by a criminal scientist and experimented on. [PAWN_pronoun] escaped, but the experience stayed with him.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gang member{{br}}(Gang kid)&lt;br /&gt;
| [PAWN_nameDef] grew up without parents. [PAWN_possessive] whole life was spent alone, fighting for survival on the streets.&lt;br /&gt;
&lt;br /&gt;
No matter how hard it became to survive, he never gave up.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gang member{{br}}(Ganger)&lt;br /&gt;
| [PAWN_nameDef] grew up homeless on an urbworld. [PAWN_pronoun] was forced to fight and struggle for everything, making [PAWN_objective] hard and ruthless long before adulthood.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] would have stayed in those streets, had [PAWN_pronoun] not been injured in a shootout and had his body confiscated for use by one of the worldwide city's ruling corporations. &lt;br /&gt;
| Plants: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&lt;br /&gt;
| Intellectual{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Glitterworld kid{{br}}(Glit kid)&lt;br /&gt;
| The son of a genetically-engineered &amp;quot;perfect mate&amp;quot; on a glitterworld, Chaz was much more shy, withdrawn and nervous than his parents. [PAWN_pronoun] kept mostly to himself, studying science and medicine and taking on gardening as a hobby. &lt;br /&gt;
&lt;br /&gt;
In [PAWN_possessive] teens, [PAWN_pronoun] ran away from home, seeking a quieter life.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Glitterworld nerd{{br}}(Nerd)&lt;br /&gt;
| [PAWN_nameDef] loved technology from the day [PAWN_pronoun] was born. [PAWN_pronoun] had a mechanoid companion which [PAWN_pronoun] tried to modify when [PAWN_pronoun] was 10.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] obsession with technology meant that [PAWN_pronoun] never appreciated arts or culture.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Glitterworld royal{{br}}(Royalty)&lt;br /&gt;
| [PAWN_nameDef] grew up in a glitterworld royal household. She was groomed from a young age to marry into another planet's royal family.&lt;br /&gt;
&lt;br /&gt;
Unfortunately, her crooked teeth made her undesirable to suitors, so she became bitter and resentful.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! G-nome sculptor{{br}}(Sculptor)&lt;br /&gt;
| [PAWN_nameDef] was engineered in a lab as part of the G-nome Project. He was implanted at birth with encyclopedic knowledge of all aspects of xenobiology.&lt;br /&gt;
&lt;br /&gt;
The G-nome scientists nicknamed him Gizmo and occupied him with sculpting. He developed a love of sculpting gnomes and gnome accessories.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gun kid{{br}}(Gun kid)&lt;br /&gt;
| Growing up in a urbworld, [PAWN_nameDef] never had it easy. Every day was a struggle and pollution, hunger, and gangs of older kids.&lt;br /&gt;
&lt;br /&gt;
In the little space he had to himself, he studied his passion - guns, combat tactics, and war history.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gymnast{{br}}(Gymnast)&lt;br /&gt;
| [PAWN_nameDef] was a professional gymnast at an early age. Thanks to her skills, she was able to leave her homeworld and enroll in a glitterworld university.&lt;br /&gt;
&lt;br /&gt;
Because of the lack of career opportunities in gymnastics, she left the university unemployed and carrying an enormous debt.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hacker kid{{br}}(Hacker)&lt;br /&gt;
| Born on a high-tech world, [PAWN_nameDef] learned hack computers at a young age. &lt;br /&gt;
&lt;br /&gt;
Spending many hours tinkering alone made [PAWN_objective] very good with machines, but very bad with humans.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hacker prodigy{{br}}(Hacker)&lt;br /&gt;
| Wedge was raised as the only child of wealthy surgeons. After being pressured into accepting a medical apprenticeship, he snapped. He seized his inheritance and went underground to learn how to exploit computer networks. He quickly became one of the most feared hackers on his home planet.&lt;br /&gt;
| Intellectual: {{+|7}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| ManualDumb{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Headjack addict{{br}}(Headjacker)&lt;br /&gt;
| Plugged in to the computer via head-jack for days at a time, [PAWN_nameDef] found [PAWN_pronoun] preferred the company of computers to that of people or pets.&lt;br /&gt;
| Plants: {{--|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&lt;br /&gt;
| Social{{br}}Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Help desk worker{{br}}(Help desk)&lt;br /&gt;
| Due to [PAWN_possessive] affinity for technology and desire to help others, [PAWN_nameDef] jumped at the chance to take a job at a help desk.&lt;br /&gt;
&lt;br /&gt;
Unfortunately, the job's soul-crushing after-effects lasted longer than [PAWN_possessive] enthusiasm.&lt;br /&gt;
| Intellectual: {{+|3}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hex-cell artist{{br}}(Artist)&lt;br /&gt;
| [PAWN_nameDef] crafted sculptures from spent hex-cells and traded them to a local museum for food.&lt;br /&gt;
&lt;br /&gt;
After [PAWN_possessive] popularity grew, [PAWN_pronoun] was approached by a pirate and abducted. The pirate kept [PAWN_objective] prisoner and forced [PAWN_objective] to create sculptures for sale.&lt;br /&gt;
| Artistic: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! High baroness{{br}}(Noble)&lt;br /&gt;
| [PAWN_nameDef] was born as low-ranking royalty in a large imperial family.&lt;br /&gt;
&lt;br /&gt;
She was placed In charge of running her home planet from an early age, and learned important political and cultural skills in that role.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|7}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hillbilly prodigy{{br}}(Hillbilly)&lt;br /&gt;
| Born on a cold hillbilly planet inhabited mainly by furred xenohumans, Benjamin grew up to the sound of bar fights and shootouts. Though his childhood was spent playing the banjo and working as a mechanic, his abnormal intelligence made him want something more; he entered medical school at a young age.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! History student{{br}}(Student)&lt;br /&gt;
| As a child, [PAWN_nameDef] spent learned many artistic forms including music and novel writing. As [PAWN_pronoun] grew older, [PAWN_pronoun] began to study legends from [PAWN_possessive] home world - legends of the lizard-like beings at the center of [PAWN_possessive] culture's folklore.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hive world child{{br}}(Hiver)&lt;br /&gt;
| [PAWN_nameDef] had an isolated upbringing in an urbworld hive city. His hatred of heights kept him indoors often, and made him an introverted child.&lt;br /&gt;
&lt;br /&gt;
When [PAWN_pronoun] did go out onto the catwalks of the city, [PAWN_pronoun] enjoyed playing war games, becoming proficient with various simulation weapons.&lt;br /&gt;
| Plants: {{+|1}}&amp;lt;/br&amp;gt;Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hunter scavenger{{br}}(Scavenger)&lt;br /&gt;
| Born to a family of raiders in the mudlands of Vinna, [PAWN_nameDef] survived by scavenging food and resources from nearby settlements with [PAWN_possessive] gang. [PAWN_pronoun] was the most ferocious of the bunch.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Ice planet child{{br}}(Ice child)&lt;br /&gt;
| Growing up on the frozen wastes of an ocean moon, [PAWN_nameDef] only had animals and a few hard-bitten sailors as companions.&lt;br /&gt;
&lt;br /&gt;
The lack of social interaction made him develop a interest in engineering - but he never developed any great fondness for humans. &lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&lt;br /&gt;
| Caring{{br}}Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Iceworld survivor{{br}}(Iceborn)&lt;br /&gt;
| [PAWN_nameDef] was born on an iceworld. Survival depended on staying together and building with nothing.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] got used to the cold. [PAWN_pronoun] never got used to dealing with those strange green things called plants.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Idealistic cadet{{br}}(Cadet)&lt;br /&gt;
| Raised in the military traditions of his forefathers, [PAWN_nameDef] was taught from a young age that he would be a great leader and the hero of the Dichter family.&lt;br /&gt;
&lt;br /&gt;
He excelled at his studies and graduated from the academy with honors.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Imperial student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] studied on an imperial midworld where guns were banned and self-defense study was encouraged. The relative safety allowed [PAWN_objective] to focus on [PAWN_possessive] botanical research.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| Crafting{{br}}Firefighting{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Industrial orphan{{br}}(Orphan)&lt;br /&gt;
| [PAWN_nameDef] never knew [PAWN_possessive] parents. [PAWN_possessive] earliest memories were of drudgery in the mines and workhouses of [PAWN_possessive] industrial world.{{br}}Because of this, [PAWN_pronoun] never received a proper education.&lt;br /&gt;
| Crafting: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Indworld urchin{{br}}(Urchin)&lt;br /&gt;
| [PAWN_nameDef] grew up on the streets of a world in the early stages of its industrial revolution. [PAWN_pronoun] passed [PAWN_possessive] days stealing, begging and tinkering with discarded machine scraps, always on the lookout for a way to escape poverty. &lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Infantry{{br}}(Infantry)&lt;br /&gt;
| Lenka was raised on a world wracked by war.&lt;br /&gt;
&lt;br /&gt;
At an early age, she was shown how to use guns and cruelty to project her will. She later distinguished herself by committing atrocities with more enthusiasm than anyone else.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Joywire addict{{br}}(Addict)&lt;br /&gt;
| [PAWN_nameDef]'s wealthy parents provided everything [PAWN_pronoun] ever wanted. After discovering joywires, [PAWN_pronoun] became obsessed. Once [PAWN_possessive] parents realized what happened, they cut [PAWN_objective] off.&lt;br /&gt;
&lt;br /&gt;
Uncaring and often violent, [PAWN_pronoun] sought [PAWN_possessive] next joywire fix by any means possible.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|6}}&amp;lt;/br&amp;gt;Social: {{--|3}}&lt;br /&gt;
| Intellectual{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Jungle kid{{br}}(Jungle kid)&lt;br /&gt;
| [PAWN_nameDef] was abandoned as a newborn, and grew up among the animals of [PAWN_possessive] homeworld’s dense jungles.&lt;br /&gt;
&lt;br /&gt;
When [PAWN_pronoun] was a teenager, a traveling doctor found [PAWN_objective] injured near a road, hissing and meowing. He rescued [PAWN_objective] and took [PAWN_objective] on as an apprentice.&lt;br /&gt;
| Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Junkyard mechanic{{br}}(Mechanic)&lt;br /&gt;
| Left for dead at a young age, [PAWN_nameDef] was rescued by an old man who ran an urbworld junkyard. The old man forced [PAWN_nameDef] to do dangerous, demanding work. &lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] became very familiar with machines, but [PAWN_pronoun] grew up with almost no other experiences.&lt;br /&gt;
&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Kid scientist{{br}}(Scientist)&lt;br /&gt;
| Born into an influential family, [PAWN_nameDef] received the best education money could buy. Her intellect soon proved to be superior to many. However, her lack of empathy quickly put her at odds with her teachers and her parents.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| ManualDumb{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Killer{{br}}(Killer)&lt;br /&gt;
| [PAWN_nameDef] was a bloodlusting child. Villagers thought her the product of a snake demon and human coupling.&lt;br /&gt;
&lt;br /&gt;
After watching how her human father betrayed and murdered her mother, she longed to see how many more humans she could get to fall into her hands.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Lab-grown child{{br}}(Lab-grown)&lt;br /&gt;
| [PAWN_nameDef] was born in a laboratory as part of a altruistic but failed attempt to create a new class of human.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] childhood was filled with books and one-on-one tutoring. He was awkward, shy, and naive to the true nature of humanity.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Labor camp orphan{{br}}(Orphan)&lt;br /&gt;
| [PAWN_nameDef] lost her parents in an industrial accident and grew up in an orphans' labor camp. The camp overseers worked their charges mercilessly - but at least she was clothed and fed.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|4}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Logical child{{br}}(Logic kid)&lt;br /&gt;
| [PAWN_pronoun] preferred logical activities like computers and was completely useless at art.&lt;br /&gt;
&lt;br /&gt;
Being awkward in social situations, [PAWN_possessive] friends were few but close.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mad scientist{{br}}(Scientist)&lt;br /&gt;
| [PAWN_nameDef] grew up miserable on the plains of a neolithic planet. He found the strength to fight under the teachings of an old, broken scientist.&lt;br /&gt;
&lt;br /&gt;
He quickly learned to play with people's fears, and was nicknamed 'mad scientist'.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Marine cadet{{br}}(Cadet)&lt;br /&gt;
| [PAWN_nameDef] was in a planetary marine cadet program.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was kicked out for shooting an officer. It was never established whether this was an accident.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mechanoid hacker{{br}}(Mechacker)&lt;br /&gt;
| The only son of a well respected mechanoid inventor, [PAWN_nameDef] had access to the materials to subvert and modify [PAWN_possessive] father's creations.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] used drugs to increase [PAWN_possessive] productivity. Unfortunately, the side-effects included persistent delusions of being mechanized, which limited [PAWN_possessive] social life.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mechanoid nerd{{br}}(Mechanerd)&lt;br /&gt;
| [PAWN_nameDef] grew up in an urbworld as the only child of a pair of mechanoid designers.&lt;br /&gt;
They encouraged [PAWN_possessive] interest in the machines. Eventually, [PAWN_pronoun] became obsessed with building [PAWN_possessive] own.&lt;br /&gt;
&lt;br /&gt;
Unfortunately this also lead to [PAWN_objective] being a loner as [PAWN_pronoun] prefered technical books to friends.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medical assistant{{br}}(Medic)&lt;br /&gt;
| [PAWN_nameDef] was born during a catastrophic war in which both sides used napalm extensively. [PAWN_pronoun] grew up helping [PAWN_possessive] parents in an infirmary, treating the cascade of horrific burns from the battlefields. [PAWN_pronoun] was left with a lifelong fear of fire.&lt;br /&gt;
| Medicine: {{+|5}}&lt;br /&gt;
| Firefighting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medical helper{{br}}(Med helper)&lt;br /&gt;
| [PAWN_nameDef] traveled between rim worlds with [PAWN_possessive] family. [PAWN_nameDef]'s mother, a renowned doctor, often delivered lectures from the hull of their retrofitted cargo/medical ship.&lt;br /&gt;
&lt;br /&gt;
Sometimes, the family took on difficult long-term medical work with especially needy patients, and [PAWN_nameDef] helped where he could.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medical student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] grew up on a glitterworld in a family of doctors and chose to maintain the tradition.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] had few friends, but got along with [PAWN_possessive] siblings very well.&lt;br /&gt;
| Social: {{+|1}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medical student{{br}}(Student)&lt;br /&gt;
| Born into a long line of doctors, [PAWN_nameDef] was tutored in all fields of medicine, from herbal ointments to the modern synthetic drugs. [PAWN_pronoun] also picked up a healthy disdain for lower class work.&lt;br /&gt;
| Construction: {{--|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Hauling{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval lordling{{br}}(Lordling)&lt;br /&gt;
| [PAWN_nameDef] was a minor noble in an old kingdom on a medieval world. [PAWN_pronoun] grew up in a manor made of stone, served by bowing lowerclassmen.{{br}}Such a life teaches no technical skills and instils a lifelong aversion to manual labor - but [PAWN_nameDef] learned early the ways of social manipulation.&lt;br /&gt;
| Social: {{+|4}}&amp;lt;/br&amp;gt;Construction: {{--|1}}&amp;lt;/br&amp;gt;Mining: {{--|1}}&amp;lt;/br&amp;gt;Plants: {{--|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval plower{{br}}(Plower)&lt;br /&gt;
| [PAWN_nameDef] lived on a planet where kings and queens ruled with little regard for the peasants beneath them. [PAWN_possessive] family owned a large farm, but the king took most of the food it produced. This left [PAWN_nameDef]'s family poor, and unable to pay for [PAWN_possessive] education. Instead, [PAWN_pronoun] was required to work the fields with [PAWN_possessive] parents, and never had time to practice creativity.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|5}}&amp;lt;/br&amp;gt;Intellectual: {{--|1}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval slave{{br}}(Slave)&lt;br /&gt;
| [PAWN_nameDef] grew up pulling carts and digging holes on a medieval world. Simple manual labor is [PAWN_possessive] oldest companion - along with the master's lash.{{br}}[PAWN_pronoun] didn't learn to read until age nine.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Construction: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval slave{{br}}(Slave)&lt;br /&gt;
| Born into slavery, Soren never knew his parents. He eventually escaped from his masters and boarded a military cargo ship, where he was pressed into military service.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{+|1}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval squire{{br}}(Squire)&lt;br /&gt;
| William grew up on a medieval planet as a knight in training. He trained directly under the king's war adviser for most of his youth, and learned to fight with a sword and shield.&lt;br /&gt;
| Construction: {{--|1}}&amp;lt;/br&amp;gt;Mining: {{--|1}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&lt;br /&gt;
| Cooking{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval thief{{br}}(Thief)&lt;br /&gt;
| [PAWN_nameDef] grew up poor and hungry on a medieval planet, learning to fend for himself.&lt;br /&gt;
&lt;br /&gt;
At first, he only took what he needed. Then he learned to take what he wanted.&lt;br /&gt;
| Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mercenary recruit{{br}}(Mercenary)&lt;br /&gt;
| Descended from a long line of off-world mercenaries, [PAWN_nameDef] grew up in a busy trading hub.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive]'s interest in the foreign goods at the market often distracted him from his chores and training.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mercenary recruit{{br}}(Recruit)&lt;br /&gt;
| Born to a long line of off-world mercenaries, [PAWN_nameDef] grew up in a busy trading hub. At a young age, [PAWN_pronoun] was recruited into one of the mercenary crews.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Midworld cadet{{br}}(Cadet)&lt;br /&gt;
| Growing up on a high-tech midworld with a flourishing space transit industry, [PAWN_nameDef] wished to leave for the stars and live among the growing spacer class.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] excelled in [PAWN_possessive] studies, and gained entry to [PAWN_possessive] homeworld's most prestigious naval academy.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Midworld geek{{br}}(Geek)&lt;br /&gt;
| [PAWN_nameDef] grew up in a quiet suburban neighborhood. He was never a master of social interaction, but his interest in computers blossomed into a true talent at an early age.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Social: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Midworld loner{{br}}(Loner)&lt;br /&gt;
| [PAWN_nameDef] was born on a peaceful, unimportant midworld.&lt;br /&gt;
&lt;br /&gt;
While [PAWN_pronoun] had a few friends, [PAWN_pronoun] preferred to spend [PAWN_possessive] time in solitude, tinkering on [PAWN_possessive] autocycle while listening to netcasts, or plinking at plastic soldiers with a new rifle [PAWN_pronoun] had just put together.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Midworld sketcher{{br}}(Sketcher)&lt;br /&gt;
| [PAWN_nameDef] was born into a loving but poor family.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] discovered he had an artistic talent which he inherited from his father. [PAWN_possessive] mother taught him the benefits of hard work and determination. As he grew older, [PAWN_nameDef] developed a fascination with technology and military history.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Militant child{{br}}(Soldier)&lt;br /&gt;
| [PAWN_nameDef]'s military family forced him to train in hand-to-hand combat and fighting tactics.&lt;br /&gt;
&lt;br /&gt;
In his own time, he built small inventions. This sharpened his mind.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Military cadet{{br}}(Cadet)&lt;br /&gt;
| Orphaned as a child, [PAWN_nameDef] was sent to a secret military school on a harsh deadworld.&lt;br /&gt;
&lt;br /&gt;
Taking quickly to firearms and survival training, [PAWN_pronoun] graduated with honor, transitioning into a leadership position in covert operations.&lt;br /&gt;
| Plants: {{--|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{--|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Military child{{br}}(Military)&lt;br /&gt;
| [PAWN_nameDef] grew up in a family with a rich military background. [PAWN_possessive] teenage years were spent traveling system to system wherever [PAWN_possessive] parents were deployed.&lt;br /&gt;
&lt;br /&gt;
Following the tradition of [PAWN_possessive] family, [PAWN_pronoun] enlisted at the earliest possible age.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Military recruit{{br}}(Recruit)&lt;br /&gt;
| [PAWN_nameDef] was born on a midworld run by an intensely militaristic dictatorship.&lt;br /&gt;
&lt;br /&gt;
From a young age, [PAWN_pronoun] was trained to be a good soldier. They taught him how to use a gun and how to fight with melee weapons.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Military trainee{{br}}(Soldierboy)&lt;br /&gt;
| [PAWN_nameDef] was raised on a military base in the Xennoa system. [PAWN_pronoun] was exposed to many different strenuous activities and grew strong at an early age. [PAWN_pronoun] also learned negotiation, medical, and military tactics.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Music idol{{br}}(Music idol)&lt;br /&gt;
| [PAWN_nameDef] was the only daughter of a powerful company president. [PAWN_possessive] beautiful appearance led to a career as a music idol.&lt;br /&gt;
&lt;br /&gt;
When [PAWN_possessive] mother died, [PAWN_nameDef] could not bear [PAWN_possessive] father's loneliness, and became his sexual companion.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Music lover{{br}}(Musician)&lt;br /&gt;
| As a child, [PAWN_nameDef] had a talent for playing musical instruments and singing. [PAWN_pronoun] was given expert training and loved to perform in recitals and concerts, though the lavish praise [PAWN_pronoun] received made [PAWN_objective] a little self-obsessed.&lt;br /&gt;
| Social: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mute{{br}}(Mute)&lt;br /&gt;
| [PAWN_nameDef] was greatly affected by a traumatic event early in [PAWN_possessive] life. For many years [PAWN_pronoun] refused to speak to people, preferring instead to play with [PAWN_possessive] household's numerous pets.&lt;br /&gt;
| Animals: {{+|5}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Naturalist{{br}}(Naturalist)&lt;br /&gt;
| Mitch grew up on a backwater planet with minimal education. He had to hunt and grow food to survive.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] family's home was frequently raided for food by scavengers. This made Mitch very suspicious and slow to trust anyone he doesn't know.&lt;br /&gt;
| Plants: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Navy pathfinder{{br}}(Pathfinder)&lt;br /&gt;
| [PAWN_nameDef] was raised and trained by a group of military explorers dedicated to charting pathways through deep space and on remote planets.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Nerd{{br}}(Nerd)&lt;br /&gt;
| [PAWN_nameDef] was curious about everything. While other kids played tag in the suburbs of their industrial city, [PAWN_nameDef] read every book he could find about technology, robots, and weapons - whatever looked coolest.&lt;br /&gt;
&lt;br /&gt;
His strong French accent kept him from making real friends.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! New age duelist{{br}}(Duelist)&lt;br /&gt;
| [PAWN_nameDef] was fascinated with combat. [PAWN_possessive] parents traveled often, so [PAWN_pronoun] was able to sample many different fighting styles, from 76th-wave jujutsu to the infamous 'urbworld-style' karate.&lt;br /&gt;
&lt;br /&gt;
A polite child, most fighters accepted [PAWN_possessive] requests for training - but moving around often without finishing a tutelage made [PAWN_objective] lazy.&lt;br /&gt;
| Shooting: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Animals: {{--|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Noble ward{{br}}(Ward)&lt;br /&gt;
| [PAWN_nameDef] was adopted by a prominent noble family after being left on their doorstep by [PAWN_possessive] mother.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] quickly learned secrets that passed between the nobles like cheap wine - of worlds beyond her own, languages, cultures and technologies both new and old.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{--|1}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| ManualDumb{{br}}Firefighting{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Officer cadet{{br}}(Cadet)&lt;br /&gt;
| From a young age, Bashkire trained to be a leader of men. He enrolled in the Vanu Defense College when he was a boy and became proficient with a range of weapons and survival techniques.&lt;br /&gt;
| Plants: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|1}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Offworld recruit{{br}}(Recruit)&lt;br /&gt;
| [PAWN_nameDef] was born an raised in an offworld soldier growth facility. From a very young age, [PAWN_pronoun] was taught close-quarters combat tactics, aggression, and how to survive on distant planets.&lt;br /&gt;
&lt;br /&gt;
One of the best, [PAWN_nameDef] was eventually chose to enter the orbital-deployment shock troop corps.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Optimistic child{{br}}(Optimistic)&lt;br /&gt;
| Kees was blessed with loving parents and a pleasant midworld life. He was an  optimistic and sociable kid who loved making friends and listening to their stories. His imagination would run wild with ideas and questions.&lt;br /&gt;
| Social: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Organ farm{{br}}(Organ farm)&lt;br /&gt;
| [PAWN_nameDef] was raised in an illegal underground organ farm. [PAWN_possessive] body was used to grow organic implants for wounded mercenaries. Though [PAWN_possessive] upbringing has left [PAWN_objective] haunted, it has also given [PAWN_objective] a unique understanding of human biology.&lt;br /&gt;
| Medicine: {{+|5}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Orphan of war{{br}}(Orphan)&lt;br /&gt;
| [PAWN_nameDef] lost his family and home early in life. His life became emotionally hollow, but his painful memories drove him to survive.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] took several jobs, but never achieved more than a basic education.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|3}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Orphan{{br}}(Orphan)&lt;br /&gt;
| Born in a brothel on a harsh world, [PAWN_nameDef] never really had a childhood. [PAWN_pronoun] did odd jobs to survive, and became distant from others.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Social{{br}}Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Orphan{{br}}(Orphan)&lt;br /&gt;
| Born on a deep space station, [PAWN_nameDef] was orphaned at a young age. In the orphanage, he stood up for the weaker kids and fought off the bullies.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Crafting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Orphan{{br}}(Orphan)&lt;br /&gt;
| Left alone in the world without parents, Kevin did the best he could to adapt.&lt;br /&gt;
&lt;br /&gt;
Having to take care both of himself and younger kids at the orphanage, he learned a lot about humans and how to interact with them.&lt;br /&gt;
| Social: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pampered{{br}}(Pampered)&lt;br /&gt;
| Born on a decadent glitterworld, [PAWN_nameDef] was given every expensive toy.&lt;br /&gt;
&lt;br /&gt;
This pampered lifestyle caused [PAWN_objective] to miss many basic life lessons. [PAWN_pronoun] developed a special aversion to cooking, and always ordered the staff to do the kitchen work.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{--|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pet keeper{{br}}(Pet keeper)&lt;br /&gt;
| [PAWN_nameDef] spent most of [PAWN_possessive] childhood tending the animals [PAWN_pronoun] had bought or rescued.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] saw beauty in natural things more than fabricated objects, and chose the company of [PAWN_possessive] animals over that of [PAWN_possessive] peers.&lt;br /&gt;
| Medicine: {{+|1}}&amp;lt;/br&amp;gt;Animals: {{+|6}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Philosopher{{br}}(Thinker)&lt;br /&gt;
| [PAWN_nameDef] was a student on a glitterworld. [PAWN_pronoun] had a hard time in school, since the other kids thought [PAWN_objective] rather strange.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] always maintained a distance from these events, being continuously surprised by the many interesting and awkward ways life can go.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pickpocket{{br}}(Pickpocket)&lt;br /&gt;
| Orphaned and abandoned on the tumultuous streets of his polluted, teeming homeworld, [PAWN_nameDef] survived by deft hand and fleet foot. A natural born thief and trickster, [PAWN_pronoun] rose to prominence early, running the notorious and violent urchin gang 'Doomben Rats'.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pickpocket{{br}}(Thief)&lt;br /&gt;
| [PAWN_nameDef] witnessed [PAWN_possessive] parents' murder at a young age. With no guidance, [PAWN_pronoun] had to fend for [PAWN_objective]self any way possible. Joining a small group of misfits [PAWN_pronoun] did whatever was necessary to survive.&lt;br /&gt;
| Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|1}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pilot fan{{br}}(Pilot fan)&lt;br /&gt;
| [PAWN_nameDef]'s father was a starfighter pilot, and [PAWN_pronoun] always idolized the old man.&lt;br /&gt;
&lt;br /&gt;
From a young age, [PAWN_pronoun] collected pilot memorabilia and studied pilot books, preparing to join the deep space navy and follow in [PAWN_possessive] father's footsteps.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pit gladiator{{br}}(Gladiator)&lt;br /&gt;
| [PAWN_nameDef] was enslaved as a child and forced to fight creatures and other people in an underground fighting arena.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] showed an affinity for the sport, and eventually bought his own freedom. However, his time in the pits never brought him much intellectual stimulation.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pizza lover{{br}}(Pizza kid)&lt;br /&gt;
| [PAWN_nameDef] loved boomrat pizza intensely. Rarely eating anything else, he was prone to bad health and low oxygen uptake.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] loved bashing in the skulls of random creatures to see what was inside.&lt;br /&gt;
| Melee: {{+|5}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Plague child{{br}}(Child)&lt;br /&gt;
| Born on a world wracked by plague, both of [PAWN_nameDef]'s parents were doctors. &lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] was raised in reverse-quarantine, under the Hippocratic oath. [PAWN_pronoun] experienced little social interaction. However, [PAWN_pronoun] gained a lot of medical experience assisting in treatments.&lt;br /&gt;
| Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|5}}&lt;br /&gt;
| Violent{{br}}Animals{{br}}Artistic{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Plague prodigy{{br}}(Prodigy)&lt;br /&gt;
| [PAWN_nameDef]'s childhood was cut short when a mysterious plague hit his homeworld.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] watched his friends die, and his compassion for humanity died with them. In its place a new thirst for knowledge emerged.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Plague survivor{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef] watched as a mysterious plague spread through [PAWN_possessive] town, killing [PAWN_possessive] family and friends.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned some medicine from watching the plague doctors, but was mentally scarred by the ordeal.&lt;br /&gt;
| Social: {{--|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Poor kid{{br}}(Poor kid)&lt;br /&gt;
| Abandoned by his parents, [PAWN_nameDef] learned how to survive by himself before he was ten years old.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|1}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Power-mad scholar{{br}}(Scholar)&lt;br /&gt;
| &amp;quot;Knowledge is power.&amp;quot; These words sparked something within [PAWN_nameDef], and came to form his core drive. When not entombed within libraries, [PAWN_pronoun] would take things apart to see first-hand how they worked, with little regard for the border between mechanical and organic.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Privileged child{{br}}(Privileged)&lt;br /&gt;
| Born to an upper-class family, [PAWN_nameDef] grew up with all the best things - the best education, the best social contacts, and of course the best technology money could buy.&lt;br /&gt;
&lt;br /&gt;
Unfortunately, living in such decadence left [PAWN_nameDef] rather spoiled when it came to labor.&lt;br /&gt;
| Social: {{+|3}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Privileged prodigy{{br}}(Prodigy)&lt;br /&gt;
| [PAWN_nameDef] was recognized as gifted early in his glitterworld upbringing. Luckily, [PAWN_possessive] family was in a position to cultivate that genius through advanced education. [PAWN_possessive] training included science, leadership, and the arts.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}Violent{{br}}Hauling{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Prodigal student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] was a faithful student, and was dedicated to learning anything and everything he could about humanity and its creations.&lt;br /&gt;
&lt;br /&gt;
While [PAWN_pronoun] was shunned as a nerd, [PAWN_pronoun] didn't mind. [PAWN_pronoun] hoped for a brighter future.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Professional gamer{{br}}(Pro gamer)&lt;br /&gt;
| [PAWN_nameDef] was obsessed with video games since his hands were big enough to grip a joystick.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] achieved middling finishes in several local tournaments during the 16-bit era. Nobody noticed when he retired early in his teenage years.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Project subject{{br}}(Subject)&lt;br /&gt;
| [PAWN_nameDef] was picked by government agents for the mysterious &amp;quot;Frame Project&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Due to memory blockages, however, he remembers very little about this project or its true agenda - only that there were few survivors.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Psychology student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] researched new religions and traditions and often dreamt of distant stars. &lt;br /&gt;
&lt;br /&gt;
His dreams prompted him to ask what lay beyond the lights in the sky.&lt;br /&gt;
| Social: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Punk{{br}}(Punk)&lt;br /&gt;
| [PAWN_nameDef] spent his childhood selling knockoff cigarettes to 15-year-olds. The cigarettes were often full of grass clippings.&lt;br /&gt;
| Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pyro assistant{{br}}(Assistant)&lt;br /&gt;
| On an industrial world, [PAWN_nameDef] learned early that if [PAWN_pronoun] wanted to eat, [PAWN_pronoun] had to work. So work [PAWN_pronoun] did. Kids fit in places adults can't, and where [PAWN_pronoun] was from, the safety laws were quite flexible.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was always a bit of a pyromaniac, and was banned from the kitchen after an unfortunate incident.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Cooking{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pyromaniac{{br}}(Pyro)&lt;br /&gt;
| From an early age, [PAWN_nameDef] had an unhealthy fascination with fire. [PAWN_pronoun] would set refuse heaps ablaze and become so entranced by the flames [PAWN_pronoun] would absent-mindedly burn [PAWN_objective]self.{{br}}One day while playing with matches, [PAWN_pronoun] carelessly burned down [PAWN_possessive] home.&lt;br /&gt;
| Social: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| Firefighting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Quiet nerd{{br}}(Nerd)&lt;br /&gt;
| [PAWN_nameDef] was raised by doting parents on a midworld. Instead of playing with other children, [PAWN_pronoun] read books voraciously.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was not particularly rugged, and struggled with physical labor.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Ranger child{{br}}(Ranger kid)&lt;br /&gt;
| [PAWN_nameDef] was raised in a forest. [PAWN_possessive] father taught [PAWN_objective] to hunt and live off the land, so that [PAWN_pronoun] could live without the need of others when father died.&lt;br /&gt;
&lt;br /&gt;
Accustomed to manual labor and with an intuitive mind, [PAWN_nameDef] could survive weeks alone.&lt;br /&gt;
| Mining: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Firefighting{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Rebel child{{br}}(Rebel)&lt;br /&gt;
| [PAWN_nameDef] was born under authoritarian rule. Despite intense oppression from family and community, she never gave up fighting for her dignity and her freedom.&lt;br /&gt;
&lt;br /&gt;
She was often put into hopeless situations where even family would try to terrorize her into propriety. She learned to trust no one.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Rebel slave{{br}}(Rebel)&lt;br /&gt;
| [PAWN_nameDef] was born into corporate slavery and raised to perform menial tasks for minimum pay. [PAWN_pronoun] was just another cog in the machine. &lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] found his freedom by joining a rebel organization whose goal was to break free from their corporate masters.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Plants: {{+|1}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Rebel student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] grew up in a modest but privileged family who encouraged him to play chess and shoot skeet at a young age.&lt;br /&gt;
&lt;br /&gt;
As a bored student, [PAWN_pronoun] found joy in challenging his teachers about the contradictions between his planet's official values and their government's policies.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Rebel writer{{br}}(Writer)&lt;br /&gt;
| Early on, [PAWN_nameDef] developed a talent for writing. [PAWN_pronoun] was soon writing a popular online journal - anonymously, to hide [PAWN_possessive] age - on topics ranging from bioethics to political theory and xenosociology.&lt;br /&gt;
| Intellectual: {{+|7}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Reclusive prodigy{{br}}(Prodigy)&lt;br /&gt;
| Growing up on a flourishing glitterworld afforded Holly the chance to fully devote herself to her studies.&lt;br /&gt;
&lt;br /&gt;
Having taken a keen interest in genetic modification and neural augmentation from a young age, she had little time (or desire) for a regular childhood.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Re-educated youth{{br}}(Reeducated)&lt;br /&gt;
| [PAWN_nameDef] lived on a midworld where the government cared about the youth. &lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was one of the many children who were taken from their parents and forced into the new education programs.&lt;br /&gt;
| Social: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Rich boy{{br}}(Rich boy)&lt;br /&gt;
| [PAWN_nameDef] grew up on a midworld with loving parents, a cute pet and a lot of money - but no friends.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was always told by his father that 'those peasants just want your money'. So, [PAWN_pronoun] spent most of his time alone, or fighting other kids.&lt;br /&gt;
| Melee: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| Caring{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Ritual child{{br}}(Sacrifice)&lt;br /&gt;
| Born with a special mark on [PAWN_possessive] neck, [PAWN_nameDef]'s tribe chose to sacrifice [PAWN_objective] in a blood ritual. They left [PAWN_objective] in the forest to die. A pack of arctic wolves found and adopted [PAWN_objective].&lt;br /&gt;
&lt;br /&gt;
Over time, [PAWN_pronoun] learned to make tools to hunt with the pack.&lt;br /&gt;
| Intellectual: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Scavenger&lt;br /&gt;
| [PAWN_nameDef] spent [PAWN_possessive] childhood escaping grunt work to go digging through wrecks and ruins for treasures. [PAWN_possessive] natural curiosity got [PAWN_objective] into a lot of trouble, but it also yielded many interesting finds.&lt;br /&gt;
| Mining: {{+|3}}{{br}}Intellectual: {{+|3}}&lt;br /&gt;
| Dumb labor&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Scout&lt;br /&gt;
| Born to colonial administrators from a small imperial power, [PAWN_nameDef] was enrolled in a youth program that taught military scouting skills.{{br}}[PAWN_pronoun] learned to survive in the wilderness, to obey, and not to ask questions.&lt;br /&gt;
| Shooting: {{+|3}}{{br}}Construction: {{+|1}}{{br}}Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}Intellectual&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Shelter child{{br}}(Shelterkid)&lt;br /&gt;
| [PAWN_nameDef] grew up in a shelter deep beneath a toxic world. [PAWN_pronoun] received a comprehensive education, but had no opportunity to do physical labour.&lt;br /&gt;
| Construction: {{--|2}}{{br}}Mining: {{--|2}}{{br}}Medical: {{+|3}}{{br}}Social: {{+|2}}{{br}}Intellectual: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Shopkeeper{{br}}(Shopkeep)&lt;br /&gt;
| [PAWN_nameDef]'s mother was often ill, and it fell to [PAWN_objective] to run the store which was their only source of income. [PAWN_pronoun] learned a little about the exotic artifacts which [PAWN_pronoun] sold, and a lot about the art of the deal.&lt;br /&gt;
| Social: {{+|4}}{{br}}Intellectual: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sickly child{{br}}(Patient)&lt;br /&gt;
| As a child, [PAWN_nameDef] suffered from a rare disease. Quarantined in a research hospital, [PAWN_pronoun] had minimal human contact and got little physical exercise. In the sterile hospital environment, however, [PAWN_pronoun] became very familiar with science and medicine.&lt;br /&gt;
| Melee: {{--|2}}{{br}}Construction: {{--|2}}{{br}}Medical: {{+|5}}{{br}}Social: {{--|2}}{{br}}Intellectual: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sole survivor{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef]’s entire tribe was wiped out in a raid. Though [PAWN_pronoun] was adopted by another group, [PAWN_pronoun] was emotionally scarred, and preferred to stay near home, cooking and tending crops.&lt;br /&gt;
| Cooking: {{+|3}}{{br}}Plants: {{+|3}}&lt;br /&gt;
| Violent&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Story writer{{br}}(Writer)&lt;br /&gt;
| As a child, [PAWN_nameDef] was addicted to reading. [PAWN_pronoun] would spend all day in [PAWN_possessive] local library with [PAWN_possessive] nose in a book. When budget cuts forced the library to close, [PAWN_nameDef] was distraught. [PAWN_pronoun] decided to fill the gap by writing [PAWN_possessive] own stories instead.&lt;br /&gt;
| Artistic: {{+|4}}{{br}}Intellectual: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Test subject{{br}}(Testee)&lt;br /&gt;
| On the most corrupt urbworlds, scientists without a moral compass commit unspeakable atrocities in the name of research. [PAWN_nameDef] was kept alone in a sealed facility from birth and subjected to a variety of behavioural experiments in an attempt to turn [PAWN_objective] into a perfect super-soldier.&lt;br /&gt;
| Shooting: {{+|4}}&lt;br /&gt;
| Social{{br}}Caring{{br}}Firefighting&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Tribe child{{br}}(Tribal)&lt;br /&gt;
| [PAWN_nameDef] grew up in the tribe, running around the village, moving with the muffalo herds, learning essential skills from [PAWN_possessive] parents.{{br}}[PAWN_pronoun] never learned to read and never saw a machine that wasn't an ancient ruin.&lt;br /&gt;
| Shooting: {{+|2}}{{br}}Melee: {{+|2}}{{br}}Plants: {{+|2}}{{br}}Intellectual: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Urbworld urchin{{br}}(Urchin)&lt;br /&gt;
| The urbworlds - ancient and deep industrial cityscapes bursting with humanity and poison. [PAWN_nameDef] grew up in the dark, unwanted reaches of such a place. [PAWN_pronoun] had to fight for every scrap of food.&lt;br /&gt;
| Shooting: {{+|2}}{{br}}Melee: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Vatgrown soldier{{br}}(Vatgrown)&lt;br /&gt;
| [PAWN_nameDef] wasn't made as a person, but as an instrument of destruction. Grown in a bioweapons facility and taught combat during [PAWN_possessive] accelerated growth, [PAWN_nameDef] still has a proclivity for combat of all kinds and an aversion to human contact.&lt;br /&gt;
| Shooting: {{+|4}}{{br}}Melee: {{+|4}}&lt;br /&gt;
| Social{{br}}Caring&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Vengeful child{{br}}(Vengeful)&lt;br /&gt;
| As a child, [PAWN_nameDef] returned to [PAWN_possessive] village to find that it had been wiped out by bandits. [PAWN_pronoun] swore revenge on the attackers and began a violent rampage across the wilderness.&lt;br /&gt;
| Shooting: {{+|3}}{{br}}Melee: {{+|3}}&lt;br /&gt;
| Caring&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! War refugee{{br}}(Refugee)&lt;br /&gt;
| War broke out in [PAWN_nameDef]'s home when [PAWN_pronoun] was a baby. [PAWN_possessive] parents fled with [PAWN_objective], seeking safety wherever they could find it. [PAWN_nameDef]'s earliest memories are of being taught how to defend [PAWN_objective]self.{{br}}The violence and destruction [PAWN_pronoun] witnessed left [PAWN_objective] scarred for life.&lt;br /&gt;
| Cooking: {{+|2}}{{br}}Crafting: {{+|2}}&lt;br /&gt;
| Violent&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Wreckage explorer{{br}}(Explorer)&lt;br /&gt;
| Two generations before [PAWN_nameDef] was born, an apocalyptic war dragged [PAWN_possessive] home planet into anarchy. [PAWN_nameDef] was tasked with watching [PAWN_possessive] tribe's herds, but often shirked [PAWN_possessive] duties to go exploring the crashed warships scattered around the planet.&lt;br /&gt;
| Animals: {{+|3}}{{br}}Intellectual: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=List_of_childhood_backstories&amp;diff=63381</id>
		<title>List of childhood backstories</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=List_of_childhood_backstories&amp;diff=63381"/>
		<updated>2019-05-07T18:01:35Z</updated>

		<summary type="html">&lt;p&gt;Mehni: Part H-Q of the definitive list of backstories, sourced from build 2231. Script made. This is as they appear in the game.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;amp;larr; &amp;lt;small&amp;gt;[[Backstories]]&amp;lt;/small&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| {{STDT| sortable c_17}}&lt;br /&gt;
! Title&amp;lt;br /&amp;gt;(Short Title) !! Description !! Skill Modifications !! Incapable of !! Civil !! Raider !! Slave !! Trader !! Traveler !! Tribal&lt;br /&gt;
|-&lt;br /&gt;
! Abandoned child{{br}}(Abandoned)&lt;br /&gt;
| [PAWN_nameDef] was a quick witted, funny child. One day, [PAWN_pronoun] wandered off on [PAWN_possessive] wealthy genetic parents, and was ultimately lost in a supposedly unused ore warehouse. Due to cloning technology, [PAWN_possessive] parents decided that the time looking for [PAWN_objective] was better spent on just cloning a better son.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|1}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Abandoned orphan{{br}}(Orphan)&lt;br /&gt;
| Abandoned at birth, young [PAWN_nameDef] started [PAWN_possessive] life in an orphanage.&lt;br /&gt;
&lt;br /&gt;
A rascal and a scoundrel, [PAWN_pronoun] became a clever troublemaker.&lt;br /&gt;
| Plants: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Abductee{{br}}(Abductee)&lt;br /&gt;
| [PAWN_nameDef] was abducted at a young age and forced to do menial labor on a pirate ship.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Abductee{{br}}(Abductee)&lt;br /&gt;
| [PAWN_nameDef] was abducted by xenohumans when [PAWN_pronoun] was still a baby. They experimented on [PAWN_objective] to understand his genetic structure.&lt;br /&gt;
&lt;br /&gt;
As [PAWN_pronoun] grew up, [PAWN_nameDef] grew a little bit too big and strong for his captors and eventually escaped.&lt;br /&gt;
&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Academy student {{br}}(Student )&lt;br /&gt;
| [PAWN_nameDef] went to school like a good space cadet would. He was very tall and was known for his good looks.&lt;br /&gt;
&lt;br /&gt;
Though he worried more about his hairstyle than his grades, he still somehow passed the final exams.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Accursed child{{br}}(Cursed)&lt;br /&gt;
| [PAWN_nameDef] was born at the peak of a lunar eclipse. The elders declared [PAWN_objective] a child of darkness brought [PAWN_objective] under their care.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] entire childhood was spent studying the lore and rituals of [PAWN_possessive] people - until the day of calling.&lt;br /&gt;
| Construction: {{--|1}}&amp;lt;/br&amp;gt;Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| Firefighting{{br}}Cleaning{{br}}Hauling{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Adventuring child{{br}}(Adventurer)&lt;br /&gt;
| Axle was raised to become an engineer. For years, he planned to stow away on a cargo ship and start a new, more adventuresome life.&lt;br /&gt;
&lt;br /&gt;
One night, after his parents fell asleep, he managed to sneak on board a cargo ship just before it left port.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Adventurous youth{{br}}(Adventurer)&lt;br /&gt;
| [PAWN_nameDef] explored all around [PAWN_possessive] family's large estate, uncovering little natural wonders hidden in nearby catacombs, rivers, and caves.&lt;br /&gt;
&lt;br /&gt;
During his teenage years, [PAWN_nameDef] made numerous enemies&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Amateur astronomer{{br}}(Astronomer)&lt;br /&gt;
| [PAWN_nameDef] was fascinated with astronomy. [PAWN_pronoun] would spend hours gazing at planets and nebulae through his telescope.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] is credited with discovering a small comet that would, years later, strike a nearby moon and disrupt the mining operations there.&lt;br /&gt;
| Intellectual: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Amateur botanist{{br}}(Botanist)&lt;br /&gt;
| Spending many summers crawling through dirt, Christian found he had quite the green thumb. Instead of learning to cook the food he grew, he just grew more and more.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Amateur engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] grew up in a family with a military and engineering background. [PAWN_pronoun] wanted to join the army but his father didn't like the idea, so [PAWN_possessive] interest turned to great flying machines and works of engineering. [PAWN_pronoun] secretly hoped that this would one day lead him to a life of galactic exploration.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|1}}&lt;br /&gt;
| Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Angry student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] trained towards [PAWN_possessive] dream of working for his hometown's local council.&lt;br /&gt;
&lt;br /&gt;
For reasons he never quite understood, [PAWN_pronoun] was bullied relentlessly by his classmates. [PAWN_pronoun] chose to repress his rage.&lt;br /&gt;
| Intellectual: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Animal caretaker{{br}}(Caretaker)&lt;br /&gt;
| Born on a medieval farm, [PAWN_nameDef] was tasked with caring for domestic animals. [PAWN_pronoun] grew to love them.&lt;br /&gt;
&lt;br /&gt;
With time, [PAWN_pronoun] learned to tame wild animals. [PAWN_pronoun] dreamed of one day meeting a thrumbo and taming it.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Animal lab tech{{br}}(Lab tech)&lt;br /&gt;
| [PAWN_nameDef] worked as a technician in a lab studying animals.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] spent [PAWN_possessive] days taking care of the animals and cleaning up after them. [PAWN_pronoun] dreamed of having [PAWN_possessive] own lab one day.&lt;br /&gt;
| Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|3}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Antisocial child{{br}}(Antisocial)&lt;br /&gt;
| [PAWN_nameDef] lacked typical social skills, and avoided social interaction.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] gained satisfaction only from steady work. [PAWN_pronoun] especially disliked speaking with overly creative or outgoing individuals.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Apocalypse child {{br}}(Apocalypse)&lt;br /&gt;
| [PAWN_nameDef] spent his childhood on a post-apocalyptic world. He fought for survival from a young age, on a planet where trust did not exist.&lt;br /&gt;
&lt;br /&gt;
He told everyone that he had no luck.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Apocalypse survivor{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef] was born during a time of unrest on [PAWN_possessive] homeworld, as climate change threatened mass starvation and flooding. As [PAWN_pronoun] grew up the situation worsened - billions died and peaceful states descended into anarchy. [PAWN_nameDef] and [PAWN_possessive] parents did whatever they had to to survive.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Apprentice oracle{{br}}(Oracle)&lt;br /&gt;
| [PAWN_nameDef] was chosen at an early age by the village elders to keep the sacred rituals of the Oracle.&lt;br /&gt;
&lt;br /&gt;
An irrepressibly curious child, [PAWN_nameDef] caused a religious crisis for [PAWN_possessive] tribe when [PAWN_pronoun] accidentally flipped a switch to open the &amp;quot;tombs&amp;quot; of the Gods - cryptosleep caskets inhabited by some very confused ancestors.  &lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Apprentice smith{{br}}(Apprentice)&lt;br /&gt;
| [PAWN_nameDef] grew up helping in his father's smithy.&lt;br /&gt;
&lt;br /&gt;
They were some of the last smiths on the planet that to use traditional smithing methods. They even collect some materials themselves.&lt;br /&gt;
&lt;br /&gt;
Sometimes, after work, [PAWN_nameDef] would practice using the swords [PAWN_pronoun] forged.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artful dodger{{br}}(Dodger)&lt;br /&gt;
| Robin grew up on one of the urbworlds and had to fend for himself all his life. He never trusted anyone, relying on his persuasiveness and cunning to survive.&lt;br /&gt;
&lt;br /&gt;
He soon became skilled with firearms and knives as well as words.&lt;br /&gt;
| Shooting: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}Crafting{{br}}Cooking{{br}}Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artisan farmer{{br}}(Farmer)&lt;br /&gt;
| [PAWN_nameDef] grew up on a [PAWN_possessive] family's glitterworld farm. They were one of the last farms on the planet that preferred traditional farming methods to glitterworld technology.&lt;br /&gt;
| Plants: {{+|7}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artistic weirdo{{br}}(Weirdo)&lt;br /&gt;
| [PAWN_nameDef] grew up in a house near a bustling midworld metropolis.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was talented at art and creative work, but often acted strangely, and thus had few friends.&lt;br /&gt;
| Cooking: {{+|1}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aspergers rebel{{br}}(Rebel)&lt;br /&gt;
| [PAWN_nameDef] grew up as a rebel on an formerly-advanced rimworld devastated by war.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] Aspergers syndrome meant he struggled with social situations and was incapable of caring, but [PAWN_pronoun] learned hard skills like research and shooting very quickly.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&lt;br /&gt;
| Caring{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aspiring engineer{{br}}(Tinkerer)&lt;br /&gt;
| [PAWN_nameDef] had a fascination with gadgets and gizmos. [PAWN_pronoun] took apart and put together almost anything [PAWN_pronoun] could find.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] got used to repairing toys brought to [PAWN_objective] by other children, and even fixed a few devices from [PAWN_possessive] elders.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aspiring physicist{{br}}(Student)&lt;br /&gt;
| The daughter of an engineer and doctor, [PAWN_nameDef]'s early life was intellectually rich. After visiting a physics lab, she decided she wanted to be a quantum physicist.&lt;br /&gt;
&lt;br /&gt;
Bitten by a camel, kicked off a horse, and chased by dogs, [PAWN_nameDef] developed a fear of animals.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}Animals{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aspiring pop idol{{br}}(Pop idol)&lt;br /&gt;
| Min was being trained in song and dance to become the next big pop idol. She grew up being taken care of by company handlers.&lt;br /&gt;
&lt;br /&gt;
She never knew manual labor, but learned a lot about music and social etiquette.&lt;br /&gt;
| Shooting: {{--|4}}&amp;lt;/br&amp;gt;Melee: {{--|4}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&lt;br /&gt;
| ManualDumb{{br}}Cleaning{{br}}Hauling{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Athlete{{br}}(Athlete)&lt;br /&gt;
| [PAWN_nameDef] was professional athlete at early age. Thanks to her skills, she was able to leave her homeworld and enroll in a glitterworld university of science and technology.&lt;br /&gt;
&lt;br /&gt;
Because of her demanding schedule and introverted nature, she became socially inept.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Awkward nerd{{br}}(Nerd)&lt;br /&gt;
| Always fascinated by machines, Dave spent his time studying robotics and holography. He preferred the company of his scientific creations to that of other people.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blackjack player{{br}}(Gambler)&lt;br /&gt;
| The only useful skill [PAWN_nameDef] learned from his tough military school was card counting. He amassed many enemies by cheating at casinos, becoming ever more edgy and violent as the threat of retaliation grew.&lt;br /&gt;
&lt;br /&gt;
When he was finally caught, they burned half his skin off. He'll never be able to face fire or violence again.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|4}}&lt;br /&gt;
| Violent{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blacksmith's son{{br}}(Blacksmith)&lt;br /&gt;
| [PAWN_nameDef]'s father owned the blacksmith shop in an run-down old city district. [PAWN_nameDef] would help his father whenever he could.&lt;br /&gt;
&lt;br /&gt;
Later, [PAWN_possessive] father took him as a blacksmith's apprentice and raised him as a man. [PAWN_nameDef] also to on shooting as a hobby.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blessed child{{br}}(Blessed)&lt;br /&gt;
| [PAWN_nameDef] was born under auspicious circumstances to a midworld spiritual group and held in reverence throughout [PAWN_possessive] childhood.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned to take care of the poor and give succor to the faithful from an early age.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bodyguard trainee{{br}}(Bodyguard)&lt;br /&gt;
| [PAWN_nameDef] was born into a famously skilled family of bodyguards. [PAWN_possessive] mothers Elena and Victoria forced [PAWN_objective] into many dangerous situations, training [PAWN_objective] to put [PAWN_possessive] client's well-being over [PAWN_possessive] own.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] was taught about many herbs and natural poisons to help [PAWN_objective] prevent clients from being poisoned.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bone collector{{br}}(Pupil)&lt;br /&gt;
| Born to a family of fortune hunters, [PAWN_nameDef] always had a passion for ancient history.&lt;br /&gt;
&lt;br /&gt;
Though never a tough or social boy, [PAWN_pronoun] loved to dig through history books as well as dirt piles.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{--|3}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bookworm{{br}}(Bookworm)&lt;br /&gt;
| [PAWN_nameDef] spent his youth in the library, reading every book he could about the technical marvels of space travel, the engineering ingenuity of the space-faring pioneers, and the horrible yet fascinating tales of the mechanoid races. He vowed that one day, he would see these things for himself.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Boy scout{{br}}(Scout)&lt;br /&gt;
| [PAWN_nameDef] was in a boy scout troop on a midworld.&lt;br /&gt;
&lt;br /&gt;
He learned many survival skills including how to thrive in the outdoors and how to tend to basic wounds.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Boy soldier{{br}}(Soldier)&lt;br /&gt;
| War may never change - but the cast of characters does.&lt;br /&gt;
&lt;br /&gt;
Born on a violent urbworld, [PAWN_nameDef] was trained from a young age to fight the wars of others, and became rather good at it. &lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Brothel gofer{{br}}(Gofer)&lt;br /&gt;
| Born on a steam-powered midworld wracked by a century of economic crises, [PAWN_nameDef] went to work at a young age. Scrounging, shoe-polishing, sewing - he did it all. But [PAWN_pronoun] was most known as a brothel gofer, delivering all manner of aphrodisiacs and chemicals to the girls' rooms.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Brutal thief{{br}}(Thief)&lt;br /&gt;
| Growing up in a gang, [PAWN_nameDef] learned the brutality of the streets.&lt;br /&gt;
&lt;br /&gt;
Knowing that showing weakness could be fatal, he closed himself of to others.&lt;br /&gt;
| Plants: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bunker kid{{br}}(Bunker kid)&lt;br /&gt;
| Ricardo grew up in an underground shelter, waiting for radioactive fallout to subside. His rich family had gained access to a luxury bunker city, while billions died on the surface.&lt;br /&gt;
&lt;br /&gt;
Determined to one day seek revenge against the hated enemy, Ricardo spent most of his time practicing shooting in his private training facility.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Artistic{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cadet{{br}}(Cadet)&lt;br /&gt;
| Born on the planet New China, [PAWN_nameDef]'s father was a police chief and kept extremely strict watch over his son.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] had to do military-style drill exercises every day and keep his room spotlessly clean, always ready for inspection. [PAWN_pronoun] came to abhor violence.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caravan child{{br}}(Child)&lt;br /&gt;
| [PAWN_nameDef] was born on a urbworld merchant ship to an entrepreneurial mother and an absent father. Born male, she disliked boy stuff, and got into her mother’s things all the time.&lt;br /&gt;
&lt;br /&gt;
Eventually, she traveled with her mother to a glitterworld and spent her savings on a body she was happy with.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caravan traveler{{br}}(Traveler)&lt;br /&gt;
| Born to a family of traveling merchants, [PAWN_nameDef] was mentored by [PAWN_possessive] father in the ways of being a trader. [PAWN_pronoun] was often tasked with caring for the pack animals. Due to [PAWN_possessive] nomadic lifestyle, [PAWN_pronoun] hunted and bartered for [PAWN_possessive] food.&lt;br /&gt;
| Plants: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cat herder{{br}}(Herder)&lt;br /&gt;
| [PAWN_nameDef] helped out in his father's cat breeding business, socializing, herding, and feeding hundreds of cats.&lt;br /&gt;
&lt;br /&gt;
When he refused to clean up after the cats, [PAWN_pronoun] was transferred to the breeding science division.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&lt;br /&gt;
| Cleaning{{br}}Hauling{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cave child{{br}}(Cave kid)&lt;br /&gt;
| [PAWN_nameDef] grew up in a cave on an tundra planet, and was adopted by a traveling group of entertainers known only as the Wizards. Once a starfaring crew, the Wizards told [PAWN_objective] wondrous stories about the universe.&lt;br /&gt;
&lt;br /&gt;
One day, the Wizards did not return from scavenging. After years of waiting, [PAWN_nameDef] set off into space to find them.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caveworld tender{{br}}(Cave kid)&lt;br /&gt;
| [PAWN_nameDef] grew up in cave complex deep beneath the surface of an inhospitable world. [PAWN_pronoun] worked with the other children tending the tribe’s fungus crops.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caveworld tunneler{{br}}(Tunneler)&lt;br /&gt;
| [PAWN_nameDef] worked as a digger in the massive underground cave complex.{{br}}[PAWN_pronoun] knows rock so well that [PAWN_pronoun] can almost navigate caves by smell.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Mining: {{+|6}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&lt;br /&gt;
| Intellectual{{br}}Crafting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Chess master{{br}}(Chesshead)&lt;br /&gt;
| [PAWN_nameDef] loved to play chess. [PAWN_pronoun] even earned the nickname Bishop for some of [PAWN_possessive] craftier moves. &lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] never got into trouble - mostly because he was good at not getting caught. &lt;br /&gt;
&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child of drifters{{br}}(Drifter)&lt;br /&gt;
| Ever since [PAWN_pronoun] was very small, [PAWN_nameDef] had never known a home beyond [PAWN_possessive] parent's ship. They were a family of nomads whose meandering provided a constant change of scenery. [PAWN_possessive] life was often perilous but never dull, and [PAWN_pronoun] inherited [PAWN_possessive] parents' wanderlust at a young age.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|6}}&lt;br /&gt;
| Firefighting{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child of glass{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef] was raised underground on a &amp;quot;marble&amp;quot; planet - a wasteland of radioactive asphalt and toxic fallout.&lt;br /&gt;
&lt;br /&gt;
To survive on a planet devoid of life, [PAWN_pronoun] had to learn how to farm underground and how to fight without wasting bullets.&lt;br /&gt;
| Plants: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| Social{{br}}Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child prodigy{{br}}(Prodigy)&lt;br /&gt;
| After graduating college at age twelve, Jered devoted his life to becoming immortal.  However his research crossed the line when he tried to modify his body using gene therapy and mechanical augmentation.  He was arrested and condemned to a prison planet.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child researcher{{br}}(Researcher)&lt;br /&gt;
| A frightfully intelligent child, [PAWN_nameDef] was kidnapped by a glitterworld corporation and forced to research technologies for weaponizing anti-matter.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] vowed never to invent anything again.&lt;br /&gt;
| Intellectual: {{+|7}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&lt;br /&gt;
| Crafting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child scientist{{br}}(Scientist)&lt;br /&gt;
| After graduating college very young, [PAWN_nameDef] devoted [PAWN_possessive] life to becoming immortal. He was arrested for trying to genetically modify himself.&lt;br /&gt;
&lt;br /&gt;
The authorities released [PAWN_objective] on the condition that he would work in a government lab on spacecraft technology. He was permitted to continue his personal research in his free time.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child slave{{br}}(Slave)&lt;br /&gt;
| Graham was born to a poor family on a rimworld. His father sold him into slavery at a young age and he was traded many times. A tycoon bought him as part of a child labor force and sent down into mines to look after machines and to work alongside them.&lt;br /&gt;
&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child spy {{br}}(Spy )&lt;br /&gt;
| Children are often presumed innocent, and so make ideal spies. [PAWN_nameDef] was trained in the arts of infiltration and information-gathering when [PAWN_pronoun] was very young.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] spent years behind enemy lines, gathering intel in a brutal planetary war. During this time, [PAWN_pronoun] had limited opportunity for education. &lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child spy{{br}}(Spy)&lt;br /&gt;
| Children are often presumed innocent, and can be ideal as spies. [PAWN_nameDef] was trained in the art of infiltration and information-gathering when [PAWN_pronoun] was just nine years old.{{br}}[PAWN_possessive] years behind enemy lines and the war-torn nature of [PAWN_possessive] homeworld meant [PAWN_pronoun] had limited opportunity for education.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Intellectual: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child star{{br}}(Star)&lt;br /&gt;
| [PAWN_nameDef] was well-known throughout [PAWN_possessive] homeworld as a child actor in films and TV shows. [PAWN_possessive] fame put [PAWN_objective] in contact with many different kinds of people, but also tended to get in the way of [PAWN_possessive] education.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child-knave{{br}}(Knave)&lt;br /&gt;
| [PAWN_nameDef] was a child-knave of King Loteric. [PAWN_pronoun] enjoyed the training with wooden sticks and engaging others in close combat. [PAWN_pronoun] adapted quickly to the heat of battle and was good at spreading fire.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] served his lord well, until the king died in an unfortunate accident.&lt;br /&gt;
| Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Circus performer{{br}}(Performer)&lt;br /&gt;
| Growing up in the circus, [PAWN_nameDef] learned a lot of interesting things. More interesting then the balls he juggled were the pockets he picked between shows.&lt;br /&gt;
&lt;br /&gt;
A mistake with some firesticks made him develop a deathly fear of fire.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Class clown{{br}}(Clowny kid)&lt;br /&gt;
| In the ultra-competitive environs of his glitterworld school, [PAWN_nameDef] always offered to play the class clown to diffuse tension.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] developed a sense of social desperation from this, as well as an appreciation for the artistic side of comedy.&lt;br /&gt;
| Social: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Clone-farmed{{br}}(Disposable)&lt;br /&gt;
| Clone children are seeded into organic-rich wombvats and rapidly grown in a simmed universe. They're harvested later, sometimes for food, sometimes for organs, sometimes for workers - but they're always called 'Disposable'. &lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Coliseum cleaner{{br}}(Cleaner)&lt;br /&gt;
| During the 'Inner Destrian War' fallout, [PAWN_possessive] parents were captured and [PAWN_pronoun] was born into a life of slavery. Forced to clean coliseums after bloody battles for money. Watching, waiting, and learning. Coliseums were the only thing [PAWN_pronoun] ever knew. One night while cleaning the coliseum, [PAWN_possessive] family was murdered.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Caring{{br}}Firefighting{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Colony kid{{br}}(Colony kid)&lt;br /&gt;
| [PAWN_nameDef] was born the child of two doctors in a small colony. Because of [PAWN_possessive] parents, [PAWN_pronoun] was always interested in science and medicine.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] never really got along with other children, and as a result became withdrawn and unsociable.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Coma child{{br}}(Coma child)&lt;br /&gt;
| A childhood accident put [PAWN_nameDef] into a coma. [PAWN_pronoun] didn’t wake up until [PAWN_pronoun] was in [PAWN_possessive] late teens. [PAWN_possessive] body never recovered from the years of inactivity, but people tend to take pity on [PAWN_objective] when they hear [PAWN_possessive] story.&lt;br /&gt;
| Social: {{+|4}}&amp;lt;/br&amp;gt;Construction: {{--|2}}&amp;lt;/br&amp;gt;Mining: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Commoner heir{{br}}(Heir)&lt;br /&gt;
| [PAWN_nameDef] was a street urchin on a feudal steamworld.&lt;br /&gt;
&lt;br /&gt;
After [PAWN_pronoun] tried to steal food from the palace, the emperor, desperate to secure an heir, took [PAWN_objective] in and groomed [PAWN_objective] to be next in line for the throne.&lt;br /&gt;
| Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Computer geek{{br}}(Geek)&lt;br /&gt;
| [PAWN_nameDef] spent most of [PAWN_possessive] childhood on [PAWN_possessive] computer, typing away, never knowing when to get up and eat.&lt;br /&gt;
&lt;br /&gt;
He had a very narrow interest: hacking cryptobiotic safety protocols.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Animals: {{+|2}}&lt;br /&gt;
| Social{{br}}Cooking{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Construction grunt{{br}}(Builder)&lt;br /&gt;
| Growing up in his father's lab, Jackson was given the life of an intellectual elite. He got everything he desired, and price was never an object.&lt;br /&gt;
&lt;br /&gt;
However Jackson did not partake in the luxury given to him. Instead, he pursued more physical, and - in his father's eyes - lower-class jobs.  &lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Convent child{{br}}(Illicit)&lt;br /&gt;
| The child of an illicit affair, [PAWN_nameDef] was bought up by nuns in a medieval convent. [PAWN_pronoun] learned the value of hard work and submission, but was taught that technology is heretical.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&lt;br /&gt;
| Intellectual{{br}}Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Core dilettante{{br}}(Dilettante)&lt;br /&gt;
| Candice spent her formative years on a glitterworld in the core region, where she and her friends pursued lives of idle pleasure.&lt;br /&gt;
&lt;br /&gt;
As she grew up, she began to find the life of ease unfulfilling. She decided to look for a more challenging path.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Core world student{{br}}(Student)&lt;br /&gt;
| Born a male named Alex, Alyssa didn't fit in well with the other boys. When very young, she preferred creative pursuits, such as crafting jewelry, over sports. She felt she had the wrong body. Luckily, her family and friends supported her sex reassignment; as a teen, she underwent surgery to become a female.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{--|1}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Cooking{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corp student{{br}}(Student)&lt;br /&gt;
| De Dion was bred to become an executive officer for the large space trading corporation that owned his home planet. His family had been working for that corporation for seven generations.&lt;br /&gt;
&lt;br /&gt;
At age six, [PAWN_pronoun] started to study at the corporate academy, where he learned to become a loyal follower and a ruthless executive.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corp-bred student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] was bred to become an executive for the space exploration corporation that owned his home planet. [PAWN_possessive] family had been working for that corporation for four generations.&lt;br /&gt;
&lt;br /&gt;
At age five, [PAWN_pronoun] enrolled at the corporate academy where he learned loyalty and ruthlessness. [PAWN_nameDef] excelled in finding diplomatic solutions where others would need violence.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|7}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Violent{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corporate slave{{br}}(Soldier)&lt;br /&gt;
| [PAWN_nameDef] grew up in a colony owned by a large glitterworld corporation. All children had virtual reality devices attached by force, and were raised in a brutal digital world.&lt;br /&gt;
&lt;br /&gt;
Constantly forced to fight others for the entertainment of the wealthy, gunplay and tactics became the center of [PAWN_nameDef]'s universe.&lt;br /&gt;
| Plants: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Animals: {{--|2}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Country child{{br}}(Hick kid)&lt;br /&gt;
| [PAWN_nameDef] was raised up to fear God and love [PAWN_possessive] country. [PAWN_pronoun] was a genuine backwoods kid. [PAWN_pronoun] always worked hard to earn respect rather than demanding it.&lt;br /&gt;
| Cooking: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cow farmer{{br}}(Farmer)&lt;br /&gt;
| [PAWN_nameDef] grew up on a rim world, under the tyranny of [PAWN_possessive] father, who forced [PAWN_objective] to work every day on the farm. [PAWN_pronoun] dreamed of escaping [PAWN_possessive] father and exploring the universe.&lt;br /&gt;
&lt;br /&gt;
One day, when the trade ship was overhead, [PAWN_pronoun] stowed away among the goods in the launch pods, and escaped into space.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Animals: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Crime boss' child{{br}}(Crime kid)&lt;br /&gt;
| [PAWN_nameDef] was adopted child of a notorious crime boss. [PAWN_pronoun] was taught all facets of the family business, from smuggling to inventive ways of killing.&lt;br /&gt;
&lt;br /&gt;
When the family was attacked, [PAWN_possessive] father ordered [PAWN_objective] to hide in a secret longsleep crypt.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cult child{{br}}(Cult kid)&lt;br /&gt;
| [PAWN_nameDef] was born into a powerful cult which shunned advanced technology and believed that all illness could be cured by cleansing the soul through sacred art.{{br}}After [PAWN_possessive] first glimpse of the outside world, [PAWN_pronoun] decided to run away.&lt;br /&gt;
| Medicine: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|5}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Data decoder{{br}}(Decoder)&lt;br /&gt;
| Born on a glitterworld, [PAWN_nameDef] was very interested  in the process of documenting information, and quickly became senior glitterpedia recorder.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was effective at self-study, but [PAWN_pronoun] was lacked in social experiences.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Dedicated student{{br}}(Student)&lt;br /&gt;
| The child of a wealthy manufacturer, [PAWN_nameDef] was pampered from an early age. [PAWN_pronoun] developed an affinity for reading and art, and a distaste for menial chores.&lt;br /&gt;
&lt;br /&gt;
A revolution brought his father's businesses under state control. Penniless, [PAWN_nameDef] worked hard to complete [PAWN_possessive] education.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Animals{{br}}Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Desert rat{{br}}(Desert rat)&lt;br /&gt;
| [PAWN_nameDef] was born to a tribe of desert ascetics who wandered the endless wastes.&lt;br /&gt;
&lt;br /&gt;
They sought a mythical substance they believed could liberate them from ignorance through psychedelic revelation - and usher in a new period of interstellar peace.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Diplomat's child{{br}}(Diplomat)&lt;br /&gt;
| [PAWN_nameDef] was born in diplomatic family.&lt;br /&gt;
&lt;br /&gt;
Travelling often, [PAWN_pronoun] was home-schooled and saw the world mostly through a computer.&lt;br /&gt;
| Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Artistic: {{+|1}}&lt;br /&gt;
| Violent{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Disaster survivor{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef]'s planet collided with a small moon. Everything he knew as home was destroyed, and his entire family died. [PAWN_pronoun] was left in the ruins to fend for himself.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Disaster survivor{{br}}(Survivor)&lt;br /&gt;
| Steven was uprooted when marauders attacked his family farm, destroying machinery and killing farmhands and beasts alike.&lt;br /&gt;
&lt;br /&gt;
After the death of all he knew, he was left in the ruins to fend for himself.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Discarded youth{{br}}(Discarded)&lt;br /&gt;
| [PAWN_nameDef] grew up isolated on a trash planet. A dumping ground for surrounding glitterworlds, it was a harsh home. As a baby, [PAWN_pronoun] sucked on the tap of a discarded nutrient paste dispenser for comfort.&lt;br /&gt;
&lt;br /&gt;
In these desperate circumstances, against all odds, [PAWN_pronoun] survived - and thrived.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Artistic{{br}}Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Disciplined farmer{{br}}(Farmer)&lt;br /&gt;
| Drew was the younger of two sons on the family farm, a frontier plot that struggled to turn a profit. Drew's father was a strict disciplinarian, constantly at his sons to work harder and keep quiet. Drew burnt his hand making breakfast once and swore to cook only when his life was in danger.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|1}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&lt;br /&gt;
| Social{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Displaced noble{{br}}(Noble)&lt;br /&gt;
| Born on an urbworld to the ruler of three megacities, [PAWN_nameDef]’s prospects looked good - until a violent insurrection overthrew [PAWN_possessive] family. Exile introduced [PAWN_nameDef] to hard work and combat, but some high-born squeamishness remains.&lt;br /&gt;
| Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Dreaded baby{{br}}(Baby dude)&lt;br /&gt;
| [PAWN_nameDef] was found as a baby in a crashed spacecraft. According to the ship's data records, [PAWN_pronoun] invented the nuclear device that powered his ship. Apparently, he also invented the sky and the hamburger, and is said to have fathered a race of tasty golden kittens.&lt;br /&gt;
| Shooting: {{+|1}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Dreamer{{br}}(Dreamer)&lt;br /&gt;
| [PAWN_nameDef] was an expressive child. [PAWN_pronoun] sang often, and made friends very easily, be they young or old, male or female.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] hated fighting, but when made angry, [PAWN_pronoun] could be dangerous. [PAWN_possessive] temper was quick.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Drudge{{br}}(Drudge)&lt;br /&gt;
| [PAWN_nameDef] was never sure what [PAWN_pronoun] wanted to do with [PAWN_possessive] life. [PAWN_pronoun] spent most of [PAWN_possessive] time doing low-wage jobs and wondering what [PAWN_possessive] future would be like.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] entertained himself with space sims and survival games, dreaming of one day being somewhere more interesting.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Drug mule{{br}}(Mule)&lt;br /&gt;
| Raised in an orphanage, [PAWN_nameDef] turned towards the gang life at age ten.&lt;br /&gt;
&lt;br /&gt;
He was exploited by the local gang as a drug mule to traffic &amp;quot;substance F&amp;quot; across rival gang territory. He took a bullet or two.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| Intellectual{{br}}Caring{{br}}Social{{br}}Artistic{{br}}Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Dusty farm hand{{br}}(Farm hand)&lt;br /&gt;
| From the time [PAWN_nameDef] could walk, [PAWN_pronoun] helped take care of the animals and crops that [PAWN_possessive] people tended in their arid homeland.&lt;br /&gt;
&lt;br /&gt;
The work toughened [PAWN_objective], but left little time for intellectual activities.&lt;br /&gt;
 &lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&amp;lt;/br&amp;gt;Animals: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Earth colonist{{br}}(Colonist)&lt;br /&gt;
| [PAWN_nameDef] was born on Earth. As a child, [PAWN_pronoun] was launched into space as part of an interstellar colonization program.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Empath{{br}}(Empath)&lt;br /&gt;
| [PAWN_nameDef] was an incredibly empathetic child, so much that [PAWN_pronoun] was totally overwhelmed by simple social interactions. Once, [PAWN_pronoun] stepped on a bug and felt so guilty [PAWN_pronoun] cried for an hour.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] did try to use a gun one time, but it went very poorly, as the loud noise made [PAWN_objective] flinch uncontrollably.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Violent{{br}}Social{{br}}Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Energetic pop idol{{br}}(Pop idol)&lt;br /&gt;
| Priscilla grew up on a glitterworld, training in rapier arts and singing. She spent several years as an energetic teen pop idol.&lt;br /&gt;
&lt;br /&gt;
However, she decided that the music and modeling industries were not paying her enough attention, so she left.&lt;br /&gt;
| Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Exiled prince{{br}}(Prince)&lt;br /&gt;
| A member of a royal family, [PAWN_nameDef] was exiled for shaming [PAWN_possessive] family.&lt;br /&gt;
&lt;br /&gt;
Living in a foreign land, mostly alone, [PAWN_pronoun] spent most of [PAWN_possessive] time making huts and houses to live in. [PAWN_pronoun] found little time in an average day for enjoyment, and lost all his friends and family.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|1}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Factory worker{{br}}(Worker)&lt;br /&gt;
| Felix grew up in a large factory city on an industrial world.&lt;br /&gt;
&lt;br /&gt;
Since poverty was rampant and food scarce, he worked for whatever wages he could get. This wasn't an easy life, but Felix never shied away from a hard day's work.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Fallen prodigy{{br}}(Prodigy)&lt;br /&gt;
| [PAWN_nameDef] was born on a glitterworld falling into chaos. [PAWN_possessive] father was killed in action.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] struggled for a scholarship at Utmaior Academy and had to prove his right to be there. A child genius, [PAWN_pronoun] was bullied as a charity case and couldn't make friends with the other kids.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farm boy{{br}}(Farm boy)&lt;br /&gt;
| John worked on his family's farm, looking after the animals and treating them when they were injured. Preferring hands-on tasks and the outdoors, he avoided softer jobs that might have kept him cooped up inside.&lt;br /&gt;
&lt;br /&gt;
He enjoyed this lonely work, and tended to stay out of people's way and do his own thing.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farm hand{{br}}(Farm hand)&lt;br /&gt;
| [PAWN_nameDef] was born on a farm on a smaller colony world.&lt;br /&gt;
&lt;br /&gt;
Everything was taken care of by the few members of the farm, including [PAWN_nameDef]. This helped [PAWN_objective] build independence, spirit, and a well-rounded character.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farm kid{{br}}(Farm kid)&lt;br /&gt;
| [PAWN_nameDef] grew up on his family's beef farm. He enjoyed working the fields and taking care of the animals.&lt;br /&gt;
| Plants: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farm mechanic{{br}}(Mechanic)&lt;br /&gt;
| Growing up on a farming planet, [PAWN_nameDef] spent [PAWN_possessive] time learning about the automated machinery that grew and harvested the multitude of crops.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Plants: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farmer boy{{br}}(Farmer)&lt;br /&gt;
| Benjamin's parents died in a fire when he was seven. He grew up on his uncle's farm, plowing fields and doing manual labor.&lt;br /&gt;
&lt;br /&gt;
He could not bear answering questions about his parents, so he replaced social contact with hard work.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Plants: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}Social{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farmer's daughter{{br}}(Farm girl)&lt;br /&gt;
| [PAWN_nameDef] grew up on [PAWN_possessive] parents' vineyard. [PAWN_pronoun] spent [PAWN_possessive] youth exploring the land and making friends with various bugs and insects.&lt;br /&gt;
&lt;br /&gt;
Having heard stories about all the fascinating things out there in the universe, [PAWN_pronoun] always dreamed of venturing out to see it for [PAWN_objective]self.&lt;br /&gt;
| Social: {{--|1}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farmer's son{{br}}(Farmer)&lt;br /&gt;
| Ade spent much of his childhood learning biome farming. In his biome they kept animals to investigate which would cope best in the alien environment.&lt;br /&gt;
&lt;br /&gt;
Due to this, the travel restrictions and oxygen rationing system, he rarely got to meet anyone from outside his family.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{+|1}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Feral child{{br}}(Feral)&lt;br /&gt;
| Abandoned on an animal planet as a small child with nought but a blanket with a name embroidered on it, Felix made himself one with the wilderness.&lt;br /&gt;
&lt;br /&gt;
When he was 13, he encountered a team of mineral surveyors, who &amp;quot;offered&amp;quot; him passage off of the planet.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Intellectual{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Feral child{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef] and his family lived a hard but prosperous lives along with their fellow colonists on a distant rimworld.&lt;br /&gt;
&lt;br /&gt;
One day a group of mechanoids attacked, killing everyone aside from Robert. He then lived alone in the desert until a group of raiders found him.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Feudal farm boy{{br}}(Slave)&lt;br /&gt;
| [PAWN_nameDef] was the son of a medieval farmer, and was expected to follow in his footsteps. He was brought up as a kind, well trained farm boy.&lt;br /&gt;
&lt;br /&gt;
He lived in an unusual feudal kingdom which co-existed with a midworld society which was itself well-known for genetic manipulation.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Feudal lordling{{br}}(Lordling)&lt;br /&gt;
| [PAWN_nameDef] grew up on a feudal world that was part of a multi-planet empire. As the son of a high lord, [PAWN_pronoun] enjoyed many privileges.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned to maneuver in the both the political landscape and in close quarters combat.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Fire-scarred child{{br}}(Scarred)&lt;br /&gt;
| Duster was an active child who lived an uneventful childhood until he fell into a fire and suffered horrific burns to his hands and arms. Although the scars have faded, he can't bear to be in close proximity to fire.&lt;br /&gt;
&lt;br /&gt;
| Mining: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&lt;br /&gt;
| Cooking{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Forest child{{br}}(Forest kid)&lt;br /&gt;
| When [PAWN_pronoun] was a baby, [PAWN_nameDef]'s mother went insane and left [PAWN_objective] in the woods.&lt;br /&gt;
&lt;br /&gt;
Raised by wild people, [PAWN_nameDef] was known for both loving and killing animals.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Foundry apprentice{{br}}(Foundryman)&lt;br /&gt;
| [PAWN_nameDef] grew up as an apprentice in the foundries of an industrial world. This experience gave [PAWN_objective] metalworking skills and strong muscles, but stunted [PAWN_possessive] artistic development.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Freethinker{{br}}(Thinker)&lt;br /&gt;
| [PAWN_nameDef] grew up on a toxic world with tyrannical leaders. While the rest of the population was high on the planet's narcotic exports, [PAWN_pronoun] joined a rebel militia.&lt;br /&gt;
&lt;br /&gt;
After a risky operation against the regime failed, [PAWN_pronoun] fled the planet, staying alive by threatening mutual annihilation with a planetcracker antimatter bomb.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Frightened child{{br}}(Scared)&lt;br /&gt;
| [PAWN_nameDef] grew up with a laundry list of phobias and neuroses. [PAWN_pronoun] feared, among other things, doctors and foodborne pathogens.{{br}}As a result, [PAWN_pronoun] learned to cook and care for [PAWN_objective]self, but many of [PAWN_possessive] fears dog [PAWN_objective] in adulthood.&lt;br /&gt;
| Medicine: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Frontier marshal{{br}}(Marshal)&lt;br /&gt;
| Henry inherited a sense of duty from his father, and began a law enforcement career on his frontier homeworld.&lt;br /&gt;
&lt;br /&gt;
He tried to uphold the law with honor, but the corruption and greed of local government officials often discouraged him.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Galactic page{{br}}(Page)&lt;br /&gt;
| [PAWN_nameDef] served the high admiral of a space fleet. [PAWN_pronoun] learned the ways of court, including etiquette and speechcraft.&lt;br /&gt;
&lt;br /&gt;
In his feudal society, it was considered a great honor to serve a man of such prestige.&lt;br /&gt;
| Social: {{+|6}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}ManualSkilled{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Game fanatic{{br}}(Gamer)&lt;br /&gt;
| [PAWN_nameDef] was a fanatical gamer who learned to survive in virtual reality games.&lt;br /&gt;
&lt;br /&gt;
Once, while attempting to prove [PAWN_possessive] skills in the real world, [PAWN_pronoun] was abducted by a criminal scientist and experimented on. [PAWN_pronoun] escaped, but the experience stayed with him.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gang member{{br}}(Gang kid)&lt;br /&gt;
| [PAWN_nameDef] grew up without parents. [PAWN_possessive] whole life was spent alone, fighting for survival on the streets.&lt;br /&gt;
&lt;br /&gt;
No matter how hard it became to survive, he never gave up.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gang member{{br}}(Ganger)&lt;br /&gt;
| [PAWN_nameDef] grew up homeless on an urbworld. [PAWN_pronoun] was forced to fight and struggle for everything, making [PAWN_objective] hard and ruthless long before adulthood.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] would have stayed in those streets, had [PAWN_pronoun] not been injured in a shootout and had his body confiscated for use by one of the worldwide city's ruling corporations. &lt;br /&gt;
| Plants: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&lt;br /&gt;
| Intellectual{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Glitterworld kid{{br}}(Glit kid)&lt;br /&gt;
| The son of a genetically-engineered &amp;quot;perfect mate&amp;quot; on a glitterworld, Chaz was much more shy, withdrawn and nervous than his parents. [PAWN_pronoun] kept mostly to himself, studying science and medicine and taking on gardening as a hobby. &lt;br /&gt;
&lt;br /&gt;
In [PAWN_possessive] teens, [PAWN_pronoun] ran away from home, seeking a quieter life.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Glitterworld nerd{{br}}(Nerd)&lt;br /&gt;
| [PAWN_nameDef] loved technology from the day [PAWN_pronoun] was born. [PAWN_pronoun] had a mechanoid companion which [PAWN_pronoun] tried to modify when [PAWN_pronoun] was 10.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] obsession with technology meant that [PAWN_pronoun] never appreciated arts or culture.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Glitterworld royal{{br}}(Royalty)&lt;br /&gt;
| [PAWN_nameDef] grew up in a glitterworld royal household. She was groomed from a young age to marry into another planet's royal family.&lt;br /&gt;
&lt;br /&gt;
Unfortunately, her crooked teeth made her undesirable to suitors, so she became bitter and resentful.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! G-nome sculptor{{br}}(Sculptor)&lt;br /&gt;
| [PAWN_nameDef] was engineered in a lab as part of the G-nome Project. He was implanted at birth with encyclopedic knowledge of all aspects of xenobiology.&lt;br /&gt;
&lt;br /&gt;
The G-nome scientists nicknamed him Gizmo and occupied him with sculpting. He developed a love of sculpting gnomes and gnome accessories.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gun kid{{br}}(Gun kid)&lt;br /&gt;
| Growing up in a urbworld, [PAWN_nameDef] never had it easy. Every day was a struggle and pollution, hunger, and gangs of older kids.&lt;br /&gt;
&lt;br /&gt;
In the little space he had to himself, he studied his passion - guns, combat tactics, and war history.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gymnast{{br}}(Gymnast)&lt;br /&gt;
| [PAWN_nameDef] was a professional gymnast at an early age. Thanks to her skills, she was able to leave her homeworld and enroll in a glitterworld university.&lt;br /&gt;
&lt;br /&gt;
Because of the lack of career opportunities in gymnastics, she left the university unemployed and carrying an enormous debt.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hacker kid{{br}}(Hacker)&lt;br /&gt;
| Born on a high-tech world, [PAWN_nameDef] learned hack computers at a young age. &lt;br /&gt;
&lt;br /&gt;
Spending many hours tinkering alone made [PAWN_objective] very good with machines, but very bad with humans.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hacker prodigy{{br}}(Hacker)&lt;br /&gt;
| Wedge was raised as the only child of wealthy surgeons. After being pressured into accepting a medical apprenticeship, he snapped. He seized his inheritance and went underground to learn how to exploit computer networks. He quickly became one of the most feared hackers on his home planet.&lt;br /&gt;
| Intellectual: {{+|7}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| ManualDumb{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Headjack addict{{br}}(Headjacker)&lt;br /&gt;
| Plugged in to the computer via head-jack for days at a time, [PAWN_nameDef] found [PAWN_pronoun] preferred the company of computers to that of people or pets.&lt;br /&gt;
| Plants: {{--|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&lt;br /&gt;
| Social{{br}}Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Help desk worker{{br}}(Help desk)&lt;br /&gt;
| Due to [PAWN_possessive] affinity for technology and desire to help others, [PAWN_nameDef] jumped at the chance to take a job at a help desk.&lt;br /&gt;
&lt;br /&gt;
Unfortunately, the job's soul-crushing after-effects lasted longer than [PAWN_possessive] enthusiasm.&lt;br /&gt;
| Intellectual: {{+|3}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hex-cell artist{{br}}(Artist)&lt;br /&gt;
| [PAWN_nameDef] crafted sculptures from spent hex-cells and traded them to a local museum for food.&lt;br /&gt;
&lt;br /&gt;
After [PAWN_possessive] popularity grew, [PAWN_pronoun] was approached by a pirate and abducted. The pirate kept [PAWN_objective] prisoner and forced [PAWN_objective] to create sculptures for sale.&lt;br /&gt;
| Artistic: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! High baroness{{br}}(Noble)&lt;br /&gt;
| [PAWN_nameDef] was born as low-ranking royalty in a large imperial family.&lt;br /&gt;
&lt;br /&gt;
She was placed In charge of running her home planet from an early age, and learned important political and cultural skills in that role.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|7}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hillbilly prodigy{{br}}(Hillbilly)&lt;br /&gt;
| Born on a cold hillbilly planet inhabited mainly by furred xenohumans, Benjamin grew up to the sound of bar fights and shootouts. Though his childhood was spent playing the banjo and working as a mechanic, his abnormal intelligence made him want something more; he entered medical school at a young age.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! History student{{br}}(Student)&lt;br /&gt;
| As a child, [PAWN_nameDef] spent learned many artistic forms including music and novel writing. As [PAWN_pronoun] grew older, [PAWN_pronoun] began to study legends from [PAWN_possessive] home world - legends of the lizard-like beings at the center of [PAWN_possessive] culture's folklore.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hive world child{{br}}(Hiver)&lt;br /&gt;
| [PAWN_nameDef] had an isolated upbringing in an urbworld hive city. His hatred of heights kept him indoors often, and made him an introverted child.&lt;br /&gt;
&lt;br /&gt;
When [PAWN_pronoun] did go out onto the catwalks of the city, [PAWN_pronoun] enjoyed playing war games, becoming proficient with various simulation weapons.&lt;br /&gt;
| Plants: {{+|1}}&amp;lt;/br&amp;gt;Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Hunter scavenger{{br}}(Scavenger)&lt;br /&gt;
| Born to a family of raiders in the mudlands of Vinna, [PAWN_nameDef] survived by scavenging food and resources from nearby settlements with [PAWN_possessive] gang. [PAWN_pronoun] was the most ferocious of the bunch.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Ice planet child{{br}}(Ice child)&lt;br /&gt;
| Growing up on the frozen wastes of an ocean moon, [PAWN_nameDef] only had animals and a few hard-bitten sailors as companions.&lt;br /&gt;
&lt;br /&gt;
The lack of social interaction made him develop a interest in engineering - but he never developed any great fondness for humans. &lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&lt;br /&gt;
| Caring{{br}}Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Iceworld survivor{{br}}(Iceborn)&lt;br /&gt;
| [PAWN_nameDef] was born on an iceworld. Survival depended on staying together and building with nothing.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] got used to the cold. [PAWN_pronoun] never got used to dealing with those strange green things called plants.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Idealistic cadet{{br}}(Cadet)&lt;br /&gt;
| Raised in the military traditions of his forefathers, [PAWN_nameDef] was taught from a young age that he would be a great leader and the hero of the Dichter family.&lt;br /&gt;
&lt;br /&gt;
He excelled at his studies and graduated from the academy with honors.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Imperial student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] studied on an imperial midworld where guns were banned and self-defense study was encouraged. The relative safety allowed [PAWN_objective] to focus on [PAWN_possessive] botanical research.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| Crafting{{br}}Firefighting{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Industrial orphan{{br}}(Orphan)&lt;br /&gt;
| [PAWN_nameDef] never knew [PAWN_possessive] parents. [PAWN_possessive] earliest memories were of drudgery in the mines and workhouses of [PAWN_possessive] industrial world.{{br}}Because of this, [PAWN_pronoun] never received a proper education.&lt;br /&gt;
| Crafting: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Indworld urchin{{br}}(Urchin)&lt;br /&gt;
| [PAWN_nameDef] grew up on the streets of a world in the early stages of its industrial revolution. [PAWN_pronoun] passed [PAWN_possessive] days stealing, begging and tinkering with discarded machine scraps, always on the lookout for a way to escape poverty. &lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Infantry{{br}}(Infantry)&lt;br /&gt;
| Lenka was raised on a world wracked by war.&lt;br /&gt;
&lt;br /&gt;
At an early age, she was shown how to use guns and cruelty to project her will. She later distinguished herself by committing atrocities with more enthusiasm than anyone else.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Joywire addict{{br}}(Addict)&lt;br /&gt;
| [PAWN_nameDef]'s wealthy parents provided everything [PAWN_pronoun] ever wanted. After discovering joywires, [PAWN_pronoun] became obsessed. Once [PAWN_possessive] parents realized what happened, they cut [PAWN_objective] off.&lt;br /&gt;
&lt;br /&gt;
Uncaring and often violent, [PAWN_pronoun] sought [PAWN_possessive] next joywire fix by any means possible.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|6}}&amp;lt;/br&amp;gt;Social: {{--|3}}&lt;br /&gt;
| Intellectual{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Jungle kid{{br}}(Jungle kid)&lt;br /&gt;
| [PAWN_nameDef] was abandoned as a newborn, and grew up among the animals of [PAWN_possessive] homeworld’s dense jungles.&lt;br /&gt;
&lt;br /&gt;
When [PAWN_pronoun] was a teenager, a traveling doctor found [PAWN_objective] injured near a road, hissing and meowing. He rescued [PAWN_objective] and took [PAWN_objective] on as an apprentice.&lt;br /&gt;
| Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Junkyard mechanic{{br}}(Mechanic)&lt;br /&gt;
| Left for dead at a young age, [PAWN_nameDef] was rescued by an old man who ran an urbworld junkyard. The old man forced [PAWN_nameDef] to do dangerous, demanding work. &lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] became very familiar with machines, but [PAWN_pronoun] grew up with almost no other experiences.&lt;br /&gt;
&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Kid scientist{{br}}(Scientist)&lt;br /&gt;
| Born into an influential family, [PAWN_nameDef] received the best education money could buy. Her intellect soon proved to be superior to many. However, her lack of empathy quickly put her at odds with her teachers and her parents.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| ManualDumb{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Killer{{br}}(Killer)&lt;br /&gt;
| [PAWN_nameDef] was a bloodlusting child. Villagers thought her the product of a snake demon and human coupling.&lt;br /&gt;
&lt;br /&gt;
After watching how her human father betrayed and murdered her mother, she longed to see how many more humans she could get to fall into her hands.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Lab-grown child{{br}}(Lab-grown)&lt;br /&gt;
| [PAWN_nameDef] was born in a laboratory as part of a altruistic but failed attempt to create a new class of human.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] childhood was filled with books and one-on-one tutoring. He was awkward, shy, and naive to the true nature of humanity.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Labor camp orphan{{br}}(Orphan)&lt;br /&gt;
| [PAWN_nameDef] lost her parents in an industrial accident and grew up in an orphans' labor camp. The camp overseers worked their charges mercilessly - but at least she was clothed and fed.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|4}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Logical child{{br}}(Logic kid)&lt;br /&gt;
| [PAWN_pronoun] preferred logical activities like computers and was completely useless at art.&lt;br /&gt;
&lt;br /&gt;
Being awkward in social situations, [PAWN_possessive] friends were few but close.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mad scientist{{br}}(Scientist)&lt;br /&gt;
| [PAWN_nameDef] grew up miserable on the plains of a neolithic planet. He found the strength to fight under the teachings of an old, broken scientist.&lt;br /&gt;
&lt;br /&gt;
He quickly learned to play with people's fears, and was nicknamed 'mad scientist'.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Marine cadet{{br}}(Cadet)&lt;br /&gt;
| [PAWN_nameDef] was in a planetary marine cadet program.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was kicked out for shooting an officer. It was never established whether this was an accident.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mechanoid hacker{{br}}(Mechacker)&lt;br /&gt;
| The only son of a well respected mechanoid inventor, [PAWN_nameDef] had access to the materials to subvert and modify [PAWN_possessive] father's creations.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] used drugs to increase [PAWN_possessive] productivity. Unfortunately, the side-effects included persistent delusions of being mechanized, which limited [PAWN_possessive] social life.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mechanoid nerd{{br}}(Mechanerd)&lt;br /&gt;
| [PAWN_nameDef] grew up in an urbworld as the only child of a pair of mechanoid designers.&lt;br /&gt;
They encouraged [PAWN_possessive] interest in the machines. Eventually, [PAWN_pronoun] became obsessed with building [PAWN_possessive] own.&lt;br /&gt;
&lt;br /&gt;
Unfortunately this also lead to [PAWN_objective] being a loner as [PAWN_pronoun] prefered technical books to friends.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medical assistant{{br}}(Medic)&lt;br /&gt;
| [PAWN_nameDef] was born during a catastrophic war in which both sides used napalm extensively. [PAWN_pronoun] grew up helping [PAWN_possessive] parents in an infirmary, treating the cascade of horrific burns from the battlefields. [PAWN_pronoun] was left with a lifelong fear of fire.&lt;br /&gt;
| Medicine: {{+|5}}&lt;br /&gt;
| Firefighting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medical helper{{br}}(Med helper)&lt;br /&gt;
| [PAWN_nameDef] traveled between rim worlds with [PAWN_possessive] family. [PAWN_nameDef]'s mother, a renowned doctor, often delivered lectures from the hull of their retrofitted cargo/medical ship.&lt;br /&gt;
&lt;br /&gt;
Sometimes, the family took on difficult long-term medical work with especially needy patients, and [PAWN_nameDef] helped where he could.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medical student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] grew up on a glitterworld in a family of doctors and chose to maintain the tradition.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] had few friends, but got along with [PAWN_possessive] siblings very well.&lt;br /&gt;
| Social: {{+|1}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medical student{{br}}(Student)&lt;br /&gt;
| Born into a long line of doctors, [PAWN_nameDef] was tutored in all fields of medicine, from herbal ointments to the modern synthetic drugs. [PAWN_pronoun] also picked up a healthy disdain for lower class work.&lt;br /&gt;
| Construction: {{--|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Hauling{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval lordling{{br}}(Lordling)&lt;br /&gt;
| [PAWN_nameDef] was a minor noble in an old kingdom on a medieval world. [PAWN_pronoun] grew up in a manor made of stone, served by bowing lowerclassmen.{{br}}Such a life teaches no technical skills and instils a lifelong aversion to manual labor - but [PAWN_nameDef] learned early the ways of social manipulation.&lt;br /&gt;
| Social: {{+|4}}&amp;lt;/br&amp;gt;Construction: {{--|1}}&amp;lt;/br&amp;gt;Mining: {{--|1}}&amp;lt;/br&amp;gt;Plants: {{--|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval plower{{br}}(Plower)&lt;br /&gt;
| [PAWN_nameDef] lived on a planet where kings and queens ruled with little regard for the peasants beneath them. [PAWN_possessive] family owned a large farm, but the king took most of the food it produced. This left [PAWN_nameDef]'s family poor, and unable to pay for [PAWN_possessive] education. Instead, [PAWN_pronoun] was required to work the fields with [PAWN_possessive] parents, and never had time to practice creativity.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|5}}&amp;lt;/br&amp;gt;Intellectual: {{--|1}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval slave{{br}}(Slave)&lt;br /&gt;
| [PAWN_nameDef] grew up pulling carts and digging holes on a medieval world. Simple manual labor is [PAWN_possessive] oldest companion - along with the master's lash.{{br}}[PAWN_pronoun] didn't learn to read until age nine.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Construction: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval slave{{br}}(Slave)&lt;br /&gt;
| Born into slavery, Soren never knew his parents. He eventually escaped from his masters and boarded a military cargo ship, where he was pressed into military service.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&amp;lt;/br&amp;gt;Mining: {{+|1}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval squire{{br}}(Squire)&lt;br /&gt;
| William grew up on a medieval planet as a knight in training. He trained directly under the king's war adviser for most of his youth, and learned to fight with a sword and shield.&lt;br /&gt;
| Construction: {{--|1}}&amp;lt;/br&amp;gt;Mining: {{--|1}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&lt;br /&gt;
| Cooking{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval thief{{br}}(Thief)&lt;br /&gt;
| [PAWN_nameDef] grew up poor and hungry on a medieval planet, learning to fend for himself.&lt;br /&gt;
&lt;br /&gt;
At first, he only took what he needed. Then he learned to take what he wanted.&lt;br /&gt;
| Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mercenary recruit{{br}}(Mercenary)&lt;br /&gt;
| Descended from a long line of off-world mercenaries, [PAWN_nameDef] grew up in a busy trading hub.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive]'s interest in the foreign goods at the market often distracted him from his chores and training.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mercenary recruit{{br}}(Recruit)&lt;br /&gt;
| Born to a long line of off-world mercenaries, [PAWN_nameDef] grew up in a busy trading hub. At a young age, [PAWN_pronoun] was recruited into one of the mercenary crews.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Midworld cadet{{br}}(Cadet)&lt;br /&gt;
| Growing up on a high-tech midworld with a flourishing space transit industry, [PAWN_nameDef] wished to leave for the stars and live among the growing spacer class.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] excelled in [PAWN_possessive] studies, and gained entry to [PAWN_possessive] homeworld's most prestigious naval academy.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Midworld geek{{br}}(Geek)&lt;br /&gt;
| [PAWN_nameDef] grew up in a quiet suburban neighborhood. He was never a master of social interaction, but his interest in computers blossomed into a true talent at an early age.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Social: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Midworld loner{{br}}(Loner)&lt;br /&gt;
| [PAWN_nameDef] was born on a peaceful, unimportant midworld.&lt;br /&gt;
&lt;br /&gt;
While [PAWN_pronoun] had a few friends, [PAWN_pronoun] preferred to spend [PAWN_possessive] time in solitude, tinkering on [PAWN_possessive] autocycle while listening to netcasts, or plinking at plastic soldiers with a new rifle [PAWN_pronoun] had just put together.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Midworld sketcher{{br}}(Sketcher)&lt;br /&gt;
| [PAWN_nameDef] was born into a loving but poor family.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] discovered he had an artistic talent which he inherited from his father. [PAWN_possessive] mother taught him the benefits of hard work and determination. As he grew older, [PAWN_nameDef] developed a fascination with technology and military history.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Militant child{{br}}(Soldier)&lt;br /&gt;
| [PAWN_nameDef]'s military family forced him to train in hand-to-hand combat and fighting tactics.&lt;br /&gt;
&lt;br /&gt;
In his own time, he built small inventions. This sharpened his mind.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Military cadet{{br}}(Cadet)&lt;br /&gt;
| Orphaned as a child, [PAWN_nameDef] was sent to a secret military school on a harsh deadworld.&lt;br /&gt;
&lt;br /&gt;
Taking quickly to firearms and survival training, [PAWN_pronoun] graduated with honor, transitioning into a leadership position in covert operations.&lt;br /&gt;
| Plants: {{--|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{--|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Military child{{br}}(Military)&lt;br /&gt;
| [PAWN_nameDef] grew up in a family with a rich military background. [PAWN_possessive] teenage years were spent traveling system to system wherever [PAWN_possessive] parents were deployed.&lt;br /&gt;
&lt;br /&gt;
Following the tradition of [PAWN_possessive] family, [PAWN_pronoun] enlisted at the earliest possible age.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Military recruit{{br}}(Recruit)&lt;br /&gt;
| [PAWN_nameDef] was born on a midworld run by an intensely militaristic dictatorship.&lt;br /&gt;
&lt;br /&gt;
From a young age, [PAWN_pronoun] was trained to be a good soldier. They taught him how to use a gun and how to fight with melee weapons.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Military trainee{{br}}(Soldierboy)&lt;br /&gt;
| [PAWN_nameDef] was raised on a military base in the Xennoa system. [PAWN_pronoun] was exposed to many different strenuous activities and grew strong at an early age. [PAWN_pronoun] also learned negotiation, medical, and military tactics.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Music idol{{br}}(Music idol)&lt;br /&gt;
| [PAWN_nameDef] was the only daughter of a powerful company president. [PAWN_possessive] beautiful appearance led to a career as a music idol.&lt;br /&gt;
&lt;br /&gt;
When [PAWN_possessive] mother died, [PAWN_nameDef] could not bear [PAWN_possessive] father's loneliness, and became his sexual companion.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Music lover{{br}}(Musician)&lt;br /&gt;
| As a child, [PAWN_nameDef] had a talent for playing musical instruments and singing. [PAWN_pronoun] was given expert training and loved to perform in recitals and concerts, though the lavish praise [PAWN_pronoun] received made [PAWN_objective] a little self-obsessed.&lt;br /&gt;
| Social: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mute{{br}}(Mute)&lt;br /&gt;
| [PAWN_nameDef] was greatly affected by a traumatic event early in [PAWN_possessive] life. For many years [PAWN_pronoun] refused to speak to people, preferring instead to play with [PAWN_possessive] household's numerous pets.&lt;br /&gt;
| Animals: {{+|5}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Naturalist{{br}}(Naturalist)&lt;br /&gt;
| Mitch grew up on a backwater planet with minimal education. He had to hunt and grow food to survive.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] family's home was frequently raided for food by scavengers. This made Mitch very suspicious and slow to trust anyone he doesn't know.&lt;br /&gt;
| Plants: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Navy pathfinder{{br}}(Pathfinder)&lt;br /&gt;
| [PAWN_nameDef] was raised and trained by a group of military explorers dedicated to charting pathways through deep space and on remote planets.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Nerd{{br}}(Nerd)&lt;br /&gt;
| [PAWN_nameDef] was curious about everything. While other kids played tag in the suburbs of their industrial city, [PAWN_nameDef] read every book he could find about technology, robots, and weapons - whatever looked coolest.&lt;br /&gt;
&lt;br /&gt;
His strong French accent kept him from making real friends.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! New age duelist{{br}}(Duelist)&lt;br /&gt;
| [PAWN_nameDef] was fascinated with combat. [PAWN_possessive] parents traveled often, so [PAWN_pronoun] was able to sample many different fighting styles, from 76th-wave jujutsu to the infamous 'urbworld-style' karate.&lt;br /&gt;
&lt;br /&gt;
A polite child, most fighters accepted [PAWN_possessive] requests for training - but moving around often without finishing a tutelage made [PAWN_objective] lazy.&lt;br /&gt;
| Shooting: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Animals: {{--|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Noble ward{{br}}(Ward)&lt;br /&gt;
| [PAWN_nameDef] was adopted by a prominent noble family after being left on their doorstep by [PAWN_possessive] mother.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] quickly learned secrets that passed between the nobles like cheap wine - of worlds beyond her own, languages, cultures and technologies both new and old.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{--|1}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| ManualDumb{{br}}Firefighting{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Officer cadet{{br}}(Cadet)&lt;br /&gt;
| From a young age, Bashkire trained to be a leader of men. He enrolled in the Vanu Defense College when he was a boy and became proficient with a range of weapons and survival techniques.&lt;br /&gt;
| Plants: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|1}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Offworld recruit{{br}}(Recruit)&lt;br /&gt;
| [PAWN_nameDef] was born an raised in an offworld soldier growth facility. From a very young age, [PAWN_pronoun] was taught close-quarters combat tactics, aggression, and how to survive on distant planets.&lt;br /&gt;
&lt;br /&gt;
One of the best, [PAWN_nameDef] was eventually chose to enter the orbital-deployment shock troop corps.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Optimistic child{{br}}(Optimistic)&lt;br /&gt;
| Kees was blessed with loving parents and a pleasant midworld life. He was an  optimistic and sociable kid who loved making friends and listening to their stories. His imagination would run wild with ideas and questions.&lt;br /&gt;
| Social: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Organ farm{{br}}(Organ farm)&lt;br /&gt;
| [PAWN_nameDef] was raised in an illegal underground organ farm. [PAWN_possessive] body was used to grow organic implants for wounded mercenaries. Though [PAWN_possessive] upbringing has left [PAWN_objective] haunted, it has also given [PAWN_objective] a unique understanding of human biology.&lt;br /&gt;
| Medicine: {{+|5}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Orphan of war{{br}}(Orphan)&lt;br /&gt;
| [PAWN_nameDef] lost his family and home early in life. His life became emotionally hollow, but his painful memories drove him to survive.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] took several jobs, but never achieved more than a basic education.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|3}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Orphan{{br}}(Orphan)&lt;br /&gt;
| Born in a brothel on a harsh world, [PAWN_nameDef] never really had a childhood. [PAWN_pronoun] did odd jobs to survive, and became distant from others.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Social{{br}}Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Orphan{{br}}(Orphan)&lt;br /&gt;
| Born on a deep space station, [PAWN_nameDef] was orphaned at a young age. In the orphanage, he stood up for the weaker kids and fought off the bullies.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Crafting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Orphan{{br}}(Orphan)&lt;br /&gt;
| Left alone in the world without parents, Kevin did the best he could to adapt.&lt;br /&gt;
&lt;br /&gt;
Having to take care both of himself and younger kids at the orphanage, he learned a lot about humans and how to interact with them.&lt;br /&gt;
| Social: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pampered{{br}}(Pampered)&lt;br /&gt;
| Born on a decadent glitterworld, [PAWN_nameDef] was given every expensive toy.&lt;br /&gt;
&lt;br /&gt;
This pampered lifestyle caused [PAWN_objective] to miss many basic life lessons. [PAWN_pronoun] developed a special aversion to cooking, and always ordered the staff to do the kitchen work.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{--|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pet keeper{{br}}(Pet keeper)&lt;br /&gt;
| [PAWN_nameDef] spent most of [PAWN_possessive] childhood tending the animals [PAWN_pronoun] had bought or rescued.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] saw beauty in natural things more than fabricated objects, and chose the company of [PAWN_possessive] animals over that of [PAWN_possessive] peers.&lt;br /&gt;
| Medicine: {{+|1}}&amp;lt;/br&amp;gt;Animals: {{+|6}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Philosopher{{br}}(Thinker)&lt;br /&gt;
| [PAWN_nameDef] was a student on a glitterworld. [PAWN_pronoun] had a hard time in school, since the other kids thought [PAWN_objective] rather strange.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] always maintained a distance from these events, being continuously surprised by the many interesting and awkward ways life can go.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pickpocket{{br}}(Pickpocket)&lt;br /&gt;
| Orphaned and abandoned on the tumultuous streets of his polluted, teeming homeworld, [PAWN_nameDef] survived by deft hand and fleet foot. A natural born thief and trickster, [PAWN_pronoun] rose to prominence early, running the notorious and violent urchin gang 'Doomben Rats'.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pickpocket{{br}}(Thief)&lt;br /&gt;
| [PAWN_nameDef] witnessed [PAWN_possessive] parents' murder at a young age. With no guidance, [PAWN_pronoun] had to fend for [PAWN_objective]self any way possible. Joining a small group of misfits [PAWN_pronoun] did whatever was necessary to survive.&lt;br /&gt;
| Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|1}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pilot fan{{br}}(Pilot fan)&lt;br /&gt;
| [PAWN_nameDef]'s father was a starfighter pilot, and [PAWN_pronoun] always idolized the old man.&lt;br /&gt;
&lt;br /&gt;
From a young age, [PAWN_pronoun] collected pilot memorabilia and studied pilot books, preparing to join the deep space navy and follow in [PAWN_possessive] father's footsteps.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pit gladiator{{br}}(Gladiator)&lt;br /&gt;
| [PAWN_nameDef] was enslaved as a child and forced to fight creatures and other people in an underground fighting arena.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] showed an affinity for the sport, and eventually bought his own freedom. However, his time in the pits never brought him much intellectual stimulation.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pizza lover{{br}}(Pizza kid)&lt;br /&gt;
| [PAWN_nameDef] loved boomrat pizza intensely. Rarely eating anything else, he was prone to bad health and low oxygen uptake.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] loved bashing in the skulls of random creatures to see what was inside.&lt;br /&gt;
| Melee: {{+|5}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Plague child{{br}}(Child)&lt;br /&gt;
| Born on a world wracked by plague, both of [PAWN_nameDef]'s parents were doctors. &lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] was raised in reverse-quarantine, under the Hippocratic oath. [PAWN_pronoun] experienced little social interaction. However, [PAWN_pronoun] gained a lot of medical experience assisting in treatments.&lt;br /&gt;
| Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|5}}&lt;br /&gt;
| Violent{{br}}Animals{{br}}Artistic{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Plague prodigy{{br}}(Prodigy)&lt;br /&gt;
| [PAWN_nameDef]'s childhood was cut short when a mysterious plague hit his homeworld.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] watched his friends die, and his compassion for humanity died with them. In its place a new thirst for knowledge emerged.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Plague survivor{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef] watched as a mysterious plague spread through [PAWN_possessive] town, killing [PAWN_possessive] family and friends.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned some medicine from watching the plague doctors, but was mentally scarred by the ordeal.&lt;br /&gt;
| Social: {{--|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Poor kid{{br}}(Poor kid)&lt;br /&gt;
| Abandoned by his parents, [PAWN_nameDef] learned how to survive by himself before he was ten years old.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|1}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Power-mad scholar{{br}}(Scholar)&lt;br /&gt;
| &amp;quot;Knowledge is power.&amp;quot; These words sparked something within [PAWN_nameDef], and came to form his core drive. When not entombed within libraries, [PAWN_pronoun] would take things apart to see first-hand how they worked, with little regard for the border between mechanical and organic.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Privileged child{{br}}(Privileged)&lt;br /&gt;
| Born to an upper-class family, [PAWN_nameDef] grew up with all the best things - the best education, the best social contacts, and of course the best technology money could buy.&lt;br /&gt;
&lt;br /&gt;
Unfortunately, living in such decadence left [PAWN_nameDef] rather spoiled when it came to labor.&lt;br /&gt;
| Social: {{+|3}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Privileged prodigy{{br}}(Prodigy)&lt;br /&gt;
| [PAWN_nameDef] was recognized as gifted early in his glitterworld upbringing. Luckily, [PAWN_possessive] family was in a position to cultivate that genius through advanced education. [PAWN_possessive] training included science, leadership, and the arts.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}Violent{{br}}Hauling{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Prodigal student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] was a faithful student, and was dedicated to learning anything and everything he could about humanity and its creations.&lt;br /&gt;
&lt;br /&gt;
While [PAWN_pronoun] was shunned as a nerd, [PAWN_pronoun] didn't mind. [PAWN_pronoun] hoped for a brighter future.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Professional gamer{{br}}(Pro gamer)&lt;br /&gt;
| [PAWN_nameDef] was obsessed with video games since his hands were big enough to grip a joystick.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] achieved middling finishes in several local tournaments during the 16-bit era. Nobody noticed when he retired early in his teenage years.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Project subject{{br}}(Subject)&lt;br /&gt;
| [PAWN_nameDef] was picked by government agents for the mysterious &amp;quot;Frame Project&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Due to memory blockages, however, he remembers very little about this project or its true agenda - only that there were few survivors.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Psychology student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] researched new religions and traditions and often dreamt of distant stars. &lt;br /&gt;
&lt;br /&gt;
His dreams prompted him to ask what lay beyond the lights in the sky.&lt;br /&gt;
| Social: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Punk{{br}}(Punk)&lt;br /&gt;
| [PAWN_nameDef] spent his childhood selling knockoff cigarettes to 15-year-olds. The cigarettes were often full of grass clippings.&lt;br /&gt;
| Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pyro assistant{{br}}(Assistant)&lt;br /&gt;
| On an industrial world, [PAWN_nameDef] learned early that if [PAWN_pronoun] wanted to eat, [PAWN_pronoun] had to work. So work [PAWN_pronoun] did. Kids fit in places adults can't, and where [PAWN_pronoun] was from, the safety laws were quite flexible.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was always a bit of a pyromaniac, and was banned from the kitchen after an unfortunate incident.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Cooking{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pyromaniac{{br}}(Pyro)&lt;br /&gt;
| From an early age, [PAWN_nameDef] had an unhealthy fascination with fire. [PAWN_pronoun] would set refuse heaps ablaze and become so entranced by the flames [PAWN_pronoun] would absent-mindedly burn [PAWN_objective]self.{{br}}One day while playing with matches, [PAWN_pronoun] carelessly burned down [PAWN_possessive] home.&lt;br /&gt;
| Social: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| Firefighting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Quiet nerd{{br}}(Nerd)&lt;br /&gt;
| [PAWN_nameDef] was raised by doting parents on a midworld. Instead of playing with other children, [PAWN_pronoun] read books voraciously.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was not particularly rugged, and struggled with physical labor.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Reclusive child{{br}}(Reclusive)&lt;br /&gt;
| [PAWN_nameDef] didn’t learn to speak until [PAWN_pronoun] was nearly 5 years old, and, even then, [PAWN_pronoun] preferred to keep to [PAWN_objective]self. When [PAWN_pronoun] was in [PAWN_possessive] early teens, [PAWN_pronoun] made a habit of wandering off from the village to live in the wilderness for weeks at a time.&lt;br /&gt;
| Melee: {{+|4}}{{br}}Crafting: {{+|3}}&lt;br /&gt;
| Social&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Scavenger&lt;br /&gt;
| [PAWN_nameDef] spent [PAWN_possessive] childhood escaping grunt work to go digging through wrecks and ruins for treasures. [PAWN_possessive] natural curiosity got [PAWN_objective] into a lot of trouble, but it also yielded many interesting finds.&lt;br /&gt;
| Mining: {{+|3}}{{br}}Intellectual: {{+|3}}&lt;br /&gt;
| Dumb labor&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Scout&lt;br /&gt;
| Born to colonial administrators from a small imperial power, [PAWN_nameDef] was enrolled in a youth program that taught military scouting skills.{{br}}[PAWN_pronoun] learned to survive in the wilderness, to obey, and not to ask questions.&lt;br /&gt;
| Shooting: {{+|3}}{{br}}Construction: {{+|1}}{{br}}Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}Intellectual&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Shelter child{{br}}(Shelterkid)&lt;br /&gt;
| [PAWN_nameDef] grew up in a shelter deep beneath a toxic world. [PAWN_pronoun] received a comprehensive education, but had no opportunity to do physical labour.&lt;br /&gt;
| Construction: {{--|2}}{{br}}Mining: {{--|2}}{{br}}Medical: {{+|3}}{{br}}Social: {{+|2}}{{br}}Intellectual: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Shopkeeper{{br}}(Shopkeep)&lt;br /&gt;
| [PAWN_nameDef]'s mother was often ill, and it fell to [PAWN_objective] to run the store which was their only source of income. [PAWN_pronoun] learned a little about the exotic artifacts which [PAWN_pronoun] sold, and a lot about the art of the deal.&lt;br /&gt;
| Social: {{+|4}}{{br}}Intellectual: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sickly child{{br}}(Patient)&lt;br /&gt;
| As a child, [PAWN_nameDef] suffered from a rare disease. Quarantined in a research hospital, [PAWN_pronoun] had minimal human contact and got little physical exercise. In the sterile hospital environment, however, [PAWN_pronoun] became very familiar with science and medicine.&lt;br /&gt;
| Melee: {{--|2}}{{br}}Construction: {{--|2}}{{br}}Medical: {{+|5}}{{br}}Social: {{--|2}}{{br}}Intellectual: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sole survivor{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef]’s entire tribe was wiped out in a raid. Though [PAWN_pronoun] was adopted by another group, [PAWN_pronoun] was emotionally scarred, and preferred to stay near home, cooking and tending crops.&lt;br /&gt;
| Cooking: {{+|3}}{{br}}Plants: {{+|3}}&lt;br /&gt;
| Violent&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Story writer{{br}}(Writer)&lt;br /&gt;
| As a child, [PAWN_nameDef] was addicted to reading. [PAWN_pronoun] would spend all day in [PAWN_possessive] local library with [PAWN_possessive] nose in a book. When budget cuts forced the library to close, [PAWN_nameDef] was distraught. [PAWN_pronoun] decided to fill the gap by writing [PAWN_possessive] own stories instead.&lt;br /&gt;
| Artistic: {{+|4}}{{br}}Intellectual: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Test subject{{br}}(Testee)&lt;br /&gt;
| On the most corrupt urbworlds, scientists without a moral compass commit unspeakable atrocities in the name of research. [PAWN_nameDef] was kept alone in a sealed facility from birth and subjected to a variety of behavioural experiments in an attempt to turn [PAWN_objective] into a perfect super-soldier.&lt;br /&gt;
| Shooting: {{+|4}}&lt;br /&gt;
| Social{{br}}Caring{{br}}Firefighting&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Tribe child{{br}}(Tribal)&lt;br /&gt;
| [PAWN_nameDef] grew up in the tribe, running around the village, moving with the muffalo herds, learning essential skills from [PAWN_possessive] parents.{{br}}[PAWN_pronoun] never learned to read and never saw a machine that wasn't an ancient ruin.&lt;br /&gt;
| Shooting: {{+|2}}{{br}}Melee: {{+|2}}{{br}}Plants: {{+|2}}{{br}}Intellectual: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Urbworld urchin{{br}}(Urchin)&lt;br /&gt;
| The urbworlds - ancient and deep industrial cityscapes bursting with humanity and poison. [PAWN_nameDef] grew up in the dark, unwanted reaches of such a place. [PAWN_pronoun] had to fight for every scrap of food.&lt;br /&gt;
| Shooting: {{+|2}}{{br}}Melee: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Vatgrown soldier{{br}}(Vatgrown)&lt;br /&gt;
| [PAWN_nameDef] wasn't made as a person, but as an instrument of destruction. Grown in a bioweapons facility and taught combat during [PAWN_possessive] accelerated growth, [PAWN_nameDef] still has a proclivity for combat of all kinds and an aversion to human contact.&lt;br /&gt;
| Shooting: {{+|4}}{{br}}Melee: {{+|4}}&lt;br /&gt;
| Social{{br}}Caring&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Vengeful child{{br}}(Vengeful)&lt;br /&gt;
| As a child, [PAWN_nameDef] returned to [PAWN_possessive] village to find that it had been wiped out by bandits. [PAWN_pronoun] swore revenge on the attackers and began a violent rampage across the wilderness.&lt;br /&gt;
| Shooting: {{+|3}}{{br}}Melee: {{+|3}}&lt;br /&gt;
| Caring&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! War refugee{{br}}(Refugee)&lt;br /&gt;
| War broke out in [PAWN_nameDef]'s home when [PAWN_pronoun] was a baby. [PAWN_possessive] parents fled with [PAWN_objective], seeking safety wherever they could find it. [PAWN_nameDef]'s earliest memories are of being taught how to defend [PAWN_objective]self.{{br}}The violence and destruction [PAWN_pronoun] witnessed left [PAWN_objective] scarred for life.&lt;br /&gt;
| Cooking: {{+|2}}{{br}}Crafting: {{+|2}}&lt;br /&gt;
| Violent&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Wreckage explorer{{br}}(Explorer)&lt;br /&gt;
| Two generations before [PAWN_nameDef] was born, an apocalyptic war dragged [PAWN_possessive] home planet into anarchy. [PAWN_nameDef] was tasked with watching [PAWN_possessive] tribe's herds, but often shirked [PAWN_possessive] duties to go exploring the crashed warships scattered around the planet.&lt;br /&gt;
| Animals: {{+|3}}{{br}}Intellectual: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=List_of_childhood_backstories&amp;diff=63380</id>
		<title>List of childhood backstories</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=List_of_childhood_backstories&amp;diff=63380"/>
		<updated>2019-05-07T17:55:01Z</updated>

		<summary type="html">&lt;p&gt;Mehni: Part D-G of the definitive list of backstories, sourced from build 2231. Script made. This is as they appear in the game.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;amp;larr; &amp;lt;small&amp;gt;[[Backstories]]&amp;lt;/small&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| {{STDT| sortable c_17}}&lt;br /&gt;
! Title&amp;lt;br /&amp;gt;(Short Title) !! Description !! Skill Modifications !! Incapable of !! Civil !! Raider !! Slave !! Trader !! Traveler !! Tribal&lt;br /&gt;
|-&lt;br /&gt;
! Abandoned child{{br}}(Abandoned)&lt;br /&gt;
| [PAWN_nameDef] was a quick witted, funny child. One day, [PAWN_pronoun] wandered off on [PAWN_possessive] wealthy genetic parents, and was ultimately lost in a supposedly unused ore warehouse. Due to cloning technology, [PAWN_possessive] parents decided that the time looking for [PAWN_objective] was better spent on just cloning a better son.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|1}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Abandoned orphan{{br}}(Orphan)&lt;br /&gt;
| Abandoned at birth, young [PAWN_nameDef] started [PAWN_possessive] life in an orphanage.&lt;br /&gt;
&lt;br /&gt;
A rascal and a scoundrel, [PAWN_pronoun] became a clever troublemaker.&lt;br /&gt;
| Plants: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Abductee{{br}}(Abductee)&lt;br /&gt;
| [PAWN_nameDef] was abducted at a young age and forced to do menial labor on a pirate ship.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Abductee{{br}}(Abductee)&lt;br /&gt;
| [PAWN_nameDef] was abducted by xenohumans when [PAWN_pronoun] was still a baby. They experimented on [PAWN_objective] to understand his genetic structure.&lt;br /&gt;
&lt;br /&gt;
As [PAWN_pronoun] grew up, [PAWN_nameDef] grew a little bit too big and strong for his captors and eventually escaped.&lt;br /&gt;
&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Academy student {{br}}(Student )&lt;br /&gt;
| [PAWN_nameDef] went to school like a good space cadet would. He was very tall and was known for his good looks.&lt;br /&gt;
&lt;br /&gt;
Though he worried more about his hairstyle than his grades, he still somehow passed the final exams.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Accursed child{{br}}(Cursed)&lt;br /&gt;
| [PAWN_nameDef] was born at the peak of a lunar eclipse. The elders declared [PAWN_objective] a child of darkness brought [PAWN_objective] under their care.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] entire childhood was spent studying the lore and rituals of [PAWN_possessive] people - until the day of calling.&lt;br /&gt;
| Construction: {{--|1}}&amp;lt;/br&amp;gt;Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| Firefighting{{br}}Cleaning{{br}}Hauling{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Adventuring child{{br}}(Adventurer)&lt;br /&gt;
| Axle was raised to become an engineer. For years, he planned to stow away on a cargo ship and start a new, more adventuresome life.&lt;br /&gt;
&lt;br /&gt;
One night, after his parents fell asleep, he managed to sneak on board a cargo ship just before it left port.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Adventurous youth{{br}}(Adventurer)&lt;br /&gt;
| [PAWN_nameDef] explored all around [PAWN_possessive] family's large estate, uncovering little natural wonders hidden in nearby catacombs, rivers, and caves.&lt;br /&gt;
&lt;br /&gt;
During his teenage years, [PAWN_nameDef] made numerous enemies&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Amateur astronomer{{br}}(Astronomer)&lt;br /&gt;
| [PAWN_nameDef] was fascinated with astronomy. [PAWN_pronoun] would spend hours gazing at planets and nebulae through his telescope.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] is credited with discovering a small comet that would, years later, strike a nearby moon and disrupt the mining operations there.&lt;br /&gt;
| Intellectual: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Amateur botanist{{br}}(Botanist)&lt;br /&gt;
| Spending many summers crawling through dirt, Christian found he had quite the green thumb. Instead of learning to cook the food he grew, he just grew more and more.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Amateur engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] grew up in a family with a military and engineering background. [PAWN_pronoun] wanted to join the army but his father didn't like the idea, so [PAWN_possessive] interest turned to great flying machines and works of engineering. [PAWN_pronoun] secretly hoped that this would one day lead him to a life of galactic exploration.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|1}}&lt;br /&gt;
| Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Angry student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] trained towards [PAWN_possessive] dream of working for his hometown's local council.&lt;br /&gt;
&lt;br /&gt;
For reasons he never quite understood, [PAWN_pronoun] was bullied relentlessly by his classmates. [PAWN_pronoun] chose to repress his rage.&lt;br /&gt;
| Intellectual: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Animal caretaker{{br}}(Caretaker)&lt;br /&gt;
| Born on a medieval farm, [PAWN_nameDef] was tasked with caring for domestic animals. [PAWN_pronoun] grew to love them.&lt;br /&gt;
&lt;br /&gt;
With time, [PAWN_pronoun] learned to tame wild animals. [PAWN_pronoun] dreamed of one day meeting a thrumbo and taming it.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Animal lab tech{{br}}(Lab tech)&lt;br /&gt;
| [PAWN_nameDef] worked as a technician in a lab studying animals.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] spent [PAWN_possessive] days taking care of the animals and cleaning up after them. [PAWN_pronoun] dreamed of having [PAWN_possessive] own lab one day.&lt;br /&gt;
| Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|3}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Antisocial child{{br}}(Antisocial)&lt;br /&gt;
| [PAWN_nameDef] lacked typical social skills, and avoided social interaction.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] gained satisfaction only from steady work. [PAWN_pronoun] especially disliked speaking with overly creative or outgoing individuals.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Apocalypse child {{br}}(Apocalypse)&lt;br /&gt;
| [PAWN_nameDef] spent his childhood on a post-apocalyptic world. He fought for survival from a young age, on a planet where trust did not exist.&lt;br /&gt;
&lt;br /&gt;
He told everyone that he had no luck.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Apocalypse survivor{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef] was born during a time of unrest on [PAWN_possessive] homeworld, as climate change threatened mass starvation and flooding. As [PAWN_pronoun] grew up the situation worsened - billions died and peaceful states descended into anarchy. [PAWN_nameDef] and [PAWN_possessive] parents did whatever they had to to survive.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Apprentice oracle{{br}}(Oracle)&lt;br /&gt;
| [PAWN_nameDef] was chosen at an early age by the village elders to keep the sacred rituals of the Oracle.&lt;br /&gt;
&lt;br /&gt;
An irrepressibly curious child, [PAWN_nameDef] caused a religious crisis for [PAWN_possessive] tribe when [PAWN_pronoun] accidentally flipped a switch to open the &amp;quot;tombs&amp;quot; of the Gods - cryptosleep caskets inhabited by some very confused ancestors.  &lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Apprentice smith{{br}}(Apprentice)&lt;br /&gt;
| [PAWN_nameDef] grew up helping in his father's smithy.&lt;br /&gt;
&lt;br /&gt;
They were some of the last smiths on the planet that to use traditional smithing methods. They even collect some materials themselves.&lt;br /&gt;
&lt;br /&gt;
Sometimes, after work, [PAWN_nameDef] would practice using the swords [PAWN_pronoun] forged.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artful dodger{{br}}(Dodger)&lt;br /&gt;
| Robin grew up on one of the urbworlds and had to fend for himself all his life. He never trusted anyone, relying on his persuasiveness and cunning to survive.&lt;br /&gt;
&lt;br /&gt;
He soon became skilled with firearms and knives as well as words.&lt;br /&gt;
| Shooting: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}Crafting{{br}}Cooking{{br}}Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artisan farmer{{br}}(Farmer)&lt;br /&gt;
| [PAWN_nameDef] grew up on a [PAWN_possessive] family's glitterworld farm. They were one of the last farms on the planet that preferred traditional farming methods to glitterworld technology.&lt;br /&gt;
| Plants: {{+|7}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artistic weirdo{{br}}(Weirdo)&lt;br /&gt;
| [PAWN_nameDef] grew up in a house near a bustling midworld metropolis.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was talented at art and creative work, but often acted strangely, and thus had few friends.&lt;br /&gt;
| Cooking: {{+|1}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aspergers rebel{{br}}(Rebel)&lt;br /&gt;
| [PAWN_nameDef] grew up as a rebel on an formerly-advanced rimworld devastated by war.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] Aspergers syndrome meant he struggled with social situations and was incapable of caring, but [PAWN_pronoun] learned hard skills like research and shooting very quickly.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&lt;br /&gt;
| Caring{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aspiring engineer{{br}}(Tinkerer)&lt;br /&gt;
| [PAWN_nameDef] had a fascination with gadgets and gizmos. [PAWN_pronoun] took apart and put together almost anything [PAWN_pronoun] could find.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] got used to repairing toys brought to [PAWN_objective] by other children, and even fixed a few devices from [PAWN_possessive] elders.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aspiring physicist{{br}}(Student)&lt;br /&gt;
| The daughter of an engineer and doctor, [PAWN_nameDef]'s early life was intellectually rich. After visiting a physics lab, she decided she wanted to be a quantum physicist.&lt;br /&gt;
&lt;br /&gt;
Bitten by a camel, kicked off a horse, and chased by dogs, [PAWN_nameDef] developed a fear of animals.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}Animals{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aspiring pop idol{{br}}(Pop idol)&lt;br /&gt;
| Min was being trained in song and dance to become the next big pop idol. She grew up being taken care of by company handlers.&lt;br /&gt;
&lt;br /&gt;
She never knew manual labor, but learned a lot about music and social etiquette.&lt;br /&gt;
| Shooting: {{--|4}}&amp;lt;/br&amp;gt;Melee: {{--|4}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&lt;br /&gt;
| ManualDumb{{br}}Cleaning{{br}}Hauling{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Athlete{{br}}(Athlete)&lt;br /&gt;
| [PAWN_nameDef] was professional athlete at early age. Thanks to her skills, she was able to leave her homeworld and enroll in a glitterworld university of science and technology.&lt;br /&gt;
&lt;br /&gt;
Because of her demanding schedule and introverted nature, she became socially inept.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Awkward nerd{{br}}(Nerd)&lt;br /&gt;
| Always fascinated by machines, Dave spent his time studying robotics and holography. He preferred the company of his scientific creations to that of other people.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blackjack player{{br}}(Gambler)&lt;br /&gt;
| The only useful skill [PAWN_nameDef] learned from his tough military school was card counting. He amassed many enemies by cheating at casinos, becoming ever more edgy and violent as the threat of retaliation grew.&lt;br /&gt;
&lt;br /&gt;
When he was finally caught, they burned half his skin off. He'll never be able to face fire or violence again.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|4}}&lt;br /&gt;
| Violent{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blacksmith's son{{br}}(Blacksmith)&lt;br /&gt;
| [PAWN_nameDef]'s father owned the blacksmith shop in an run-down old city district. [PAWN_nameDef] would help his father whenever he could.&lt;br /&gt;
&lt;br /&gt;
Later, [PAWN_possessive] father took him as a blacksmith's apprentice and raised him as a man. [PAWN_nameDef] also to on shooting as a hobby.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blessed child{{br}}(Blessed)&lt;br /&gt;
| [PAWN_nameDef] was born under auspicious circumstances to a midworld spiritual group and held in reverence throughout [PAWN_possessive] childhood.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned to take care of the poor and give succor to the faithful from an early age.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bodyguard trainee{{br}}(Bodyguard)&lt;br /&gt;
| [PAWN_nameDef] was born into a famously skilled family of bodyguards. [PAWN_possessive] mothers Elena and Victoria forced [PAWN_objective] into many dangerous situations, training [PAWN_objective] to put [PAWN_possessive] client's well-being over [PAWN_possessive] own.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] was taught about many herbs and natural poisons to help [PAWN_objective] prevent clients from being poisoned.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bone collector{{br}}(Pupil)&lt;br /&gt;
| Born to a family of fortune hunters, [PAWN_nameDef] always had a passion for ancient history.&lt;br /&gt;
&lt;br /&gt;
Though never a tough or social boy, [PAWN_pronoun] loved to dig through history books as well as dirt piles.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{--|3}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bookworm{{br}}(Bookworm)&lt;br /&gt;
| [PAWN_nameDef] spent his youth in the library, reading every book he could about the technical marvels of space travel, the engineering ingenuity of the space-faring pioneers, and the horrible yet fascinating tales of the mechanoid races. He vowed that one day, he would see these things for himself.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Boy scout{{br}}(Scout)&lt;br /&gt;
| [PAWN_nameDef] was in a boy scout troop on a midworld.&lt;br /&gt;
&lt;br /&gt;
He learned many survival skills including how to thrive in the outdoors and how to tend to basic wounds.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Boy soldier{{br}}(Soldier)&lt;br /&gt;
| War may never change - but the cast of characters does.&lt;br /&gt;
&lt;br /&gt;
Born on a violent urbworld, [PAWN_nameDef] was trained from a young age to fight the wars of others, and became rather good at it. &lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Brothel gofer{{br}}(Gofer)&lt;br /&gt;
| Born on a steam-powered midworld wracked by a century of economic crises, [PAWN_nameDef] went to work at a young age. Scrounging, shoe-polishing, sewing - he did it all. But [PAWN_pronoun] was most known as a brothel gofer, delivering all manner of aphrodisiacs and chemicals to the girls' rooms.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Brutal thief{{br}}(Thief)&lt;br /&gt;
| Growing up in a gang, [PAWN_nameDef] learned the brutality of the streets.&lt;br /&gt;
&lt;br /&gt;
Knowing that showing weakness could be fatal, he closed himself of to others.&lt;br /&gt;
| Plants: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bunker kid{{br}}(Bunker kid)&lt;br /&gt;
| Ricardo grew up in an underground shelter, waiting for radioactive fallout to subside. His rich family had gained access to a luxury bunker city, while billions died on the surface.&lt;br /&gt;
&lt;br /&gt;
Determined to one day seek revenge against the hated enemy, Ricardo spent most of his time practicing shooting in his private training facility.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Artistic{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cadet{{br}}(Cadet)&lt;br /&gt;
| Born on the planet New China, [PAWN_nameDef]'s father was a police chief and kept extremely strict watch over his son.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] had to do military-style drill exercises every day and keep his room spotlessly clean, always ready for inspection. [PAWN_pronoun] came to abhor violence.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caravan child{{br}}(Child)&lt;br /&gt;
| [PAWN_nameDef] was born on a urbworld merchant ship to an entrepreneurial mother and an absent father. Born male, she disliked boy stuff, and got into her mother’s things all the time.&lt;br /&gt;
&lt;br /&gt;
Eventually, she traveled with her mother to a glitterworld and spent her savings on a body she was happy with.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caravan traveler{{br}}(Traveler)&lt;br /&gt;
| Born to a family of traveling merchants, [PAWN_nameDef] was mentored by [PAWN_possessive] father in the ways of being a trader. [PAWN_pronoun] was often tasked with caring for the pack animals. Due to [PAWN_possessive] nomadic lifestyle, [PAWN_pronoun] hunted and bartered for [PAWN_possessive] food.&lt;br /&gt;
| Plants: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cat herder{{br}}(Herder)&lt;br /&gt;
| [PAWN_nameDef] helped out in his father's cat breeding business, socializing, herding, and feeding hundreds of cats.&lt;br /&gt;
&lt;br /&gt;
When he refused to clean up after the cats, [PAWN_pronoun] was transferred to the breeding science division.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&lt;br /&gt;
| Cleaning{{br}}Hauling{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cave child{{br}}(Cave kid)&lt;br /&gt;
| [PAWN_nameDef] grew up in a cave on an tundra planet, and was adopted by a traveling group of entertainers known only as the Wizards. Once a starfaring crew, the Wizards told [PAWN_objective] wondrous stories about the universe.&lt;br /&gt;
&lt;br /&gt;
One day, the Wizards did not return from scavenging. After years of waiting, [PAWN_nameDef] set off into space to find them.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caveworld tender{{br}}(Cave kid)&lt;br /&gt;
| [PAWN_nameDef] grew up in cave complex deep beneath the surface of an inhospitable world. [PAWN_pronoun] worked with the other children tending the tribe’s fungus crops.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caveworld tunneler{{br}}(Tunneler)&lt;br /&gt;
| [PAWN_nameDef] worked as a digger in the massive underground cave complex.{{br}}[PAWN_pronoun] knows rock so well that [PAWN_pronoun] can almost navigate caves by smell.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Mining: {{+|6}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&lt;br /&gt;
| Intellectual{{br}}Crafting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Chess master{{br}}(Chesshead)&lt;br /&gt;
| [PAWN_nameDef] loved to play chess. [PAWN_pronoun] even earned the nickname Bishop for some of [PAWN_possessive] craftier moves. &lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] never got into trouble - mostly because he was good at not getting caught. &lt;br /&gt;
&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child of drifters{{br}}(Drifter)&lt;br /&gt;
| Ever since [PAWN_pronoun] was very small, [PAWN_nameDef] had never known a home beyond [PAWN_possessive] parent's ship. They were a family of nomads whose meandering provided a constant change of scenery. [PAWN_possessive] life was often perilous but never dull, and [PAWN_pronoun] inherited [PAWN_possessive] parents' wanderlust at a young age.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|6}}&lt;br /&gt;
| Firefighting{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child of glass{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef] was raised underground on a &amp;quot;marble&amp;quot; planet - a wasteland of radioactive asphalt and toxic fallout.&lt;br /&gt;
&lt;br /&gt;
To survive on a planet devoid of life, [PAWN_pronoun] had to learn how to farm underground and how to fight without wasting bullets.&lt;br /&gt;
| Plants: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| Social{{br}}Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child prodigy{{br}}(Prodigy)&lt;br /&gt;
| After graduating college at age twelve, Jered devoted his life to becoming immortal.  However his research crossed the line when he tried to modify his body using gene therapy and mechanical augmentation.  He was arrested and condemned to a prison planet.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child researcher{{br}}(Researcher)&lt;br /&gt;
| A frightfully intelligent child, [PAWN_nameDef] was kidnapped by a glitterworld corporation and forced to research technologies for weaponizing anti-matter.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] vowed never to invent anything again.&lt;br /&gt;
| Intellectual: {{+|7}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&lt;br /&gt;
| Crafting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child scientist{{br}}(Scientist)&lt;br /&gt;
| After graduating college very young, [PAWN_nameDef] devoted [PAWN_possessive] life to becoming immortal. He was arrested for trying to genetically modify himself.&lt;br /&gt;
&lt;br /&gt;
The authorities released [PAWN_objective] on the condition that he would work in a government lab on spacecraft technology. He was permitted to continue his personal research in his free time.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child slave{{br}}(Slave)&lt;br /&gt;
| Graham was born to a poor family on a rimworld. His father sold him into slavery at a young age and he was traded many times. A tycoon bought him as part of a child labor force and sent down into mines to look after machines and to work alongside them.&lt;br /&gt;
&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child spy {{br}}(Spy )&lt;br /&gt;
| Children are often presumed innocent, and so make ideal spies. [PAWN_nameDef] was trained in the arts of infiltration and information-gathering when [PAWN_pronoun] was very young.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] spent years behind enemy lines, gathering intel in a brutal planetary war. During this time, [PAWN_pronoun] had limited opportunity for education. &lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child spy{{br}}(Spy)&lt;br /&gt;
| Children are often presumed innocent, and can be ideal as spies. [PAWN_nameDef] was trained in the art of infiltration and information-gathering when [PAWN_pronoun] was just nine years old.{{br}}[PAWN_possessive] years behind enemy lines and the war-torn nature of [PAWN_possessive] homeworld meant [PAWN_pronoun] had limited opportunity for education.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Intellectual: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child star{{br}}(Star)&lt;br /&gt;
| [PAWN_nameDef] was well-known throughout [PAWN_possessive] homeworld as a child actor in films and TV shows. [PAWN_possessive] fame put [PAWN_objective] in contact with many different kinds of people, but also tended to get in the way of [PAWN_possessive] education.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child-knave{{br}}(Knave)&lt;br /&gt;
| [PAWN_nameDef] was a child-knave of King Loteric. [PAWN_pronoun] enjoyed the training with wooden sticks and engaging others in close combat. [PAWN_pronoun] adapted quickly to the heat of battle and was good at spreading fire.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] served his lord well, until the king died in an unfortunate accident.&lt;br /&gt;
| Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Circus performer{{br}}(Performer)&lt;br /&gt;
| Growing up in the circus, [PAWN_nameDef] learned a lot of interesting things. More interesting then the balls he juggled were the pockets he picked between shows.&lt;br /&gt;
&lt;br /&gt;
A mistake with some firesticks made him develop a deathly fear of fire.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Class clown{{br}}(Clowny kid)&lt;br /&gt;
| In the ultra-competitive environs of his glitterworld school, [PAWN_nameDef] always offered to play the class clown to diffuse tension.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] developed a sense of social desperation from this, as well as an appreciation for the artistic side of comedy.&lt;br /&gt;
| Social: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Clone-farmed{{br}}(Disposable)&lt;br /&gt;
| Clone children are seeded into organic-rich wombvats and rapidly grown in a simmed universe. They're harvested later, sometimes for food, sometimes for organs, sometimes for workers - but they're always called 'Disposable'. &lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Coliseum cleaner{{br}}(Cleaner)&lt;br /&gt;
| During the 'Inner Destrian War' fallout, [PAWN_possessive] parents were captured and [PAWN_pronoun] was born into a life of slavery. Forced to clean coliseums after bloody battles for money. Watching, waiting, and learning. Coliseums were the only thing [PAWN_pronoun] ever knew. One night while cleaning the coliseum, [PAWN_possessive] family was murdered.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Caring{{br}}Firefighting{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Colony kid{{br}}(Colony kid)&lt;br /&gt;
| [PAWN_nameDef] was born the child of two doctors in a small colony. Because of [PAWN_possessive] parents, [PAWN_pronoun] was always interested in science and medicine.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] never really got along with other children, and as a result became withdrawn and unsociable.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Coma child{{br}}(Coma child)&lt;br /&gt;
| A childhood accident put [PAWN_nameDef] into a coma. [PAWN_pronoun] didn’t wake up until [PAWN_pronoun] was in [PAWN_possessive] late teens. [PAWN_possessive] body never recovered from the years of inactivity, but people tend to take pity on [PAWN_objective] when they hear [PAWN_possessive] story.&lt;br /&gt;
| Social: {{+|4}}&amp;lt;/br&amp;gt;Construction: {{--|2}}&amp;lt;/br&amp;gt;Mining: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Commoner heir{{br}}(Heir)&lt;br /&gt;
| [PAWN_nameDef] was a street urchin on a feudal steamworld.&lt;br /&gt;
&lt;br /&gt;
After [PAWN_pronoun] tried to steal food from the palace, the emperor, desperate to secure an heir, took [PAWN_objective] in and groomed [PAWN_objective] to be next in line for the throne.&lt;br /&gt;
| Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Computer geek{{br}}(Geek)&lt;br /&gt;
| [PAWN_nameDef] spent most of [PAWN_possessive] childhood on [PAWN_possessive] computer, typing away, never knowing when to get up and eat.&lt;br /&gt;
&lt;br /&gt;
He had a very narrow interest: hacking cryptobiotic safety protocols.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Animals: {{+|2}}&lt;br /&gt;
| Social{{br}}Cooking{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Construction grunt{{br}}(Builder)&lt;br /&gt;
| Growing up in his father's lab, Jackson was given the life of an intellectual elite. He got everything he desired, and price was never an object.&lt;br /&gt;
&lt;br /&gt;
However Jackson did not partake in the luxury given to him. Instead, he pursued more physical, and - in his father's eyes - lower-class jobs.  &lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Convent child{{br}}(Illicit)&lt;br /&gt;
| The child of an illicit affair, [PAWN_nameDef] was bought up by nuns in a medieval convent. [PAWN_pronoun] learned the value of hard work and submission, but was taught that technology is heretical.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&lt;br /&gt;
| Intellectual{{br}}Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Core dilettante{{br}}(Dilettante)&lt;br /&gt;
| Candice spent her formative years on a glitterworld in the core region, where she and her friends pursued lives of idle pleasure.&lt;br /&gt;
&lt;br /&gt;
As she grew up, she began to find the life of ease unfulfilling. She decided to look for a more challenging path.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Core world student{{br}}(Student)&lt;br /&gt;
| Born a male named Alex, Alyssa didn't fit in well with the other boys. When very young, she preferred creative pursuits, such as crafting jewelry, over sports. She felt she had the wrong body. Luckily, her family and friends supported her sex reassignment; as a teen, she underwent surgery to become a female.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{--|1}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Cooking{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corp student{{br}}(Student)&lt;br /&gt;
| De Dion was bred to become an executive officer for the large space trading corporation that owned his home planet. His family had been working for that corporation for seven generations.&lt;br /&gt;
&lt;br /&gt;
At age six, [PAWN_pronoun] started to study at the corporate academy, where he learned to become a loyal follower and a ruthless executive.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corp-bred student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] was bred to become an executive for the space exploration corporation that owned his home planet. [PAWN_possessive] family had been working for that corporation for four generations.&lt;br /&gt;
&lt;br /&gt;
At age five, [PAWN_pronoun] enrolled at the corporate academy where he learned loyalty and ruthlessness. [PAWN_nameDef] excelled in finding diplomatic solutions where others would need violence.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|7}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Violent{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corporate slave{{br}}(Soldier)&lt;br /&gt;
| [PAWN_nameDef] grew up in a colony owned by a large glitterworld corporation. All children had virtual reality devices attached by force, and were raised in a brutal digital world.&lt;br /&gt;
&lt;br /&gt;
Constantly forced to fight others for the entertainment of the wealthy, gunplay and tactics became the center of [PAWN_nameDef]'s universe.&lt;br /&gt;
| Plants: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Animals: {{--|2}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Country child{{br}}(Hick kid)&lt;br /&gt;
| [PAWN_nameDef] was raised up to fear God and love [PAWN_possessive] country. [PAWN_pronoun] was a genuine backwoods kid. [PAWN_pronoun] always worked hard to earn respect rather than demanding it.&lt;br /&gt;
| Cooking: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cow farmer{{br}}(Farmer)&lt;br /&gt;
| [PAWN_nameDef] grew up on a rim world, under the tyranny of [PAWN_possessive] father, who forced [PAWN_objective] to work every day on the farm. [PAWN_pronoun] dreamed of escaping [PAWN_possessive] father and exploring the universe.&lt;br /&gt;
&lt;br /&gt;
One day, when the trade ship was overhead, [PAWN_pronoun] stowed away among the goods in the launch pods, and escaped into space.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Animals: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Crime boss' child{{br}}(Crime kid)&lt;br /&gt;
| [PAWN_nameDef] was adopted child of a notorious crime boss. [PAWN_pronoun] was taught all facets of the family business, from smuggling to inventive ways of killing.&lt;br /&gt;
&lt;br /&gt;
When the family was attacked, [PAWN_possessive] father ordered [PAWN_objective] to hide in a secret longsleep crypt.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cult child{{br}}(Cult kid)&lt;br /&gt;
| [PAWN_nameDef] was born into a powerful cult which shunned advanced technology and believed that all illness could be cured by cleansing the soul through sacred art.{{br}}After [PAWN_possessive] first glimpse of the outside world, [PAWN_pronoun] decided to run away.&lt;br /&gt;
| Medicine: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|5}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Data decoder{{br}}(Decoder)&lt;br /&gt;
| Born on a glitterworld, [PAWN_nameDef] was very interested  in the process of documenting information, and quickly became senior glitterpedia recorder.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was effective at self-study, but [PAWN_pronoun] was lacked in social experiences.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Dedicated student{{br}}(Student)&lt;br /&gt;
| The child of a wealthy manufacturer, [PAWN_nameDef] was pampered from an early age. [PAWN_pronoun] developed an affinity for reading and art, and a distaste for menial chores.&lt;br /&gt;
&lt;br /&gt;
A revolution brought his father's businesses under state control. Penniless, [PAWN_nameDef] worked hard to complete [PAWN_possessive] education.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Animals{{br}}Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Desert rat{{br}}(Desert rat)&lt;br /&gt;
| [PAWN_nameDef] was born to a tribe of desert ascetics who wandered the endless wastes.&lt;br /&gt;
&lt;br /&gt;
They sought a mythical substance they believed could liberate them from ignorance through psychedelic revelation - and usher in a new period of interstellar peace.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Diplomat's child{{br}}(Diplomat)&lt;br /&gt;
| [PAWN_nameDef] was born in diplomatic family.&lt;br /&gt;
&lt;br /&gt;
Travelling often, [PAWN_pronoun] was home-schooled and saw the world mostly through a computer.&lt;br /&gt;
| Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Artistic: {{+|1}}&lt;br /&gt;
| Violent{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Disaster survivor{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef]'s planet collided with a small moon. Everything he knew as home was destroyed, and his entire family died. [PAWN_pronoun] was left in the ruins to fend for himself.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Disaster survivor{{br}}(Survivor)&lt;br /&gt;
| Steven was uprooted when marauders attacked his family farm, destroying machinery and killing farmhands and beasts alike.&lt;br /&gt;
&lt;br /&gt;
After the death of all he knew, he was left in the ruins to fend for himself.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Discarded youth{{br}}(Discarded)&lt;br /&gt;
| [PAWN_nameDef] grew up isolated on a trash planet. A dumping ground for surrounding glitterworlds, it was a harsh home. As a baby, [PAWN_pronoun] sucked on the tap of a discarded nutrient paste dispenser for comfort.&lt;br /&gt;
&lt;br /&gt;
In these desperate circumstances, against all odds, [PAWN_pronoun] survived - and thrived.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Artistic{{br}}Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Disciplined farmer{{br}}(Farmer)&lt;br /&gt;
| Drew was the younger of two sons on the family farm, a frontier plot that struggled to turn a profit. Drew's father was a strict disciplinarian, constantly at his sons to work harder and keep quiet. Drew burnt his hand making breakfast once and swore to cook only when his life was in danger.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|1}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&lt;br /&gt;
| Social{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Displaced noble{{br}}(Noble)&lt;br /&gt;
| Born on an urbworld to the ruler of three megacities, [PAWN_nameDef]’s prospects looked good - until a violent insurrection overthrew [PAWN_possessive] family. Exile introduced [PAWN_nameDef] to hard work and combat, but some high-born squeamishness remains.&lt;br /&gt;
| Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Dreaded baby{{br}}(Baby dude)&lt;br /&gt;
| [PAWN_nameDef] was found as a baby in a crashed spacecraft. According to the ship's data records, [PAWN_pronoun] invented the nuclear device that powered his ship. Apparently, he also invented the sky and the hamburger, and is said to have fathered a race of tasty golden kittens.&lt;br /&gt;
| Shooting: {{+|1}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Dreamer{{br}}(Dreamer)&lt;br /&gt;
| [PAWN_nameDef] was an expressive child. [PAWN_pronoun] sang often, and made friends very easily, be they young or old, male or female.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] hated fighting, but when made angry, [PAWN_pronoun] could be dangerous. [PAWN_possessive] temper was quick.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Drudge{{br}}(Drudge)&lt;br /&gt;
| [PAWN_nameDef] was never sure what [PAWN_pronoun] wanted to do with [PAWN_possessive] life. [PAWN_pronoun] spent most of [PAWN_possessive] time doing low-wage jobs and wondering what [PAWN_possessive] future would be like.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] entertained himself with space sims and survival games, dreaming of one day being somewhere more interesting.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Drug mule{{br}}(Mule)&lt;br /&gt;
| Raised in an orphanage, [PAWN_nameDef] turned towards the gang life at age ten.&lt;br /&gt;
&lt;br /&gt;
He was exploited by the local gang as a drug mule to traffic &amp;quot;substance F&amp;quot; across rival gang territory. He took a bullet or two.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| Intellectual{{br}}Caring{{br}}Social{{br}}Artistic{{br}}Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Dusty farm hand{{br}}(Farm hand)&lt;br /&gt;
| From the time [PAWN_nameDef] could walk, [PAWN_pronoun] helped take care of the animals and crops that [PAWN_possessive] people tended in their arid homeland.&lt;br /&gt;
&lt;br /&gt;
The work toughened [PAWN_objective], but left little time for intellectual activities.&lt;br /&gt;
 &lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&amp;lt;/br&amp;gt;Animals: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Earth colonist{{br}}(Colonist)&lt;br /&gt;
| [PAWN_nameDef] was born on Earth. As a child, [PAWN_pronoun] was launched into space as part of an interstellar colonization program.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Empath{{br}}(Empath)&lt;br /&gt;
| [PAWN_nameDef] was an incredibly empathetic child, so much that [PAWN_pronoun] was totally overwhelmed by simple social interactions. Once, [PAWN_pronoun] stepped on a bug and felt so guilty [PAWN_pronoun] cried for an hour.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] did try to use a gun one time, but it went very poorly, as the loud noise made [PAWN_objective] flinch uncontrollably.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Violent{{br}}Social{{br}}Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Energetic pop idol{{br}}(Pop idol)&lt;br /&gt;
| Priscilla grew up on a glitterworld, training in rapier arts and singing. She spent several years as an energetic teen pop idol.&lt;br /&gt;
&lt;br /&gt;
However, she decided that the music and modeling industries were not paying her enough attention, so she left.&lt;br /&gt;
| Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Exiled prince{{br}}(Prince)&lt;br /&gt;
| A member of a royal family, [PAWN_nameDef] was exiled for shaming [PAWN_possessive] family.&lt;br /&gt;
&lt;br /&gt;
Living in a foreign land, mostly alone, [PAWN_pronoun] spent most of [PAWN_possessive] time making huts and houses to live in. [PAWN_pronoun] found little time in an average day for enjoyment, and lost all his friends and family.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|1}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Factory worker{{br}}(Worker)&lt;br /&gt;
| Felix grew up in a large factory city on an industrial world.&lt;br /&gt;
&lt;br /&gt;
Since poverty was rampant and food scarce, he worked for whatever wages he could get. This wasn't an easy life, but Felix never shied away from a hard day's work.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Fallen prodigy{{br}}(Prodigy)&lt;br /&gt;
| [PAWN_nameDef] was born on a glitterworld falling into chaos. [PAWN_possessive] father was killed in action.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] struggled for a scholarship at Utmaior Academy and had to prove his right to be there. A child genius, [PAWN_pronoun] was bullied as a charity case and couldn't make friends with the other kids.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farm boy{{br}}(Farm boy)&lt;br /&gt;
| John worked on his family's farm, looking after the animals and treating them when they were injured. Preferring hands-on tasks and the outdoors, he avoided softer jobs that might have kept him cooped up inside.&lt;br /&gt;
&lt;br /&gt;
He enjoyed this lonely work, and tended to stay out of people's way and do his own thing.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farm hand{{br}}(Farm hand)&lt;br /&gt;
| [PAWN_nameDef] was born on a farm on a smaller colony world.&lt;br /&gt;
&lt;br /&gt;
Everything was taken care of by the few members of the farm, including [PAWN_nameDef]. This helped [PAWN_objective] build independence, spirit, and a well-rounded character.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Plants: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farm kid{{br}}(Farm kid)&lt;br /&gt;
| [PAWN_nameDef] grew up on his family's beef farm. He enjoyed working the fields and taking care of the animals.&lt;br /&gt;
| Plants: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farm mechanic{{br}}(Mechanic)&lt;br /&gt;
| Growing up on a farming planet, [PAWN_nameDef] spent [PAWN_possessive] time learning about the automated machinery that grew and harvested the multitude of crops.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Plants: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farmer boy{{br}}(Farmer)&lt;br /&gt;
| Benjamin's parents died in a fire when he was seven. He grew up on his uncle's farm, plowing fields and doing manual labor.&lt;br /&gt;
&lt;br /&gt;
He could not bear answering questions about his parents, so he replaced social contact with hard work.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Plants: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}Social{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farmer's daughter{{br}}(Farm girl)&lt;br /&gt;
| [PAWN_nameDef] grew up on [PAWN_possessive] parents' vineyard. [PAWN_pronoun] spent [PAWN_possessive] youth exploring the land and making friends with various bugs and insects.&lt;br /&gt;
&lt;br /&gt;
Having heard stories about all the fascinating things out there in the universe, [PAWN_pronoun] always dreamed of venturing out to see it for [PAWN_objective]self.&lt;br /&gt;
| Social: {{--|1}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Farmer's son{{br}}(Farmer)&lt;br /&gt;
| Ade spent much of his childhood learning biome farming. In his biome they kept animals to investigate which would cope best in the alien environment.&lt;br /&gt;
&lt;br /&gt;
Due to this, the travel restrictions and oxygen rationing system, he rarely got to meet anyone from outside his family.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{+|1}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Feral child{{br}}(Feral)&lt;br /&gt;
| Abandoned on an animal planet as a small child with nought but a blanket with a name embroidered on it, Felix made himself one with the wilderness.&lt;br /&gt;
&lt;br /&gt;
When he was 13, he encountered a team of mineral surveyors, who &amp;quot;offered&amp;quot; him passage off of the planet.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Intellectual{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Feral child{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef] and his family lived a hard but prosperous lives along with their fellow colonists on a distant rimworld.&lt;br /&gt;
&lt;br /&gt;
One day a group of mechanoids attacked, killing everyone aside from Robert. He then lived alone in the desert until a group of raiders found him.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Feudal farm boy{{br}}(Slave)&lt;br /&gt;
| [PAWN_nameDef] was the son of a medieval farmer, and was expected to follow in his footsteps. He was brought up as a kind, well trained farm boy.&lt;br /&gt;
&lt;br /&gt;
He lived in an unusual feudal kingdom which co-existed with a midworld society which was itself well-known for genetic manipulation.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Feudal lordling{{br}}(Lordling)&lt;br /&gt;
| [PAWN_nameDef] grew up on a feudal world that was part of a multi-planet empire. As the son of a high lord, [PAWN_pronoun] enjoyed many privileges.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned to maneuver in the both the political landscape and in close quarters combat.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Fire-scarred child{{br}}(Scarred)&lt;br /&gt;
| Duster was an active child who lived an uneventful childhood until he fell into a fire and suffered horrific burns to his hands and arms. Although the scars have faded, he can't bear to be in close proximity to fire.&lt;br /&gt;
&lt;br /&gt;
| Mining: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&lt;br /&gt;
| Cooking{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Forest child{{br}}(Forest kid)&lt;br /&gt;
| When [PAWN_pronoun] was a baby, [PAWN_nameDef]'s mother went insane and left [PAWN_objective] in the woods.&lt;br /&gt;
&lt;br /&gt;
Raised by wild people, [PAWN_nameDef] was known for both loving and killing animals.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Foundry apprentice{{br}}(Foundryman)&lt;br /&gt;
| [PAWN_nameDef] grew up as an apprentice in the foundries of an industrial world. This experience gave [PAWN_objective] metalworking skills and strong muscles, but stunted [PAWN_possessive] artistic development.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Freethinker{{br}}(Thinker)&lt;br /&gt;
| [PAWN_nameDef] grew up on a toxic world with tyrannical leaders. While the rest of the population was high on the planet's narcotic exports, [PAWN_pronoun] joined a rebel militia.&lt;br /&gt;
&lt;br /&gt;
After a risky operation against the regime failed, [PAWN_pronoun] fled the planet, staying alive by threatening mutual annihilation with a planetcracker antimatter bomb.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Frightened child{{br}}(Scared)&lt;br /&gt;
| [PAWN_nameDef] grew up with a laundry list of phobias and neuroses. [PAWN_pronoun] feared, among other things, doctors and foodborne pathogens.{{br}}As a result, [PAWN_pronoun] learned to cook and care for [PAWN_objective]self, but many of [PAWN_possessive] fears dog [PAWN_objective] in adulthood.&lt;br /&gt;
| Medicine: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Frontier marshal{{br}}(Marshal)&lt;br /&gt;
| Henry inherited a sense of duty from his father, and began a law enforcement career on his frontier homeworld.&lt;br /&gt;
&lt;br /&gt;
He tried to uphold the law with honor, but the corruption and greed of local government officials often discouraged him.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Galactic page{{br}}(Page)&lt;br /&gt;
| [PAWN_nameDef] served the high admiral of a space fleet. [PAWN_pronoun] learned the ways of court, including etiquette and speechcraft.&lt;br /&gt;
&lt;br /&gt;
In his feudal society, it was considered a great honor to serve a man of such prestige.&lt;br /&gt;
| Social: {{+|6}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}ManualSkilled{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Game fanatic{{br}}(Gamer)&lt;br /&gt;
| [PAWN_nameDef] was a fanatical gamer who learned to survive in virtual reality games.&lt;br /&gt;
&lt;br /&gt;
Once, while attempting to prove [PAWN_possessive] skills in the real world, [PAWN_pronoun] was abducted by a criminal scientist and experimented on. [PAWN_pronoun] escaped, but the experience stayed with him.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gang member{{br}}(Gang kid)&lt;br /&gt;
| [PAWN_nameDef] grew up without parents. [PAWN_possessive] whole life was spent alone, fighting for survival on the streets.&lt;br /&gt;
&lt;br /&gt;
No matter how hard it became to survive, he never gave up.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gang member{{br}}(Ganger)&lt;br /&gt;
| [PAWN_nameDef] grew up homeless on an urbworld. [PAWN_pronoun] was forced to fight and struggle for everything, making [PAWN_objective] hard and ruthless long before adulthood.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] would have stayed in those streets, had [PAWN_pronoun] not been injured in a shootout and had his body confiscated for use by one of the worldwide city's ruling corporations. &lt;br /&gt;
| Plants: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&lt;br /&gt;
| Intellectual{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Glitterworld kid{{br}}(Glit kid)&lt;br /&gt;
| The son of a genetically-engineered &amp;quot;perfect mate&amp;quot; on a glitterworld, Chaz was much more shy, withdrawn and nervous than his parents. [PAWN_pronoun] kept mostly to himself, studying science and medicine and taking on gardening as a hobby. &lt;br /&gt;
&lt;br /&gt;
In [PAWN_possessive] teens, [PAWN_pronoun] ran away from home, seeking a quieter life.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Glitterworld nerd{{br}}(Nerd)&lt;br /&gt;
| [PAWN_nameDef] loved technology from the day [PAWN_pronoun] was born. [PAWN_pronoun] had a mechanoid companion which [PAWN_pronoun] tried to modify when [PAWN_pronoun] was 10.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] obsession with technology meant that [PAWN_pronoun] never appreciated arts or culture.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Glitterworld royal{{br}}(Royalty)&lt;br /&gt;
| [PAWN_nameDef] grew up in a glitterworld royal household. She was groomed from a young age to marry into another planet's royal family.&lt;br /&gt;
&lt;br /&gt;
Unfortunately, her crooked teeth made her undesirable to suitors, so she became bitter and resentful.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! G-nome sculptor{{br}}(Sculptor)&lt;br /&gt;
| [PAWN_nameDef] was engineered in a lab as part of the G-nome Project. He was implanted at birth with encyclopedic knowledge of all aspects of xenobiology.&lt;br /&gt;
&lt;br /&gt;
The G-nome scientists nicknamed him Gizmo and occupied him with sculpting. He developed a love of sculpting gnomes and gnome accessories.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gun kid{{br}}(Gun kid)&lt;br /&gt;
| Growing up in a urbworld, [PAWN_nameDef] never had it easy. Every day was a struggle and pollution, hunger, and gangs of older kids.&lt;br /&gt;
&lt;br /&gt;
In the little space he had to himself, he studied his passion - guns, combat tactics, and war history.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Gymnast{{br}}(Gymnast)&lt;br /&gt;
| [PAWN_nameDef] was a professional gymnast at an early age. Thanks to her skills, she was able to leave her homeworld and enroll in a glitterworld university.&lt;br /&gt;
&lt;br /&gt;
Because of the lack of career opportunities in gymnastics, she left the university unemployed and carrying an enormous debt.&lt;br /&gt;
| Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Herder&lt;br /&gt;
| As a child, [PAWN_nameDef] tended the tribe’s muffalo herds, keeping them safe from predators and treating the sick. It was quiet work, but [PAWN_pronoun] enjoyed being away from people.&lt;br /&gt;
| Melee: {{+|3}}{{br}}Medical: {{+|3}}{{br}}Social: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Industrial orphan{{br}}(Orphan)&lt;br /&gt;
| [PAWN_nameDef] never knew [PAWN_possessive] parents. [PAWN_possessive] earliest memories were of drudgery in the mines and workhouses of [PAWN_possessive] industrial world.{{br}}Because of this, [PAWN_pronoun] never received a proper education.&lt;br /&gt;
| Mining: {{+|3}}{{br}}Crafting: {{+|3}}{{br}}Intellectual: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medical assistant{{br}}(Medic)&lt;br /&gt;
| [PAWN_nameDef] was born during a catastrophic war in which both sides used napalm extensively. [PAWN_pronoun] grew up helping [PAWN_possessive] parents in an infirmary, treating the cascade of horrific burns from the battlefields. [PAWN_pronoun] was left with a lifelong fear of fire.&lt;br /&gt;
| Medical: {{+|5}}&lt;br /&gt;
| Firefighting&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval lordling{{br}}(Lordling)&lt;br /&gt;
| [PAWN_nameDef] was a minor noble in an old kingdom on a medieval world. [PAWN_pronoun] grew up in a manor made of stone, served by bowing lowerclassmen.{{br}}Such a life teaches no technical skills and instils a lifelong aversion to manual labor - but [PAWN_nameDef] learned early the ways of social manipulation.&lt;br /&gt;
| Construction: {{--|1}}{{br}}Mining: {{--|1}}{{br}}Plants: {{--|1}}{{br}}Social: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval slave{{br}}(Slave)&lt;br /&gt;
| [PAWN_nameDef] grew up pulling carts and digging holes on a medieval world. Simple manual labor is [PAWN_possessive] oldest companion - along with the master's lash.{{br}}[PAWN_pronoun] didn't learn to read until age nine.&lt;br /&gt;
| Construction: {{+|2}}{{br}}Mining: {{+|2}}{{br}}Plants: {{+|2}}{{br}}Intellectual: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Music lover{{br}}(Musician)&lt;br /&gt;
| As a child, [PAWN_nameDef] had a talent for playing musical instruments and singing. [PAWN_pronoun] was given expert training and loved to perform in recitals and concerts, though the lavish praise [PAWN_pronoun] received made [PAWN_objective] a little self-obsessed.&lt;br /&gt;
| Artistic: {{+|5}}{{br}}Social: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mute&lt;br /&gt;
| [PAWN_nameDef] was greatly affected by a traumatic event early in [PAWN_possessive] life. For many years [PAWN_pronoun] refused to speak to people, preferring instead to play with [PAWN_possessive] household's numerous pets.&lt;br /&gt;
| Animals: {{+|5}}&lt;br /&gt;
| Social&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Organ farm&lt;br /&gt;
| [PAWN_nameDef] was raised in an illegal underground organ farm. [PAWN_possessive] body was used to grow organic implants for wounded mercenaries. Though [PAWN_possessive] upbringing has left [PAWN_objective] haunted, it has also given [PAWN_objective] a unique understanding of human biology.&lt;br /&gt;
| Medical: {{+|5}}&lt;br /&gt;
| Violent&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pyromaniac{{br}}(Pyro)&lt;br /&gt;
| From an early age, [PAWN_nameDef] had an unhealthy fascination with fire. [PAWN_pronoun] would set refuse heaps ablaze and become so entranced by the flames [PAWN_pronoun] would absent-mindedly burn [PAWN_objective]self.{{br}}One day while playing with matches, [PAWN_pronoun] carelessly burned down [PAWN_possessive] home.&lt;br /&gt;
| Cooking: {{--|2}}{{br}}Artistic: {{+|3}}{{br}}Social: {{--|3}}&lt;br /&gt;
| Firefighting&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Reclusive child{{br}}(Reclusive)&lt;br /&gt;
| [PAWN_nameDef] didn’t learn to speak until [PAWN_pronoun] was nearly 5 years old, and, even then, [PAWN_pronoun] preferred to keep to [PAWN_objective]self. When [PAWN_pronoun] was in [PAWN_possessive] early teens, [PAWN_pronoun] made a habit of wandering off from the village to live in the wilderness for weeks at a time.&lt;br /&gt;
| Melee: {{+|4}}{{br}}Crafting: {{+|3}}&lt;br /&gt;
| Social&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Scavenger&lt;br /&gt;
| [PAWN_nameDef] spent [PAWN_possessive] childhood escaping grunt work to go digging through wrecks and ruins for treasures. [PAWN_possessive] natural curiosity got [PAWN_objective] into a lot of trouble, but it also yielded many interesting finds.&lt;br /&gt;
| Mining: {{+|3}}{{br}}Intellectual: {{+|3}}&lt;br /&gt;
| Dumb labor&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Scout&lt;br /&gt;
| Born to colonial administrators from a small imperial power, [PAWN_nameDef] was enrolled in a youth program that taught military scouting skills.{{br}}[PAWN_pronoun] learned to survive in the wilderness, to obey, and not to ask questions.&lt;br /&gt;
| Shooting: {{+|3}}{{br}}Construction: {{+|1}}{{br}}Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}Intellectual&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Shelter child{{br}}(Shelterkid)&lt;br /&gt;
| [PAWN_nameDef] grew up in a shelter deep beneath a toxic world. [PAWN_pronoun] received a comprehensive education, but had no opportunity to do physical labour.&lt;br /&gt;
| Construction: {{--|2}}{{br}}Mining: {{--|2}}{{br}}Medical: {{+|3}}{{br}}Social: {{+|2}}{{br}}Intellectual: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Shopkeeper{{br}}(Shopkeep)&lt;br /&gt;
| [PAWN_nameDef]'s mother was often ill, and it fell to [PAWN_objective] to run the store which was their only source of income. [PAWN_pronoun] learned a little about the exotic artifacts which [PAWN_pronoun] sold, and a lot about the art of the deal.&lt;br /&gt;
| Social: {{+|4}}{{br}}Intellectual: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sickly child{{br}}(Patient)&lt;br /&gt;
| As a child, [PAWN_nameDef] suffered from a rare disease. Quarantined in a research hospital, [PAWN_pronoun] had minimal human contact and got little physical exercise. In the sterile hospital environment, however, [PAWN_pronoun] became very familiar with science and medicine.&lt;br /&gt;
| Melee: {{--|2}}{{br}}Construction: {{--|2}}{{br}}Medical: {{+|5}}{{br}}Social: {{--|2}}{{br}}Intellectual: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sole survivor{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef]’s entire tribe was wiped out in a raid. Though [PAWN_pronoun] was adopted by another group, [PAWN_pronoun] was emotionally scarred, and preferred to stay near home, cooking and tending crops.&lt;br /&gt;
| Cooking: {{+|3}}{{br}}Plants: {{+|3}}&lt;br /&gt;
| Violent&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Story writer{{br}}(Writer)&lt;br /&gt;
| As a child, [PAWN_nameDef] was addicted to reading. [PAWN_pronoun] would spend all day in [PAWN_possessive] local library with [PAWN_possessive] nose in a book. When budget cuts forced the library to close, [PAWN_nameDef] was distraught. [PAWN_pronoun] decided to fill the gap by writing [PAWN_possessive] own stories instead.&lt;br /&gt;
| Artistic: {{+|4}}{{br}}Intellectual: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Test subject{{br}}(Testee)&lt;br /&gt;
| On the most corrupt urbworlds, scientists without a moral compass commit unspeakable atrocities in the name of research. [PAWN_nameDef] was kept alone in a sealed facility from birth and subjected to a variety of behavioural experiments in an attempt to turn [PAWN_objective] into a perfect super-soldier.&lt;br /&gt;
| Shooting: {{+|4}}&lt;br /&gt;
| Social{{br}}Caring{{br}}Firefighting&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Tribe child{{br}}(Tribal)&lt;br /&gt;
| [PAWN_nameDef] grew up in the tribe, running around the village, moving with the muffalo herds, learning essential skills from [PAWN_possessive] parents.{{br}}[PAWN_pronoun] never learned to read and never saw a machine that wasn't an ancient ruin.&lt;br /&gt;
| Shooting: {{+|2}}{{br}}Melee: {{+|2}}{{br}}Plants: {{+|2}}{{br}}Intellectual: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Urbworld urchin{{br}}(Urchin)&lt;br /&gt;
| The urbworlds - ancient and deep industrial cityscapes bursting with humanity and poison. [PAWN_nameDef] grew up in the dark, unwanted reaches of such a place. [PAWN_pronoun] had to fight for every scrap of food.&lt;br /&gt;
| Shooting: {{+|2}}{{br}}Melee: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Vatgrown soldier{{br}}(Vatgrown)&lt;br /&gt;
| [PAWN_nameDef] wasn't made as a person, but as an instrument of destruction. Grown in a bioweapons facility and taught combat during [PAWN_possessive] accelerated growth, [PAWN_nameDef] still has a proclivity for combat of all kinds and an aversion to human contact.&lt;br /&gt;
| Shooting: {{+|4}}{{br}}Melee: {{+|4}}&lt;br /&gt;
| Social{{br}}Caring&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Vengeful child{{br}}(Vengeful)&lt;br /&gt;
| As a child, [PAWN_nameDef] returned to [PAWN_possessive] village to find that it had been wiped out by bandits. [PAWN_pronoun] swore revenge on the attackers and began a violent rampage across the wilderness.&lt;br /&gt;
| Shooting: {{+|3}}{{br}}Melee: {{+|3}}&lt;br /&gt;
| Caring&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! War refugee{{br}}(Refugee)&lt;br /&gt;
| War broke out in [PAWN_nameDef]'s home when [PAWN_pronoun] was a baby. [PAWN_possessive] parents fled with [PAWN_objective], seeking safety wherever they could find it. [PAWN_nameDef]'s earliest memories are of being taught how to defend [PAWN_objective]self.{{br}}The violence and destruction [PAWN_pronoun] witnessed left [PAWN_objective] scarred for life.&lt;br /&gt;
| Cooking: {{+|2}}{{br}}Crafting: {{+|2}}&lt;br /&gt;
| Violent&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Wreckage explorer{{br}}(Explorer)&lt;br /&gt;
| Two generations before [PAWN_nameDef] was born, an apocalyptic war dragged [PAWN_possessive] home planet into anarchy. [PAWN_nameDef] was tasked with watching [PAWN_possessive] tribe's herds, but often shirked [PAWN_possessive] duties to go exploring the crashed warships scattered around the planet.&lt;br /&gt;
| Animals: {{+|3}}{{br}}Intellectual: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=List_of_childhood_backstories&amp;diff=63379</id>
		<title>List of childhood backstories</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=List_of_childhood_backstories&amp;diff=63379"/>
		<updated>2019-05-07T17:51:56Z</updated>

		<summary type="html">&lt;p&gt;Mehni: Part B-C of the definitive list of backstories, sourced from build 2231. Script made. This is as they appear in the game.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;amp;larr; &amp;lt;small&amp;gt;[[Backstories]]&amp;lt;/small&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| {{STDT| sortable c_17}}&lt;br /&gt;
! Title&amp;lt;br /&amp;gt;(Short Title) !! Description !! Skill Modifications !! Incapable of !! Civil !! Raider !! Slave !! Trader !! Traveler !! Tribal&lt;br /&gt;
|-&lt;br /&gt;
! Abandoned child{{br}}(Abandoned)&lt;br /&gt;
| [PAWN_nameDef] was a quick witted, funny child. One day, [PAWN_pronoun] wandered off on [PAWN_possessive] wealthy genetic parents, and was ultimately lost in a supposedly unused ore warehouse. Due to cloning technology, [PAWN_possessive] parents decided that the time looking for [PAWN_objective] was better spent on just cloning a better son.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|1}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Abandoned orphan{{br}}(Orphan)&lt;br /&gt;
| Abandoned at birth, young [PAWN_nameDef] started [PAWN_possessive] life in an orphanage.&lt;br /&gt;
&lt;br /&gt;
A rascal and a scoundrel, [PAWN_pronoun] became a clever troublemaker.&lt;br /&gt;
| Plants: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Abductee{{br}}(Abductee)&lt;br /&gt;
| [PAWN_nameDef] was abducted at a young age and forced to do menial labor on a pirate ship.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Abductee{{br}}(Abductee)&lt;br /&gt;
| [PAWN_nameDef] was abducted by xenohumans when [PAWN_pronoun] was still a baby. They experimented on [PAWN_objective] to understand his genetic structure.&lt;br /&gt;
&lt;br /&gt;
As [PAWN_pronoun] grew up, [PAWN_nameDef] grew a little bit too big and strong for his captors and eventually escaped.&lt;br /&gt;
&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Academy student {{br}}(Student )&lt;br /&gt;
| [PAWN_nameDef] went to school like a good space cadet would. He was very tall and was known for his good looks.&lt;br /&gt;
&lt;br /&gt;
Though he worried more about his hairstyle than his grades, he still somehow passed the final exams.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Accursed child{{br}}(Cursed)&lt;br /&gt;
| [PAWN_nameDef] was born at the peak of a lunar eclipse. The elders declared [PAWN_objective] a child of darkness brought [PAWN_objective] under their care.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] entire childhood was spent studying the lore and rituals of [PAWN_possessive] people - until the day of calling.&lt;br /&gt;
| Construction: {{--|1}}&amp;lt;/br&amp;gt;Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| Firefighting{{br}}Cleaning{{br}}Hauling{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Adventuring child{{br}}(Adventurer)&lt;br /&gt;
| Axle was raised to become an engineer. For years, he planned to stow away on a cargo ship and start a new, more adventuresome life.&lt;br /&gt;
&lt;br /&gt;
One night, after his parents fell asleep, he managed to sneak on board a cargo ship just before it left port.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Adventurous youth{{br}}(Adventurer)&lt;br /&gt;
| [PAWN_nameDef] explored all around [PAWN_possessive] family's large estate, uncovering little natural wonders hidden in nearby catacombs, rivers, and caves.&lt;br /&gt;
&lt;br /&gt;
During his teenage years, [PAWN_nameDef] made numerous enemies&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Amateur astronomer{{br}}(Astronomer)&lt;br /&gt;
| [PAWN_nameDef] was fascinated with astronomy. [PAWN_pronoun] would spend hours gazing at planets and nebulae through his telescope.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] is credited with discovering a small comet that would, years later, strike a nearby moon and disrupt the mining operations there.&lt;br /&gt;
| Intellectual: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Amateur botanist{{br}}(Botanist)&lt;br /&gt;
| Spending many summers crawling through dirt, Christian found he had quite the green thumb. Instead of learning to cook the food he grew, he just grew more and more.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Amateur engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] grew up in a family with a military and engineering background. [PAWN_pronoun] wanted to join the army but his father didn't like the idea, so [PAWN_possessive] interest turned to great flying machines and works of engineering. [PAWN_pronoun] secretly hoped that this would one day lead him to a life of galactic exploration.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|1}}&lt;br /&gt;
| Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Angry student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] trained towards [PAWN_possessive] dream of working for his hometown's local council.&lt;br /&gt;
&lt;br /&gt;
For reasons he never quite understood, [PAWN_pronoun] was bullied relentlessly by his classmates. [PAWN_pronoun] chose to repress his rage.&lt;br /&gt;
| Intellectual: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Animal caretaker{{br}}(Caretaker)&lt;br /&gt;
| Born on a medieval farm, [PAWN_nameDef] was tasked with caring for domestic animals. [PAWN_pronoun] grew to love them.&lt;br /&gt;
&lt;br /&gt;
With time, [PAWN_pronoun] learned to tame wild animals. [PAWN_pronoun] dreamed of one day meeting a thrumbo and taming it.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Animal lab tech{{br}}(Lab tech)&lt;br /&gt;
| [PAWN_nameDef] worked as a technician in a lab studying animals.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] spent [PAWN_possessive] days taking care of the animals and cleaning up after them. [PAWN_pronoun] dreamed of having [PAWN_possessive] own lab one day.&lt;br /&gt;
| Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|3}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Antisocial child{{br}}(Antisocial)&lt;br /&gt;
| [PAWN_nameDef] lacked typical social skills, and avoided social interaction.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] gained satisfaction only from steady work. [PAWN_pronoun] especially disliked speaking with overly creative or outgoing individuals.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Apocalypse child {{br}}(Apocalypse)&lt;br /&gt;
| [PAWN_nameDef] spent his childhood on a post-apocalyptic world. He fought for survival from a young age, on a planet where trust did not exist.&lt;br /&gt;
&lt;br /&gt;
He told everyone that he had no luck.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Apocalypse survivor{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef] was born during a time of unrest on [PAWN_possessive] homeworld, as climate change threatened mass starvation and flooding. As [PAWN_pronoun] grew up the situation worsened - billions died and peaceful states descended into anarchy. [PAWN_nameDef] and [PAWN_possessive] parents did whatever they had to to survive.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Apprentice oracle{{br}}(Oracle)&lt;br /&gt;
| [PAWN_nameDef] was chosen at an early age by the village elders to keep the sacred rituals of the Oracle.&lt;br /&gt;
&lt;br /&gt;
An irrepressibly curious child, [PAWN_nameDef] caused a religious crisis for [PAWN_possessive] tribe when [PAWN_pronoun] accidentally flipped a switch to open the &amp;quot;tombs&amp;quot; of the Gods - cryptosleep caskets inhabited by some very confused ancestors.  &lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Apprentice smith{{br}}(Apprentice)&lt;br /&gt;
| [PAWN_nameDef] grew up helping in his father's smithy.&lt;br /&gt;
&lt;br /&gt;
They were some of the last smiths on the planet that to use traditional smithing methods. They even collect some materials themselves.&lt;br /&gt;
&lt;br /&gt;
Sometimes, after work, [PAWN_nameDef] would practice using the swords [PAWN_pronoun] forged.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artful dodger{{br}}(Dodger)&lt;br /&gt;
| Robin grew up on one of the urbworlds and had to fend for himself all his life. He never trusted anyone, relying on his persuasiveness and cunning to survive.&lt;br /&gt;
&lt;br /&gt;
He soon became skilled with firearms and knives as well as words.&lt;br /&gt;
| Shooting: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}Crafting{{br}}Cooking{{br}}Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artisan farmer{{br}}(Farmer)&lt;br /&gt;
| [PAWN_nameDef] grew up on a [PAWN_possessive] family's glitterworld farm. They were one of the last farms on the planet that preferred traditional farming methods to glitterworld technology.&lt;br /&gt;
| Plants: {{+|7}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artistic weirdo{{br}}(Weirdo)&lt;br /&gt;
| [PAWN_nameDef] grew up in a house near a bustling midworld metropolis.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was talented at art and creative work, but often acted strangely, and thus had few friends.&lt;br /&gt;
| Cooking: {{+|1}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aspergers rebel{{br}}(Rebel)&lt;br /&gt;
| [PAWN_nameDef] grew up as a rebel on an formerly-advanced rimworld devastated by war.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] Aspergers syndrome meant he struggled with social situations and was incapable of caring, but [PAWN_pronoun] learned hard skills like research and shooting very quickly.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&lt;br /&gt;
| Caring{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aspiring engineer{{br}}(Tinkerer)&lt;br /&gt;
| [PAWN_nameDef] had a fascination with gadgets and gizmos. [PAWN_pronoun] took apart and put together almost anything [PAWN_pronoun] could find.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] got used to repairing toys brought to [PAWN_objective] by other children, and even fixed a few devices from [PAWN_possessive] elders.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aspiring physicist{{br}}(Student)&lt;br /&gt;
| The daughter of an engineer and doctor, [PAWN_nameDef]'s early life was intellectually rich. After visiting a physics lab, she decided she wanted to be a quantum physicist.&lt;br /&gt;
&lt;br /&gt;
Bitten by a camel, kicked off a horse, and chased by dogs, [PAWN_nameDef] developed a fear of animals.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}Animals{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aspiring pop idol{{br}}(Pop idol)&lt;br /&gt;
| Min was being trained in song and dance to become the next big pop idol. She grew up being taken care of by company handlers.&lt;br /&gt;
&lt;br /&gt;
She never knew manual labor, but learned a lot about music and social etiquette.&lt;br /&gt;
| Shooting: {{--|4}}&amp;lt;/br&amp;gt;Melee: {{--|4}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&lt;br /&gt;
| ManualDumb{{br}}Cleaning{{br}}Hauling{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Athlete{{br}}(Athlete)&lt;br /&gt;
| [PAWN_nameDef] was professional athlete at early age. Thanks to her skills, she was able to leave her homeworld and enroll in a glitterworld university of science and technology.&lt;br /&gt;
&lt;br /&gt;
Because of her demanding schedule and introverted nature, she became socially inept.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Awkward nerd{{br}}(Nerd)&lt;br /&gt;
| Always fascinated by machines, Dave spent his time studying robotics and holography. He preferred the company of his scientific creations to that of other people.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blackjack player{{br}}(Gambler)&lt;br /&gt;
| The only useful skill [PAWN_nameDef] learned from his tough military school was card counting. He amassed many enemies by cheating at casinos, becoming ever more edgy and violent as the threat of retaliation grew.&lt;br /&gt;
&lt;br /&gt;
When he was finally caught, they burned half his skin off. He'll never be able to face fire or violence again.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|4}}&lt;br /&gt;
| Violent{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blacksmith's son{{br}}(Blacksmith)&lt;br /&gt;
| [PAWN_nameDef]'s father owned the blacksmith shop in an run-down old city district. [PAWN_nameDef] would help his father whenever he could.&lt;br /&gt;
&lt;br /&gt;
Later, [PAWN_possessive] father took him as a blacksmith's apprentice and raised him as a man. [PAWN_nameDef] also to on shooting as a hobby.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blessed child{{br}}(Blessed)&lt;br /&gt;
| [PAWN_nameDef] was born under auspicious circumstances to a midworld spiritual group and held in reverence throughout [PAWN_possessive] childhood.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned to take care of the poor and give succor to the faithful from an early age.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bodyguard trainee{{br}}(Bodyguard)&lt;br /&gt;
| [PAWN_nameDef] was born into a famously skilled family of bodyguards. [PAWN_possessive] mothers Elena and Victoria forced [PAWN_objective] into many dangerous situations, training [PAWN_objective] to put [PAWN_possessive] client's well-being over [PAWN_possessive] own.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] was taught about many herbs and natural poisons to help [PAWN_objective] prevent clients from being poisoned.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bone collector{{br}}(Pupil)&lt;br /&gt;
| Born to a family of fortune hunters, [PAWN_nameDef] always had a passion for ancient history.&lt;br /&gt;
&lt;br /&gt;
Though never a tough or social boy, [PAWN_pronoun] loved to dig through history books as well as dirt piles.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{--|3}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bookworm{{br}}(Bookworm)&lt;br /&gt;
| [PAWN_nameDef] spent his youth in the library, reading every book he could about the technical marvels of space travel, the engineering ingenuity of the space-faring pioneers, and the horrible yet fascinating tales of the mechanoid races. He vowed that one day, he would see these things for himself.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Boy scout{{br}}(Scout)&lt;br /&gt;
| [PAWN_nameDef] was in a boy scout troop on a midworld.&lt;br /&gt;
&lt;br /&gt;
He learned many survival skills including how to thrive in the outdoors and how to tend to basic wounds.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Boy soldier{{br}}(Soldier)&lt;br /&gt;
| War may never change - but the cast of characters does.&lt;br /&gt;
&lt;br /&gt;
Born on a violent urbworld, [PAWN_nameDef] was trained from a young age to fight the wars of others, and became rather good at it. &lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Brothel gofer{{br}}(Gofer)&lt;br /&gt;
| Born on a steam-powered midworld wracked by a century of economic crises, [PAWN_nameDef] went to work at a young age. Scrounging, shoe-polishing, sewing - he did it all. But [PAWN_pronoun] was most known as a brothel gofer, delivering all manner of aphrodisiacs and chemicals to the girls' rooms.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Brutal thief{{br}}(Thief)&lt;br /&gt;
| Growing up in a gang, [PAWN_nameDef] learned the brutality of the streets.&lt;br /&gt;
&lt;br /&gt;
Knowing that showing weakness could be fatal, he closed himself of to others.&lt;br /&gt;
| Plants: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bunker kid{{br}}(Bunker kid)&lt;br /&gt;
| Ricardo grew up in an underground shelter, waiting for radioactive fallout to subside. His rich family had gained access to a luxury bunker city, while billions died on the surface.&lt;br /&gt;
&lt;br /&gt;
Determined to one day seek revenge against the hated enemy, Ricardo spent most of his time practicing shooting in his private training facility.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Artistic{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cadet{{br}}(Cadet)&lt;br /&gt;
| Born on the planet New China, [PAWN_nameDef]'s father was a police chief and kept extremely strict watch over his son.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] had to do military-style drill exercises every day and keep his room spotlessly clean, always ready for inspection. [PAWN_pronoun] came to abhor violence.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caravan child{{br}}(Child)&lt;br /&gt;
| [PAWN_nameDef] was born on a urbworld merchant ship to an entrepreneurial mother and an absent father. Born male, she disliked boy stuff, and got into her mother’s things all the time.&lt;br /&gt;
&lt;br /&gt;
Eventually, she traveled with her mother to a glitterworld and spent her savings on a body she was happy with.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caravan traveler{{br}}(Traveler)&lt;br /&gt;
| Born to a family of traveling merchants, [PAWN_nameDef] was mentored by [PAWN_possessive] father in the ways of being a trader. [PAWN_pronoun] was often tasked with caring for the pack animals. Due to [PAWN_possessive] nomadic lifestyle, [PAWN_pronoun] hunted and bartered for [PAWN_possessive] food.&lt;br /&gt;
| Plants: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cat herder{{br}}(Herder)&lt;br /&gt;
| [PAWN_nameDef] helped out in his father's cat breeding business, socializing, herding, and feeding hundreds of cats.&lt;br /&gt;
&lt;br /&gt;
When he refused to clean up after the cats, [PAWN_pronoun] was transferred to the breeding science division.&lt;br /&gt;
| Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&lt;br /&gt;
| Cleaning{{br}}Hauling{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cave child{{br}}(Cave kid)&lt;br /&gt;
| [PAWN_nameDef] grew up in a cave on an tundra planet, and was adopted by a traveling group of entertainers known only as the Wizards. Once a starfaring crew, the Wizards told [PAWN_objective] wondrous stories about the universe.&lt;br /&gt;
&lt;br /&gt;
One day, the Wizards did not return from scavenging. After years of waiting, [PAWN_nameDef] set off into space to find them.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caveworld tender{{br}}(Cave kid)&lt;br /&gt;
| [PAWN_nameDef] grew up in cave complex deep beneath the surface of an inhospitable world. [PAWN_pronoun] worked with the other children tending the tribe’s fungus crops.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caveworld tunneler{{br}}(Tunneler)&lt;br /&gt;
| [PAWN_nameDef] worked as a digger in the massive underground cave complex.{{br}}[PAWN_pronoun] knows rock so well that [PAWN_pronoun] can almost navigate caves by smell.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Mining: {{+|6}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&lt;br /&gt;
| Intellectual{{br}}Crafting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Chess master{{br}}(Chesshead)&lt;br /&gt;
| [PAWN_nameDef] loved to play chess. [PAWN_pronoun] even earned the nickname Bishop for some of [PAWN_possessive] craftier moves. &lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] never got into trouble - mostly because he was good at not getting caught. &lt;br /&gt;
&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child of drifters{{br}}(Drifter)&lt;br /&gt;
| Ever since [PAWN_pronoun] was very small, [PAWN_nameDef] had never known a home beyond [PAWN_possessive] parent's ship. They were a family of nomads whose meandering provided a constant change of scenery. [PAWN_possessive] life was often perilous but never dull, and [PAWN_pronoun] inherited [PAWN_possessive] parents' wanderlust at a young age.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|6}}&lt;br /&gt;
| Firefighting{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child of glass{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef] was raised underground on a &amp;quot;marble&amp;quot; planet - a wasteland of radioactive asphalt and toxic fallout.&lt;br /&gt;
&lt;br /&gt;
To survive on a planet devoid of life, [PAWN_pronoun] had to learn how to farm underground and how to fight without wasting bullets.&lt;br /&gt;
| Plants: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| Social{{br}}Animals{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child prodigy{{br}}(Prodigy)&lt;br /&gt;
| After graduating college at age twelve, Jered devoted his life to becoming immortal.  However his research crossed the line when he tried to modify his body using gene therapy and mechanical augmentation.  He was arrested and condemned to a prison planet.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child researcher{{br}}(Researcher)&lt;br /&gt;
| A frightfully intelligent child, [PAWN_nameDef] was kidnapped by a glitterworld corporation and forced to research technologies for weaponizing anti-matter.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] vowed never to invent anything again.&lt;br /&gt;
| Intellectual: {{+|7}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&lt;br /&gt;
| Crafting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child scientist{{br}}(Scientist)&lt;br /&gt;
| After graduating college very young, [PAWN_nameDef] devoted [PAWN_possessive] life to becoming immortal. He was arrested for trying to genetically modify himself.&lt;br /&gt;
&lt;br /&gt;
The authorities released [PAWN_objective] on the condition that he would work in a government lab on spacecraft technology. He was permitted to continue his personal research in his free time.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child slave{{br}}(Slave)&lt;br /&gt;
| Graham was born to a poor family on a rimworld. His father sold him into slavery at a young age and he was traded many times. A tycoon bought him as part of a child labor force and sent down into mines to look after machines and to work alongside them.&lt;br /&gt;
&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|3}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child spy {{br}}(Spy )&lt;br /&gt;
| Children are often presumed innocent, and so make ideal spies. [PAWN_nameDef] was trained in the arts of infiltration and information-gathering when [PAWN_pronoun] was very young.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] spent years behind enemy lines, gathering intel in a brutal planetary war. During this time, [PAWN_pronoun] had limited opportunity for education. &lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child spy{{br}}(Spy)&lt;br /&gt;
| Children are often presumed innocent, and can be ideal as spies. [PAWN_nameDef] was trained in the art of infiltration and information-gathering when [PAWN_pronoun] was just nine years old.{{br}}[PAWN_possessive] years behind enemy lines and the war-torn nature of [PAWN_possessive] homeworld meant [PAWN_pronoun] had limited opportunity for education.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Intellectual: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child star{{br}}(Star)&lt;br /&gt;
| [PAWN_nameDef] was well-known throughout [PAWN_possessive] homeworld as a child actor in films and TV shows. [PAWN_possessive] fame put [PAWN_objective] in contact with many different kinds of people, but also tended to get in the way of [PAWN_possessive] education.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child-knave{{br}}(Knave)&lt;br /&gt;
| [PAWN_nameDef] was a child-knave of King Loteric. [PAWN_pronoun] enjoyed the training with wooden sticks and engaging others in close combat. [PAWN_pronoun] adapted quickly to the heat of battle and was good at spreading fire.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] served his lord well, until the king died in an unfortunate accident.&lt;br /&gt;
| Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Circus performer{{br}}(Performer)&lt;br /&gt;
| Growing up in the circus, [PAWN_nameDef] learned a lot of interesting things. More interesting then the balls he juggled were the pockets he picked between shows.&lt;br /&gt;
&lt;br /&gt;
A mistake with some firesticks made him develop a deathly fear of fire.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Class clown{{br}}(Clowny kid)&lt;br /&gt;
| In the ultra-competitive environs of his glitterworld school, [PAWN_nameDef] always offered to play the class clown to diffuse tension.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] developed a sense of social desperation from this, as well as an appreciation for the artistic side of comedy.&lt;br /&gt;
| Social: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Clone-farmed{{br}}(Disposable)&lt;br /&gt;
| Clone children are seeded into organic-rich wombvats and rapidly grown in a simmed universe. They're harvested later, sometimes for food, sometimes for organs, sometimes for workers - but they're always called 'Disposable'. &lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Coliseum cleaner{{br}}(Cleaner)&lt;br /&gt;
| During the 'Inner Destrian War' fallout, [PAWN_possessive] parents were captured and [PAWN_pronoun] was born into a life of slavery. Forced to clean coliseums after bloody battles for money. Watching, waiting, and learning. Coliseums were the only thing [PAWN_pronoun] ever knew. One night while cleaning the coliseum, [PAWN_possessive] family was murdered.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Caring{{br}}Firefighting{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Colony kid{{br}}(Colony kid)&lt;br /&gt;
| [PAWN_nameDef] was born the child of two doctors in a small colony. Because of [PAWN_possessive] parents, [PAWN_pronoun] was always interested in science and medicine.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] never really got along with other children, and as a result became withdrawn and unsociable.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Coma child{{br}}(Coma child)&lt;br /&gt;
| A childhood accident put [PAWN_nameDef] into a coma. [PAWN_pronoun] didn’t wake up until [PAWN_pronoun] was in [PAWN_possessive] late teens. [PAWN_possessive] body never recovered from the years of inactivity, but people tend to take pity on [PAWN_objective] when they hear [PAWN_possessive] story.&lt;br /&gt;
| Social: {{+|4}}&amp;lt;/br&amp;gt;Construction: {{--|2}}&amp;lt;/br&amp;gt;Mining: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Commoner heir{{br}}(Heir)&lt;br /&gt;
| [PAWN_nameDef] was a street urchin on a feudal steamworld.&lt;br /&gt;
&lt;br /&gt;
After [PAWN_pronoun] tried to steal food from the palace, the emperor, desperate to secure an heir, took [PAWN_objective] in and groomed [PAWN_objective] to be next in line for the throne.&lt;br /&gt;
| Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Computer geek{{br}}(Geek)&lt;br /&gt;
| [PAWN_nameDef] spent most of [PAWN_possessive] childhood on [PAWN_possessive] computer, typing away, never knowing when to get up and eat.&lt;br /&gt;
&lt;br /&gt;
He had a very narrow interest: hacking cryptobiotic safety protocols.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Animals: {{+|2}}&lt;br /&gt;
| Social{{br}}Cooking{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Construction grunt{{br}}(Builder)&lt;br /&gt;
| Growing up in his father's lab, Jackson was given the life of an intellectual elite. He got everything he desired, and price was never an object.&lt;br /&gt;
&lt;br /&gt;
However Jackson did not partake in the luxury given to him. Instead, he pursued more physical, and - in his father's eyes - lower-class jobs.  &lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Convent child{{br}}(Illicit)&lt;br /&gt;
| The child of an illicit affair, [PAWN_nameDef] was bought up by nuns in a medieval convent. [PAWN_pronoun] learned the value of hard work and submission, but was taught that technology is heretical.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Plants: {{+|3}}&lt;br /&gt;
| Intellectual{{br}}Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Core dilettante{{br}}(Dilettante)&lt;br /&gt;
| Candice spent her formative years on a glitterworld in the core region, where she and her friends pursued lives of idle pleasure.&lt;br /&gt;
&lt;br /&gt;
As she grew up, she began to find the life of ease unfulfilling. She decided to look for a more challenging path.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| ManualDumb{{br}}Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Core world student{{br}}(Student)&lt;br /&gt;
| Born a male named Alex, Alyssa didn't fit in well with the other boys. When very young, she preferred creative pursuits, such as crafting jewelry, over sports. She felt she had the wrong body. Luckily, her family and friends supported her sex reassignment; as a teen, she underwent surgery to become a female.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{--|1}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Cooking{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corp student{{br}}(Student)&lt;br /&gt;
| De Dion was bred to become an executive officer for the large space trading corporation that owned his home planet. His family had been working for that corporation for seven generations.&lt;br /&gt;
&lt;br /&gt;
At age six, [PAWN_pronoun] started to study at the corporate academy, where he learned to become a loyal follower and a ruthless executive.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{--|2}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corp-bred student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] was bred to become an executive for the space exploration corporation that owned his home planet. [PAWN_possessive] family had been working for that corporation for four generations.&lt;br /&gt;
&lt;br /&gt;
At age five, [PAWN_pronoun] enrolled at the corporate academy where he learned loyalty and ruthlessness. [PAWN_nameDef] excelled in finding diplomatic solutions where others would need violence.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|7}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Violent{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Corporate slave{{br}}(Soldier)&lt;br /&gt;
| [PAWN_nameDef] grew up in a colony owned by a large glitterworld corporation. All children had virtual reality devices attached by force, and were raised in a brutal digital world.&lt;br /&gt;
&lt;br /&gt;
Constantly forced to fight others for the entertainment of the wealthy, gunplay and tactics became the center of [PAWN_nameDef]'s universe.&lt;br /&gt;
| Plants: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Animals: {{--|2}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Country child{{br}}(Hick kid)&lt;br /&gt;
| [PAWN_nameDef] was raised up to fear God and love [PAWN_possessive] country. [PAWN_pronoun] was a genuine backwoods kid. [PAWN_pronoun] always worked hard to earn respect rather than demanding it.&lt;br /&gt;
| Cooking: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cow farmer{{br}}(Farmer)&lt;br /&gt;
| [PAWN_nameDef] grew up on a rim world, under the tyranny of [PAWN_possessive] father, who forced [PAWN_objective] to work every day on the farm. [PAWN_pronoun] dreamed of escaping [PAWN_possessive] father and exploring the universe.&lt;br /&gt;
&lt;br /&gt;
One day, when the trade ship was overhead, [PAWN_pronoun] stowed away among the goods in the launch pods, and escaped into space.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Animals: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Crime boss' child{{br}}(Crime kid)&lt;br /&gt;
| [PAWN_nameDef] was adopted child of a notorious crime boss. [PAWN_pronoun] was taught all facets of the family business, from smuggling to inventive ways of killing.&lt;br /&gt;
&lt;br /&gt;
When the family was attacked, [PAWN_possessive] father ordered [PAWN_objective] to hide in a secret longsleep crypt.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cult child{{br}}(Cult kid)&lt;br /&gt;
| [PAWN_nameDef] was born into a powerful cult which shunned advanced technology and believed that all illness could be cured by cleansing the soul through sacred art.{{br}}After [PAWN_possessive] first glimpse of the outside world, [PAWN_pronoun] decided to run away.&lt;br /&gt;
| Medicine: {{--|3}}&amp;lt;/br&amp;gt;Artistic: {{+|5}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Fire keeper{{br}}(Firekeep)&lt;br /&gt;
| [PAWN_nameDef] was responsible for keeping the tribe’s fire going. [PAWN_pronoun] took this responsibility very seriously.&lt;br /&gt;
| Cooking: {{+|2}}{{br}}Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Frightened child{{br}}(Scared)&lt;br /&gt;
| [PAWN_nameDef] grew up with a laundry list of phobias and neuroses. [PAWN_pronoun] feared, among other things, doctors and foodborne pathogens.{{br}}As a result, [PAWN_pronoun] learned to cook and care for [PAWN_objective]self, but many of [PAWN_possessive] fears dog [PAWN_objective] in adulthood.&lt;br /&gt;
| Cooking: {{+|3}}{{br}}Medical: {{+|3}}&lt;br /&gt;
| Violent&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Herder&lt;br /&gt;
| As a child, [PAWN_nameDef] tended the tribe’s muffalo herds, keeping them safe from predators and treating the sick. It was quiet work, but [PAWN_pronoun] enjoyed being away from people.&lt;br /&gt;
| Melee: {{+|3}}{{br}}Medical: {{+|3}}{{br}}Social: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Industrial orphan{{br}}(Orphan)&lt;br /&gt;
| [PAWN_nameDef] never knew [PAWN_possessive] parents. [PAWN_possessive] earliest memories were of drudgery in the mines and workhouses of [PAWN_possessive] industrial world.{{br}}Because of this, [PAWN_pronoun] never received a proper education.&lt;br /&gt;
| Mining: {{+|3}}{{br}}Crafting: {{+|3}}{{br}}Intellectual: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medical assistant{{br}}(Medic)&lt;br /&gt;
| [PAWN_nameDef] was born during a catastrophic war in which both sides used napalm extensively. [PAWN_pronoun] grew up helping [PAWN_possessive] parents in an infirmary, treating the cascade of horrific burns from the battlefields. [PAWN_pronoun] was left with a lifelong fear of fire.&lt;br /&gt;
| Medical: {{+|5}}&lt;br /&gt;
| Firefighting&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval lordling{{br}}(Lordling)&lt;br /&gt;
| [PAWN_nameDef] was a minor noble in an old kingdom on a medieval world. [PAWN_pronoun] grew up in a manor made of stone, served by bowing lowerclassmen.{{br}}Such a life teaches no technical skills and instils a lifelong aversion to manual labor - but [PAWN_nameDef] learned early the ways of social manipulation.&lt;br /&gt;
| Construction: {{--|1}}{{br}}Mining: {{--|1}}{{br}}Plants: {{--|1}}{{br}}Social: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval slave{{br}}(Slave)&lt;br /&gt;
| [PAWN_nameDef] grew up pulling carts and digging holes on a medieval world. Simple manual labor is [PAWN_possessive] oldest companion - along with the master's lash.{{br}}[PAWN_pronoun] didn't learn to read until age nine.&lt;br /&gt;
| Construction: {{+|2}}{{br}}Mining: {{+|2}}{{br}}Plants: {{+|2}}{{br}}Intellectual: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Music lover{{br}}(Musician)&lt;br /&gt;
| As a child, [PAWN_nameDef] had a talent for playing musical instruments and singing. [PAWN_pronoun] was given expert training and loved to perform in recitals and concerts, though the lavish praise [PAWN_pronoun] received made [PAWN_objective] a little self-obsessed.&lt;br /&gt;
| Artistic: {{+|5}}{{br}}Social: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mute&lt;br /&gt;
| [PAWN_nameDef] was greatly affected by a traumatic event early in [PAWN_possessive] life. For many years [PAWN_pronoun] refused to speak to people, preferring instead to play with [PAWN_possessive] household's numerous pets.&lt;br /&gt;
| Animals: {{+|5}}&lt;br /&gt;
| Social&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Organ farm&lt;br /&gt;
| [PAWN_nameDef] was raised in an illegal underground organ farm. [PAWN_possessive] body was used to grow organic implants for wounded mercenaries. Though [PAWN_possessive] upbringing has left [PAWN_objective] haunted, it has also given [PAWN_objective] a unique understanding of human biology.&lt;br /&gt;
| Medical: {{+|5}}&lt;br /&gt;
| Violent&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pyromaniac{{br}}(Pyro)&lt;br /&gt;
| From an early age, [PAWN_nameDef] had an unhealthy fascination with fire. [PAWN_pronoun] would set refuse heaps ablaze and become so entranced by the flames [PAWN_pronoun] would absent-mindedly burn [PAWN_objective]self.{{br}}One day while playing with matches, [PAWN_pronoun] carelessly burned down [PAWN_possessive] home.&lt;br /&gt;
| Cooking: {{--|2}}{{br}}Artistic: {{+|3}}{{br}}Social: {{--|3}}&lt;br /&gt;
| Firefighting&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Reclusive child{{br}}(Reclusive)&lt;br /&gt;
| [PAWN_nameDef] didn’t learn to speak until [PAWN_pronoun] was nearly 5 years old, and, even then, [PAWN_pronoun] preferred to keep to [PAWN_objective]self. When [PAWN_pronoun] was in [PAWN_possessive] early teens, [PAWN_pronoun] made a habit of wandering off from the village to live in the wilderness for weeks at a time.&lt;br /&gt;
| Melee: {{+|4}}{{br}}Crafting: {{+|3}}&lt;br /&gt;
| Social&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Scavenger&lt;br /&gt;
| [PAWN_nameDef] spent [PAWN_possessive] childhood escaping grunt work to go digging through wrecks and ruins for treasures. [PAWN_possessive] natural curiosity got [PAWN_objective] into a lot of trouble, but it also yielded many interesting finds.&lt;br /&gt;
| Mining: {{+|3}}{{br}}Intellectual: {{+|3}}&lt;br /&gt;
| Dumb labor&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Scout&lt;br /&gt;
| Born to colonial administrators from a small imperial power, [PAWN_nameDef] was enrolled in a youth program that taught military scouting skills.{{br}}[PAWN_pronoun] learned to survive in the wilderness, to obey, and not to ask questions.&lt;br /&gt;
| Shooting: {{+|3}}{{br}}Construction: {{+|1}}{{br}}Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}Intellectual&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Shelter child{{br}}(Shelterkid)&lt;br /&gt;
| [PAWN_nameDef] grew up in a shelter deep beneath a toxic world. [PAWN_pronoun] received a comprehensive education, but had no opportunity to do physical labour.&lt;br /&gt;
| Construction: {{--|2}}{{br}}Mining: {{--|2}}{{br}}Medical: {{+|3}}{{br}}Social: {{+|2}}{{br}}Intellectual: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Shopkeeper{{br}}(Shopkeep)&lt;br /&gt;
| [PAWN_nameDef]'s mother was often ill, and it fell to [PAWN_objective] to run the store which was their only source of income. [PAWN_pronoun] learned a little about the exotic artifacts which [PAWN_pronoun] sold, and a lot about the art of the deal.&lt;br /&gt;
| Social: {{+|4}}{{br}}Intellectual: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sickly child{{br}}(Patient)&lt;br /&gt;
| As a child, [PAWN_nameDef] suffered from a rare disease. Quarantined in a research hospital, [PAWN_pronoun] had minimal human contact and got little physical exercise. In the sterile hospital environment, however, [PAWN_pronoun] became very familiar with science and medicine.&lt;br /&gt;
| Melee: {{--|2}}{{br}}Construction: {{--|2}}{{br}}Medical: {{+|5}}{{br}}Social: {{--|2}}{{br}}Intellectual: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sole survivor{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef]’s entire tribe was wiped out in a raid. Though [PAWN_pronoun] was adopted by another group, [PAWN_pronoun] was emotionally scarred, and preferred to stay near home, cooking and tending crops.&lt;br /&gt;
| Cooking: {{+|3}}{{br}}Plants: {{+|3}}&lt;br /&gt;
| Violent&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Story writer{{br}}(Writer)&lt;br /&gt;
| As a child, [PAWN_nameDef] was addicted to reading. [PAWN_pronoun] would spend all day in [PAWN_possessive] local library with [PAWN_possessive] nose in a book. When budget cuts forced the library to close, [PAWN_nameDef] was distraught. [PAWN_pronoun] decided to fill the gap by writing [PAWN_possessive] own stories instead.&lt;br /&gt;
| Artistic: {{+|4}}{{br}}Intellectual: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Test subject{{br}}(Testee)&lt;br /&gt;
| On the most corrupt urbworlds, scientists without a moral compass commit unspeakable atrocities in the name of research. [PAWN_nameDef] was kept alone in a sealed facility from birth and subjected to a variety of behavioural experiments in an attempt to turn [PAWN_objective] into a perfect super-soldier.&lt;br /&gt;
| Shooting: {{+|4}}&lt;br /&gt;
| Social{{br}}Caring{{br}}Firefighting&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Tribe child{{br}}(Tribal)&lt;br /&gt;
| [PAWN_nameDef] grew up in the tribe, running around the village, moving with the muffalo herds, learning essential skills from [PAWN_possessive] parents.{{br}}[PAWN_pronoun] never learned to read and never saw a machine that wasn't an ancient ruin.&lt;br /&gt;
| Shooting: {{+|2}}{{br}}Melee: {{+|2}}{{br}}Plants: {{+|2}}{{br}}Intellectual: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Urbworld urchin{{br}}(Urchin)&lt;br /&gt;
| The urbworlds - ancient and deep industrial cityscapes bursting with humanity and poison. [PAWN_nameDef] grew up in the dark, unwanted reaches of such a place. [PAWN_pronoun] had to fight for every scrap of food.&lt;br /&gt;
| Shooting: {{+|2}}{{br}}Melee: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Vatgrown soldier{{br}}(Vatgrown)&lt;br /&gt;
| [PAWN_nameDef] wasn't made as a person, but as an instrument of destruction. Grown in a bioweapons facility and taught combat during [PAWN_possessive] accelerated growth, [PAWN_nameDef] still has a proclivity for combat of all kinds and an aversion to human contact.&lt;br /&gt;
| Shooting: {{+|4}}{{br}}Melee: {{+|4}}&lt;br /&gt;
| Social{{br}}Caring&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Vengeful child{{br}}(Vengeful)&lt;br /&gt;
| As a child, [PAWN_nameDef] returned to [PAWN_possessive] village to find that it had been wiped out by bandits. [PAWN_pronoun] swore revenge on the attackers and began a violent rampage across the wilderness.&lt;br /&gt;
| Shooting: {{+|3}}{{br}}Melee: {{+|3}}&lt;br /&gt;
| Caring&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! War refugee{{br}}(Refugee)&lt;br /&gt;
| War broke out in [PAWN_nameDef]'s home when [PAWN_pronoun] was a baby. [PAWN_possessive] parents fled with [PAWN_objective], seeking safety wherever they could find it. [PAWN_nameDef]'s earliest memories are of being taught how to defend [PAWN_objective]self.{{br}}The violence and destruction [PAWN_pronoun] witnessed left [PAWN_objective] scarred for life.&lt;br /&gt;
| Cooking: {{+|2}}{{br}}Crafting: {{+|2}}&lt;br /&gt;
| Violent&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Wreckage explorer{{br}}(Explorer)&lt;br /&gt;
| Two generations before [PAWN_nameDef] was born, an apocalyptic war dragged [PAWN_possessive] home planet into anarchy. [PAWN_nameDef] was tasked with watching [PAWN_possessive] tribe's herds, but often shirked [PAWN_possessive] duties to go exploring the crashed warships scattered around the planet.&lt;br /&gt;
| Animals: {{+|3}}{{br}}Intellectual: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=List_of_childhood_backstories&amp;diff=63378</id>
		<title>List of childhood backstories</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=List_of_childhood_backstories&amp;diff=63378"/>
		<updated>2019-05-07T17:47:42Z</updated>

		<summary type="html">&lt;p&gt;Mehni: Part A of the definitive list of backstories, sourced from build 2231. Script made. This is as they appear in the game.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;amp;larr; &amp;lt;small&amp;gt;[[Backstories]]&amp;lt;/small&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| {{STDT| sortable c_17}}&lt;br /&gt;
! Title&amp;lt;br /&amp;gt;(Short Title) !! Description !! Skill Modifications !! Incapable of !! Civil !! Raider !! Slave !! Trader !! Traveler !! Tribal&lt;br /&gt;
|-&lt;br /&gt;
! Abandoned child{{br}}(Abandoned)&lt;br /&gt;
| [PAWN_nameDef] was a quick witted, funny child. One day, [PAWN_pronoun] wandered off on [PAWN_possessive] wealthy genetic parents, and was ultimately lost in a supposedly unused ore warehouse. Due to cloning technology, [PAWN_possessive] parents decided that the time looking for [PAWN_objective] was better spent on just cloning a better son.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|1}}&lt;br /&gt;
| Cooking{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Abandoned orphan{{br}}(Orphan)&lt;br /&gt;
| Abandoned at birth, young [PAWN_nameDef] started [PAWN_possessive] life in an orphanage.&lt;br /&gt;
&lt;br /&gt;
A rascal and a scoundrel, [PAWN_pronoun] became a clever troublemaker.&lt;br /&gt;
| Plants: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Abductee{{br}}(Abductee)&lt;br /&gt;
| [PAWN_nameDef] was abducted at a young age and forced to do menial labor on a pirate ship.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Abductee{{br}}(Abductee)&lt;br /&gt;
| [PAWN_nameDef] was abducted by xenohumans when [PAWN_pronoun] was still a baby. They experimented on [PAWN_objective] to understand his genetic structure.&lt;br /&gt;
&lt;br /&gt;
As [PAWN_pronoun] grew up, [PAWN_nameDef] grew a little bit too big and strong for his captors and eventually escaped.&lt;br /&gt;
&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Social: {{--|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Academy student {{br}}(Student )&lt;br /&gt;
| [PAWN_nameDef] went to school like a good space cadet would. He was very tall and was known for his good looks.&lt;br /&gt;
&lt;br /&gt;
Though he worried more about his hairstyle than his grades, he still somehow passed the final exams.&lt;br /&gt;
| Social: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Accursed child{{br}}(Cursed)&lt;br /&gt;
| [PAWN_nameDef] was born at the peak of a lunar eclipse. The elders declared [PAWN_objective] a child of darkness brought [PAWN_objective] under their care.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] entire childhood was spent studying the lore and rituals of [PAWN_possessive] people - until the day of calling.&lt;br /&gt;
| Construction: {{--|1}}&amp;lt;/br&amp;gt;Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| Firefighting{{br}}Cleaning{{br}}Hauling{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Adventuring child{{br}}(Adventurer)&lt;br /&gt;
| Axle was raised to become an engineer. For years, he planned to stow away on a cargo ship and start a new, more adventuresome life.&lt;br /&gt;
&lt;br /&gt;
One night, after his parents fell asleep, he managed to sneak on board a cargo ship just before it left port.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Adventurous youth{{br}}(Adventurer)&lt;br /&gt;
| [PAWN_nameDef] explored all around [PAWN_possessive] family's large estate, uncovering little natural wonders hidden in nearby catacombs, rivers, and caves.&lt;br /&gt;
&lt;br /&gt;
During his teenage years, [PAWN_nameDef] made numerous enemies&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Amateur astronomer{{br}}(Astronomer)&lt;br /&gt;
| [PAWN_nameDef] was fascinated with astronomy. [PAWN_pronoun] would spend hours gazing at planets and nebulae through his telescope.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] is credited with discovering a small comet that would, years later, strike a nearby moon and disrupt the mining operations there.&lt;br /&gt;
| Intellectual: {{+|6}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Amateur botanist{{br}}(Botanist)&lt;br /&gt;
| Spending many summers crawling through dirt, Christian found he had quite the green thumb. Instead of learning to cook the food he grew, he just grew more and more.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Amateur engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] grew up in a family with a military and engineering background. [PAWN_pronoun] wanted to join the army but his father didn't like the idea, so [PAWN_possessive] interest turned to great flying machines and works of engineering. [PAWN_pronoun] secretly hoped that this would one day lead him to a life of galactic exploration.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{+|1}}&lt;br /&gt;
| Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Angry student{{br}}(Student)&lt;br /&gt;
| [PAWN_nameDef] trained towards [PAWN_possessive] dream of working for his hometown's local council.&lt;br /&gt;
&lt;br /&gt;
For reasons he never quite understood, [PAWN_pronoun] was bullied relentlessly by his classmates. [PAWN_pronoun] chose to repress his rage.&lt;br /&gt;
| Intellectual: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Animal caretaker{{br}}(Caretaker)&lt;br /&gt;
| Born on a medieval farm, [PAWN_nameDef] was tasked with caring for domestic animals. [PAWN_pronoun] grew to love them.&lt;br /&gt;
&lt;br /&gt;
With time, [PAWN_pronoun] learned to tame wild animals. [PAWN_pronoun] dreamed of one day meeting a thrumbo and taming it.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Animal lab tech{{br}}(Lab tech)&lt;br /&gt;
| [PAWN_nameDef] worked as a technician in a lab studying animals.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] spent [PAWN_possessive] days taking care of the animals and cleaning up after them. [PAWN_pronoun] dreamed of having [PAWN_possessive] own lab one day.&lt;br /&gt;
| Intellectual: {{+|1}}&amp;lt;/br&amp;gt;Shooting: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Animals: {{+|3}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Antisocial child{{br}}(Antisocial)&lt;br /&gt;
| [PAWN_nameDef] lacked typical social skills, and avoided social interaction.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] gained satisfaction only from steady work. [PAWN_pronoun] especially disliked speaking with overly creative or outgoing individuals.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Apocalypse child {{br}}(Apocalypse)&lt;br /&gt;
| [PAWN_nameDef] spent his childhood on a post-apocalyptic world. He fought for survival from a young age, on a planet where trust did not exist.&lt;br /&gt;
&lt;br /&gt;
He told everyone that he had no luck.&lt;br /&gt;
| Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Apocalypse survivor{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef] was born during a time of unrest on [PAWN_possessive] homeworld, as climate change threatened mass starvation and flooding. As [PAWN_pronoun] grew up the situation worsened - billions died and peaceful states descended into anarchy. [PAWN_nameDef] and [PAWN_possessive] parents did whatever they had to to survive.&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{--|3}}&amp;lt;/br&amp;gt;Intellectual: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Apprentice oracle{{br}}(Oracle)&lt;br /&gt;
| [PAWN_nameDef] was chosen at an early age by the village elders to keep the sacred rituals of the Oracle.&lt;br /&gt;
&lt;br /&gt;
An irrepressibly curious child, [PAWN_nameDef] caused a religious crisis for [PAWN_possessive] tribe when [PAWN_pronoun] accidentally flipped a switch to open the &amp;quot;tombs&amp;quot; of the Gods - cryptosleep caskets inhabited by some very confused ancestors.  &lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Apprentice smith{{br}}(Apprentice)&lt;br /&gt;
| [PAWN_nameDef] grew up helping in his father's smithy.&lt;br /&gt;
&lt;br /&gt;
They were some of the last smiths on the planet that to use traditional smithing methods. They even collect some materials themselves.&lt;br /&gt;
&lt;br /&gt;
Sometimes, after work, [PAWN_nameDef] would practice using the swords [PAWN_pronoun] forged.&lt;br /&gt;
| Melee: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artful dodger{{br}}(Dodger)&lt;br /&gt;
| Robin grew up on one of the urbworlds and had to fend for himself all his life. He never trusted anyone, relying on his persuasiveness and cunning to survive.&lt;br /&gt;
&lt;br /&gt;
He soon became skilled with firearms and knives as well as words.&lt;br /&gt;
| Shooting: {{+|1}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}Crafting{{br}}Cooking{{br}}Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artisan farmer{{br}}(Farmer)&lt;br /&gt;
| [PAWN_nameDef] grew up on a [PAWN_possessive] family's glitterworld farm. They were one of the last farms on the planet that preferred traditional farming methods to glitterworld technology.&lt;br /&gt;
| Plants: {{+|7}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| Violent{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artistic weirdo{{br}}(Weirdo)&lt;br /&gt;
| [PAWN_nameDef] grew up in a house near a bustling midworld metropolis.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was talented at art and creative work, but often acted strangely, and thus had few friends.&lt;br /&gt;
| Cooking: {{+|1}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}Social{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aspergers rebel{{br}}(Rebel)&lt;br /&gt;
| [PAWN_nameDef] grew up as a rebel on an formerly-advanced rimworld devastated by war.&lt;br /&gt;
&lt;br /&gt;
[PAWN_possessive] Aspergers syndrome meant he struggled with social situations and was incapable of caring, but [PAWN_pronoun] learned hard skills like research and shooting very quickly.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|3}}&lt;br /&gt;
| Caring{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aspiring engineer{{br}}(Tinkerer)&lt;br /&gt;
| [PAWN_nameDef] had a fascination with gadgets and gizmos. [PAWN_pronoun] took apart and put together almost anything [PAWN_pronoun] could find.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] got used to repairing toys brought to [PAWN_objective] by other children, and even fixed a few devices from [PAWN_possessive] elders.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aspiring physicist{{br}}(Student)&lt;br /&gt;
| The daughter of an engineer and doctor, [PAWN_nameDef]'s early life was intellectually rich. After visiting a physics lab, she decided she wanted to be a quantum physicist.&lt;br /&gt;
&lt;br /&gt;
Bitten by a camel, kicked off a horse, and chased by dogs, [PAWN_nameDef] developed a fear of animals.&lt;br /&gt;
| Construction: {{+|1}}&amp;lt;/br&amp;gt;Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Caring{{br}}Animals{{br}}Cooking{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aspiring pop idol{{br}}(Pop idol)&lt;br /&gt;
| Min was being trained in song and dance to become the next big pop idol. She grew up being taken care of by company handlers.&lt;br /&gt;
&lt;br /&gt;
She never knew manual labor, but learned a lot about music and social etiquette.&lt;br /&gt;
| Shooting: {{--|4}}&amp;lt;/br&amp;gt;Melee: {{--|4}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|4}}&lt;br /&gt;
| ManualDumb{{br}}Cleaning{{br}}Hauling{{br}}PlantWork{{br}}Mining{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Athlete{{br}}(Athlete)&lt;br /&gt;
| [PAWN_nameDef] was professional athlete at early age. Thanks to her skills, she was able to leave her homeworld and enroll in a glitterworld university of science and technology.&lt;br /&gt;
&lt;br /&gt;
Because of her demanding schedule and introverted nature, she became socially inept.&lt;br /&gt;
| Intellectual: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&lt;br /&gt;
| Social{{br}}Artistic{{br}}&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Awkward nerd{{br}}(Nerd)&lt;br /&gt;
| Always fascinated by machines, Dave spent his time studying robotics and holography. He preferred the company of his scientific creations to that of other people.&lt;br /&gt;
| Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cave child&lt;br /&gt;
| [PAWN_nameDef] grew up in a large and intricate cave complex that extended deep into a mountainside. [PAWN_pronoun] helped the adults maintain and improve the deep caves.&lt;br /&gt;
| Construction: {{+|3}}{{br}}Mining: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Caveworld tender{{br}}(Cave kid)&lt;br /&gt;
| [PAWN_nameDef] grew up in cave complex deep beneath the surface of an inhospitable world. [PAWN_pronoun] worked with the other children tending the tribe’s fungus crops.&lt;br /&gt;
| Shooting: {{--|3}}{{br}}Mining: {{+|2}}{{br}}Plants: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Caveworld tunneler{{br}}(Tunneler)&lt;br /&gt;
| [PAWN_nameDef] worked as a digger in the massive underground cave complex.{{br}}[PAWN_pronoun] knows rock so well that [PAWN_pronoun] can almost navigate caves by smell.&lt;br /&gt;
| Shooting: {{--|2}}{{br}}Construction: {{+|1}}{{br}}Mining: {{+|6}}&lt;br /&gt;
| Intellectual{{br}}Crafting&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child spy{{br}}(Spy)&lt;br /&gt;
| Children are often presumed innocent, and can be ideal as spies. [PAWN_nameDef] was trained in the art of infiltration and information-gathering when [PAWN_pronoun] was just nine years old.{{br}}[PAWN_possessive] years behind enemy lines and the war-torn nature of [PAWN_possessive] homeworld meant [PAWN_pronoun] had limited opportunity for education.&lt;br /&gt;
| Shooting: {{+|5}}{{br}}Intellectual: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Child star{{br}}(Star)&lt;br /&gt;
| [PAWN_nameDef] was well-known throughout [PAWN_possessive] homeworld as a child actor in films and TV shows. [PAWN_possessive] fame put [PAWN_objective] in contact with many different kinds of people, but also tended to get in the way of [PAWN_possessive] education.&lt;br /&gt;
| Artistic: {{+|3}}{{br}}Social: {{+|3}}{{br}}Intellectual: {{--|2}}&lt;br /&gt;
| Dumb labor&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Coma child&lt;br /&gt;
| A childhood accident put [PAWN_nameDef] into a coma. [PAWN_pronoun] didn’t wake up until [PAWN_pronoun] was in [PAWN_possessive] late teens. [PAWN_possessive] body never recovered from the years of inactivity, but people tend to take pity on [PAWN_objective] when they hear [PAWN_possessive] story.&lt;br /&gt;
| Construction: {{--|2}}{{br}}Mining: {{--|2}}{{br}}Social: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Convent child{{br}}(Illicit)&lt;br /&gt;
| The child of an illicit affair, [PAWN_nameDef] was bought up by nuns in a medieval convent. [PAWN_pronoun] learned the value of hard work and submission, but was taught that technology is heretical.&lt;br /&gt;
| Construction: {{+|3}}{{br}}Plants: {{+|3}}&lt;br /&gt;
| Intellectual{{br}}Violent&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Cult child{{br}}(Cult kid)&lt;br /&gt;
| [PAWN_nameDef] was born into a powerful cult which shunned advanced technology and believed that all illness could be cured by cleansing the soul through sacred art.{{br}}After [PAWN_possessive] first glimpse of the outside world, [PAWN_pronoun] decided to run away.&lt;br /&gt;
| Artistic: {{+|5}}{{br}}Medical: {{--|3}}&lt;br /&gt;
| Intellectual&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Fire keeper{{br}}(Firekeep)&lt;br /&gt;
| [PAWN_nameDef] was responsible for keeping the tribe’s fire going. [PAWN_pronoun] took this responsibility very seriously.&lt;br /&gt;
| Cooking: {{+|2}}{{br}}Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Frightened child{{br}}(Scared)&lt;br /&gt;
| [PAWN_nameDef] grew up with a laundry list of phobias and neuroses. [PAWN_pronoun] feared, among other things, doctors and foodborne pathogens.{{br}}As a result, [PAWN_pronoun] learned to cook and care for [PAWN_objective]self, but many of [PAWN_possessive] fears dog [PAWN_objective] in adulthood.&lt;br /&gt;
| Cooking: {{+|3}}{{br}}Medical: {{+|3}}&lt;br /&gt;
| Violent&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Herder&lt;br /&gt;
| As a child, [PAWN_nameDef] tended the tribe’s muffalo herds, keeping them safe from predators and treating the sick. It was quiet work, but [PAWN_pronoun] enjoyed being away from people.&lt;br /&gt;
| Melee: {{+|3}}{{br}}Medical: {{+|3}}{{br}}Social: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Industrial orphan{{br}}(Orphan)&lt;br /&gt;
| [PAWN_nameDef] never knew [PAWN_possessive] parents. [PAWN_possessive] earliest memories were of drudgery in the mines and workhouses of [PAWN_possessive] industrial world.{{br}}Because of this, [PAWN_pronoun] never received a proper education.&lt;br /&gt;
| Mining: {{+|3}}{{br}}Crafting: {{+|3}}{{br}}Intellectual: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medical assistant{{br}}(Medic)&lt;br /&gt;
| [PAWN_nameDef] was born during a catastrophic war in which both sides used napalm extensively. [PAWN_pronoun] grew up helping [PAWN_possessive] parents in an infirmary, treating the cascade of horrific burns from the battlefields. [PAWN_pronoun] was left with a lifelong fear of fire.&lt;br /&gt;
| Medical: {{+|5}}&lt;br /&gt;
| Firefighting&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval lordling{{br}}(Lordling)&lt;br /&gt;
| [PAWN_nameDef] was a minor noble in an old kingdom on a medieval world. [PAWN_pronoun] grew up in a manor made of stone, served by bowing lowerclassmen.{{br}}Such a life teaches no technical skills and instils a lifelong aversion to manual labor - but [PAWN_nameDef] learned early the ways of social manipulation.&lt;br /&gt;
| Construction: {{--|1}}{{br}}Mining: {{--|1}}{{br}}Plants: {{--|1}}{{br}}Social: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Medieval slave{{br}}(Slave)&lt;br /&gt;
| [PAWN_nameDef] grew up pulling carts and digging holes on a medieval world. Simple manual labor is [PAWN_possessive] oldest companion - along with the master's lash.{{br}}[PAWN_pronoun] didn't learn to read until age nine.&lt;br /&gt;
| Construction: {{+|2}}{{br}}Mining: {{+|2}}{{br}}Plants: {{+|2}}{{br}}Intellectual: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Music lover{{br}}(Musician)&lt;br /&gt;
| As a child, [PAWN_nameDef] had a talent for playing musical instruments and singing. [PAWN_pronoun] was given expert training and loved to perform in recitals and concerts, though the lavish praise [PAWN_pronoun] received made [PAWN_objective] a little self-obsessed.&lt;br /&gt;
| Artistic: {{+|5}}{{br}}Social: {{--|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Mute&lt;br /&gt;
| [PAWN_nameDef] was greatly affected by a traumatic event early in [PAWN_possessive] life. For many years [PAWN_pronoun] refused to speak to people, preferring instead to play with [PAWN_possessive] household's numerous pets.&lt;br /&gt;
| Animals: {{+|5}}&lt;br /&gt;
| Social&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Organ farm&lt;br /&gt;
| [PAWN_nameDef] was raised in an illegal underground organ farm. [PAWN_possessive] body was used to grow organic implants for wounded mercenaries. Though [PAWN_possessive] upbringing has left [PAWN_objective] haunted, it has also given [PAWN_objective] a unique understanding of human biology.&lt;br /&gt;
| Medical: {{+|5}}&lt;br /&gt;
| Violent&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Pyromaniac{{br}}(Pyro)&lt;br /&gt;
| From an early age, [PAWN_nameDef] had an unhealthy fascination with fire. [PAWN_pronoun] would set refuse heaps ablaze and become so entranced by the flames [PAWN_pronoun] would absent-mindedly burn [PAWN_objective]self.{{br}}One day while playing with matches, [PAWN_pronoun] carelessly burned down [PAWN_possessive] home.&lt;br /&gt;
| Cooking: {{--|2}}{{br}}Artistic: {{+|3}}{{br}}Social: {{--|3}}&lt;br /&gt;
| Firefighting&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Reclusive child{{br}}(Reclusive)&lt;br /&gt;
| [PAWN_nameDef] didn’t learn to speak until [PAWN_pronoun] was nearly 5 years old, and, even then, [PAWN_pronoun] preferred to keep to [PAWN_objective]self. When [PAWN_pronoun] was in [PAWN_possessive] early teens, [PAWN_pronoun] made a habit of wandering off from the village to live in the wilderness for weeks at a time.&lt;br /&gt;
| Melee: {{+|4}}{{br}}Crafting: {{+|3}}&lt;br /&gt;
| Social&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Scavenger&lt;br /&gt;
| [PAWN_nameDef] spent [PAWN_possessive] childhood escaping grunt work to go digging through wrecks and ruins for treasures. [PAWN_possessive] natural curiosity got [PAWN_objective] into a lot of trouble, but it also yielded many interesting finds.&lt;br /&gt;
| Mining: {{+|3}}{{br}}Intellectual: {{+|3}}&lt;br /&gt;
| Dumb labor&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Scout&lt;br /&gt;
| Born to colonial administrators from a small imperial power, [PAWN_nameDef] was enrolled in a youth program that taught military scouting skills.{{br}}[PAWN_pronoun] learned to survive in the wilderness, to obey, and not to ask questions.&lt;br /&gt;
| Shooting: {{+|3}}{{br}}Construction: {{+|1}}{{br}}Crafting: {{+|2}}&lt;br /&gt;
| Artistic{{br}}Intellectual&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Shelter child{{br}}(Shelterkid)&lt;br /&gt;
| [PAWN_nameDef] grew up in a shelter deep beneath a toxic world. [PAWN_pronoun] received a comprehensive education, but had no opportunity to do physical labour.&lt;br /&gt;
| Construction: {{--|2}}{{br}}Mining: {{--|2}}{{br}}Medical: {{+|3}}{{br}}Social: {{+|2}}{{br}}Intellectual: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Shopkeeper{{br}}(Shopkeep)&lt;br /&gt;
| [PAWN_nameDef]'s mother was often ill, and it fell to [PAWN_objective] to run the store which was their only source of income. [PAWN_pronoun] learned a little about the exotic artifacts which [PAWN_pronoun] sold, and a lot about the art of the deal.&lt;br /&gt;
| Social: {{+|4}}{{br}}Intellectual: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sickly child{{br}}(Patient)&lt;br /&gt;
| As a child, [PAWN_nameDef] suffered from a rare disease. Quarantined in a research hospital, [PAWN_pronoun] had minimal human contact and got little physical exercise. In the sterile hospital environment, however, [PAWN_pronoun] became very familiar with science and medicine.&lt;br /&gt;
| Melee: {{--|2}}{{br}}Construction: {{--|2}}{{br}}Medical: {{+|5}}{{br}}Social: {{--|2}}{{br}}Intellectual: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Sole survivor{{br}}(Survivor)&lt;br /&gt;
| [PAWN_nameDef]’s entire tribe was wiped out in a raid. Though [PAWN_pronoun] was adopted by another group, [PAWN_pronoun] was emotionally scarred, and preferred to stay near home, cooking and tending crops.&lt;br /&gt;
| Cooking: {{+|3}}{{br}}Plants: {{+|3}}&lt;br /&gt;
| Violent&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Story writer{{br}}(Writer)&lt;br /&gt;
| As a child, [PAWN_nameDef] was addicted to reading. [PAWN_pronoun] would spend all day in [PAWN_possessive] local library with [PAWN_possessive] nose in a book. When budget cuts forced the library to close, [PAWN_nameDef] was distraught. [PAWN_pronoun] decided to fill the gap by writing [PAWN_possessive] own stories instead.&lt;br /&gt;
| Artistic: {{+|4}}{{br}}Intellectual: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Test subject{{br}}(Testee)&lt;br /&gt;
| On the most corrupt urbworlds, scientists without a moral compass commit unspeakable atrocities in the name of research. [PAWN_nameDef] was kept alone in a sealed facility from birth and subjected to a variety of behavioural experiments in an attempt to turn [PAWN_objective] into a perfect super-soldier.&lt;br /&gt;
| Shooting: {{+|4}}&lt;br /&gt;
| Social{{br}}Caring{{br}}Firefighting&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Tribe child{{br}}(Tribal)&lt;br /&gt;
| [PAWN_nameDef] grew up in the tribe, running around the village, moving with the muffalo herds, learning essential skills from [PAWN_possessive] parents.{{br}}[PAWN_pronoun] never learned to read and never saw a machine that wasn't an ancient ruin.&lt;br /&gt;
| Shooting: {{+|2}}{{br}}Melee: {{+|2}}{{br}}Plants: {{+|2}}{{br}}Intellectual: {{--|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Urbworld urchin{{br}}(Urchin)&lt;br /&gt;
| The urbworlds - ancient and deep industrial cityscapes bursting with humanity and poison. [PAWN_nameDef] grew up in the dark, unwanted reaches of such a place. [PAWN_pronoun] had to fight for every scrap of food.&lt;br /&gt;
| Shooting: {{+|2}}{{br}}Melee: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Vatgrown soldier{{br}}(Vatgrown)&lt;br /&gt;
| [PAWN_nameDef] wasn't made as a person, but as an instrument of destruction. Grown in a bioweapons facility and taught combat during [PAWN_possessive] accelerated growth, [PAWN_nameDef] still has a proclivity for combat of all kinds and an aversion to human contact.&lt;br /&gt;
| Shooting: {{+|4}}{{br}}Melee: {{+|4}}&lt;br /&gt;
| Social{{br}}Caring&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Vengeful child{{br}}(Vengeful)&lt;br /&gt;
| As a child, [PAWN_nameDef] returned to [PAWN_possessive] village to find that it had been wiped out by bandits. [PAWN_pronoun] swore revenge on the attackers and began a violent rampage across the wilderness.&lt;br /&gt;
| Shooting: {{+|3}}{{br}}Melee: {{+|3}}&lt;br /&gt;
| Caring&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! War refugee{{br}}(Refugee)&lt;br /&gt;
| War broke out in [PAWN_nameDef]'s home when [PAWN_pronoun] was a baby. [PAWN_possessive] parents fled with [PAWN_objective], seeking safety wherever they could find it. [PAWN_nameDef]'s earliest memories are of being taught how to defend [PAWN_objective]self.{{br}}The violence and destruction [PAWN_pronoun] witnessed left [PAWN_objective] scarred for life.&lt;br /&gt;
| Cooking: {{+|2}}{{br}}Crafting: {{+|2}}&lt;br /&gt;
| Violent&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Wreckage explorer{{br}}(Explorer)&lt;br /&gt;
| Two generations before [PAWN_nameDef] was born, an apocalyptic war dragged [PAWN_possessive] home planet into anarchy. [PAWN_nameDef] was tasked with watching [PAWN_possessive] tribe's herds, but often shirked [PAWN_possessive] duties to go exploring the crashed warships scattered around the planet.&lt;br /&gt;
| Animals: {{+|3}}{{br}}Intellectual: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=User:Mehni&amp;diff=63373</id>
		<title>User:Mehni</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=User:Mehni&amp;diff=63373"/>
		<updated>2019-05-07T15:41:39Z</updated>

		<summary type="html">&lt;p&gt;Mehni: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;amp;larr; &amp;lt;small&amp;gt;[[Backstories]]&amp;lt;/small&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| {{STDT| sortable c_17}}&lt;br /&gt;
!Title &amp;lt;br/&amp;gt; (Short Title) !!Description !!Skill Modifications !!Incapable of !!Civil !!Raider !!Slave !!Trader !!Traveler !!Tribal&lt;br /&gt;
|-&lt;br /&gt;
! Ace fighter pilot{{br}}(Ace)&lt;br /&gt;
| [PAWN_nameDef] graduated from the Star Academy with honors and distinguished himself as an ace fighter pilot in three campaigns against more advanced aggressor cultures. &lt;br /&gt;
&lt;br /&gt;
However, after one vicious battle, he found himself stranded and his carrier ship destroyed. With nowhere to go, he entered his escape pod and prayed.&lt;br /&gt;
| Intellectual: {{+|2}}&amp;lt;/br&amp;gt;Mining: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Acolyte of stars{{br}}(Priest)&lt;br /&gt;
| Ever the dreamer, [PAWN_nameDef] traveled across the universe to find the thing he felt was calling to him.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] became poorer and poorer, but used every means possible to carry on.&lt;br /&gt;
| Intellectual: {{--|3}}&amp;lt;/br&amp;gt;Social: {{--|3}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&amp;lt;/br&amp;gt;Artistic: {{+|7}}&lt;br /&gt;
| ManualDumb{{br}}Violent{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Actor{{br}}(Actor)&lt;br /&gt;
| [PAWN_nameDef] travelled [PAWN_possessive] homeworld with a company of actors, playing to packed theatres and loving audiences everywhere. [PAWN_pronoun] was a perfectionist, and made [PAWN_possessive] own props and costumes rather than use the ones [PAWN_pronoun] was given.&lt;br /&gt;
| Social: {{+|8}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Addiction counsel{{br}}(Counselor)&lt;br /&gt;
| After recovering from a joywire addiction, [PAWN_nameDef] adopted a non-violent way of life and vowed to help others.&lt;br /&gt;
&lt;br /&gt;
Travelling between communities, [PAWN_pronoun] used medicine, arts, and crafts to aid others who struggled with their own addictions.&lt;br /&gt;
| Social: {{+|8}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Artistic: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Adventurer{{br}}(Adventurer)&lt;br /&gt;
| [PAWN_nameDef]'s thirst for adventure took [PAWN_objective] to many planets. [PAWN_pronoun] visited the brightest glitterworlds and the darkest war-torn toxic planets in [PAWN_possessive] quest to find novelty and excitement.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] worked as little as possible, often skirting ethical boundaries to make a quick buck. Among all jobs, [PAWN_pronoun] hated cooking the most.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|3}}&amp;lt;/br&amp;gt;Medicine: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&amp;lt;/br&amp;gt;Animals: {{+|2}}&lt;br /&gt;
| Cooking{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Adventurous weirdo{{br}}(Weirdo)&lt;br /&gt;
| A creative but strange individual, [PAWN_nameDef] dedicated his life to his twin passions of medieval world history and high technology.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was fascinated by the idea of becoming a 'skyknight' with glittering armor and a giant sword.&lt;br /&gt;
| Shooting: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{+|6}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Mining{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aerospace engineer{{br}}(Engineer)&lt;br /&gt;
| [PAWN_nameDef] was an engineer responsible for the production of aircraft and spaceships. [PAWN_pronoun] focused on improving production lines, and was known for [PAWN_possessive] mastery of technical and research issues.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Mining: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! AI programmer{{br}}(Programmer)&lt;br /&gt;
| Michael enlisted in the military's robotics division, developing smarter combat AI.&lt;br /&gt;
&lt;br /&gt;
The whole time he was there, he never spoke with another human. He spent all his time conversing with the AI he was developing.&lt;br /&gt;
| Intellectual: {{+|7}}&amp;lt;/br&amp;gt;Crafting: {{+|6}}&lt;br /&gt;
| PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! AI researcher{{br}}(Researcher)&lt;br /&gt;
| Dave was a renowned researcher in artificial intelligence, robotics, and interactive holography. His friendships with the artificial minds he created gave him the confidence to interact with real people, and he soon excelled at personal communication.&lt;br /&gt;
| Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Mining: {{--|2}}&amp;lt;/br&amp;gt;Melee: {{--|2}}&amp;lt;/br&amp;gt;Social: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Alcoholic trucker{{br}}(Alcoholic)&lt;br /&gt;
| [PAWN_nameDef] was a space trucker working for Arcknight Industries when he killed his wife and daughter in a crash.&lt;br /&gt;
&lt;br /&gt;
His body was repaired with an experimental nano-genetic therapy. Now his muscles continually regenerate and harden, and every movement tears the tissue anew. He bears the pain in silence.&lt;br /&gt;
| Mining: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Caring{{br}}Social{{br}}Artistic{{br}}Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Anarchist rebel{{br}}(Anarchist)&lt;br /&gt;
| After being abandoned on a special operation, [PAWN_nameDef] swore vengeance upon the state. [PAWN_pronoun] formed an anarchist group dedicated to bringing down core world governments.&lt;br /&gt;
&lt;br /&gt;
After too many close calls, and too few successes, [PAWN_nameDef] fled to the outer rim.&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Social: {{+|6}}&lt;br /&gt;
| Crafting{{br}}Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Archaeologist{{br}}(Explorer)&lt;br /&gt;
| [PAWN_pronoun] was trapped in an uninspired life. One day, [PAWN_pronoun] jumped on a ship to learn archaeology and see the universe.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] learned how to survive. [PAWN_pronoun] also learned about people - although [PAWN_pronoun] understood the dead better than the living.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|5}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Social: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Architect{{br}}(Architect)&lt;br /&gt;
| [PAWN_nameDef] designed and constructed buildings. On [PAWN_possessive] glitterworld home, most of the technical aspects of architecture were handled by an AI. This enabled [PAWN_objective] to push the artistic limits of the craft, but also meant [PAWN_pronoun] never had to get [PAWN_possessive] hands dirty at building sites.&lt;br /&gt;
| Construction: {{+|5}}&amp;lt;/br&amp;gt;Artistic: {{+|7}}&amp;lt;/br&amp;gt;Crafting: {{--|3}}&lt;br /&gt;
| ManualDumb{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Archotech spy{{br}}(AI spy)&lt;br /&gt;
| [PAWN_nameDef] was a cybernetic researcher. Studying a transcended world, [PAWN_pronoun] became too involved with [PAWN_possessive] subjects. Over time, the archotech machine core recruited [PAWN_objective] into its service, and used [PAWN_objective] as a spy.&lt;br /&gt;
&lt;br /&gt;
When [PAWN_pronoun] later rebelled against [PAWN_possessive] non-human master, it sent mechanoids across space to hunt [PAWN_objective] down.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Mining{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Army cook{{br}}(Cook)&lt;br /&gt;
| Ben joined the army as a worker and spent most of his time cooking and repairing. While he was stationed on a dangerous planet, he underwent basic shooting and survival training.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| Caring{{br}}Social{{br}}Firefighting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Army scientist{{br}}(Scientist)&lt;br /&gt;
| [PAWN_nameDef] did scientific research for a planetary army. [PAWN_pronoun] studied war scenarios and designed weapon systems to help win battles with a minimum of fuss.&lt;br /&gt;
| Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Army sergeant{{br}}(Sergeant)&lt;br /&gt;
| [PAWN_nameDef] served in [PAWN_possessive] nation's military, commanding small units as a non-commissioned officer.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] excelled creating tactically sound plans despite difficult circumstances.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Aromatherapist{{br}}(Therapist)&lt;br /&gt;
| [PAWN_nameDef] practiced aromatherapy, using essences extracted from home-grown plants.&lt;br /&gt;
| Plants: {{+|6}}&amp;lt;/br&amp;gt;Shooting: {{--|3}}&amp;lt;/br&amp;gt;Melee: {{--|3}}&amp;lt;/br&amp;gt;Cooking: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artifact hunter{{br}}(Artifacter)&lt;br /&gt;
| [PAWN_nameDef] became depressed and lost interest in life. [PAWN_pronoun] travelled from planet to planet, searching for psychic artifacts amid mechanoid ruins in the hope that they would cure the pain in [PAWN_possessive] soul.&lt;br /&gt;
&lt;br /&gt;
A steady trigger finger and careful planning kept [PAWN_nameDef] alive.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|8}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Artificer rampant{{br}}(Artificer)&lt;br /&gt;
| Fuelled by the thrill of discovery and his own megalomania, [PAWN_nameDef] set out to invent new devices and improve existing ones, breaking laws and customs as necessary.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] formed a crew to gather materials for [PAWN_possessive] work - and to deal with outsiders who might interfere.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{+|6}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|8}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Ascetic priest{{br}}(Priest)&lt;br /&gt;
| After taking a vow of silence, [PAWN_nameDef] joined a monastery on a peaceful backwater planet to spend [PAWN_possessive] days in quiet contemplation.{{br}}[PAWN_pronoun] found happiness growing vegetables in the garden and making cheese in the monastery cellars.&lt;br /&gt;
| Plants: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| Violent{{br}}Social{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Assassin{{br}}(Assassin)&lt;br /&gt;
| Robin was specially trained as an operative to be used for high-risk assassinations. His skill with a rifle was unrivalled.&lt;br /&gt;
&lt;br /&gt;
He was eventually betrayed by his superiors when a target found out about the hit and offered to fund their future projects. Robin swore to never trust anyone again.&lt;br /&gt;
| Shooting: {{+|7}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&lt;br /&gt;
| Caring{{br}}Artistic{{br}}Crafting{{br}}Cooking{{br}}Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! AWOL soldier{{br}}(Soldier)&lt;br /&gt;
| [PAWN_nameDef] was an infantryman.&lt;br /&gt;
&lt;br /&gt;
When [PAWN_pronoun] was informed of his assignment to the Xennoa-Zartza War, [PAWN_pronoun] decided [PAWN_pronoun] did not want to be a soldier. [PAWN_pronoun] was able to escape via military spacejet.&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bandit leader{{br}}(Bandit)&lt;br /&gt;
| [PAWN_nameDef] rose up the ranks of the crime organization, eventually becoming the leader of one of their most remote cells of bandits. His dog Rest never left his side.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|2}}&lt;br /&gt;
| Intellectual{{br}}Cleaning{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Banished soldier{{br}}(Outlaw)&lt;br /&gt;
| [PAWN_nameDef] became the most physically intimidating of the slaves, spending his little free time obsessively sculpting his body. His efforts eventually paid off when the lord offered him a job as a personal bodyguard.&lt;br /&gt;
&lt;br /&gt;
Later, when he plotted to use his position to kill the lord and free the slaves, he was discovered and barely escaped with his life.&lt;br /&gt;
| Melee: {{+|7}}&lt;br /&gt;
| None&lt;br /&gt;
| {{cross}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bartender{{br}}(Barkeep)&lt;br /&gt;
| [PAWN_nameDef] worked as a bartender on a seedy space station. The job entailed one part drink mixing, one part diplomacy, and one part head-bashing.&lt;br /&gt;
| Social: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Battle mechanic{{br}}(Mechanic)&lt;br /&gt;
| [PAWN_nameDef] was a tech-obsessed mercenary in an early fusion-era system.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] was unusually obsessed with gathering the right gear, and often customized [PAWN_possessive] own equipment with original modifications.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Battlefield tech{{br}}(Technician)&lt;br /&gt;
| [PAWN_nameDef] had received firearms training, but [PAWN_possessive] work was focused on technical adaption and manipulation of combat mechanoids on the battlefield.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] developed PTSD after narrowly escaping a primitive firebomb attack in a wheat field. The army medically discharged him from service.&lt;br /&gt;
| Construction: {{+|4}}&amp;lt;/br&amp;gt;Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{--|3}}&amp;lt;/br&amp;gt;Crafting: {{+|4}}&lt;br /&gt;
| Firefighting{{br}}PlantWork{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Beast slayer{{br}}(Slayer)&lt;br /&gt;
| [PAWN_nameDef] traveled between planets, following news of animal attacks. [PAWN_pronoun] would camp on the planet for weeks, learning about [PAWN_possessive] prey before striking. [PAWN_pronoun] most enjoyed hunting thrumbos.&lt;br /&gt;
&lt;br /&gt;
Preferring to work alone, [PAWN_nameDef] enjoyed the thrill of the hunt, and the meat from the kill.&lt;br /&gt;
| Plants: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Cooking: {{+|3}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Behaviour research{{br}}(Scientist)&lt;br /&gt;
| Captured as a feral child, [PAWN_nameDef] was forced into the ways of modern society. [PAWN_pronoun] quickly adapted and became a behavioural researcher, eventually owning a private facility.&lt;br /&gt;
&lt;br /&gt;
[PAWN_pronoun] specialized in canines, but learned a great deal about all animals. [PAWN_pronoun] never had interest in plants, however.&lt;br /&gt;
| Plants: {{--|3}}&amp;lt;/br&amp;gt;Intellectual: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|1}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Cooking: {{--|2}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&lt;br /&gt;
| Artistic{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Biosphere manager{{br}}(Botanist)&lt;br /&gt;
| [PAWN_nameDef] lived on a peaceful glitterworld where all menial work was done by robots and people devoted themselves to leisure. [PAWN_pronoun] managed the plant and animal life of a sprawling park, where citizens came to admire the natural beauty.&lt;br /&gt;
| Shooting: {{--|4}}&amp;lt;/br&amp;gt;Animals: {{+|6}}&amp;lt;/br&amp;gt;Plants: {{+|6}}&lt;br /&gt;
| ManualDumb{{br}}Crafting{{br}}Cooking{{br}}&lt;br /&gt;
| {{check}} || {{cross}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blacksmith shooter{{br}}(Gunsmith)&lt;br /&gt;
| As a young blacksmith, [PAWN_nameDef]'s family shop was raided by the police. [PAWN_pronoun] shot two officers before they knocked him out and arrested him.&lt;br /&gt;
&lt;br /&gt;
Sentenced to life in prison, [PAWN_nameDef] learned about traveling and raiding from other criminals.&lt;br /&gt;
| Construction: {{+|3}}&amp;lt;/br&amp;gt;Shooting: {{+|5}}&amp;lt;/br&amp;gt;Crafting: {{+|3}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blacksmith{{br}}(Blacksmith)&lt;br /&gt;
| As a blacksmith on a medieval world, [PAWN_nameDef] gained a reputation for the high quality of [PAWN_possessive] work. [PAWN_pronoun] wasn't bad at using the swords [PAWN_pronoun] forged either.&lt;br /&gt;
| Mining: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|8}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Blacksmith{{br}}(Blacksmith)&lt;br /&gt;
| As a smith on a medieval world, [PAWN_nameDef] gained a reputation for the high quality of [PAWN_possessive] work. [PAWN_pronoun] wasn't bad at using the swords [PAWN_pronoun] forged either.&lt;br /&gt;
| Shooting: {{--|5}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|6}}&lt;br /&gt;
| Intellectual{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bloodgame survivor{{br}}(Bloodgamer)&lt;br /&gt;
| [PAWN_nameDef] was sold to the Corestars Entertainment Company and used as meat in one of the company's system-wide broadcast shows.&lt;br /&gt;
 &lt;br /&gt;
[PAWN_possessive] manipulative nature made [PAWN_objective] quite a nightmare, even to the audience. He was kicked out and exiled to a planet full of deadly animals, criminals and armed camera-drones.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|7}}&amp;lt;/br&amp;gt;Social: {{+|6}}&lt;br /&gt;
| Crafting{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bloody dentist{{br}}(Dentist)&lt;br /&gt;
| After studying at a famous college, [PAWN_nameDef]'s weak personality eventually snapped under the strain of angry administrators and whining patients. [PAWN_pronoun] went on a secret murder spree, killing many of those under [PAWN_possessive] care.&lt;br /&gt;
&lt;br /&gt;
After a pursuit, [PAWN_pronoun] managed to escape [PAWN_possessive] planet and travel to a new world.&lt;br /&gt;
| Intellectual: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|6}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bloody wanderer{{br}}(Wanderer)&lt;br /&gt;
| [PAWN_nameDef] was a wanderer, traveling from town to town, taking odd jobs and stealing to live.&lt;br /&gt;
&lt;br /&gt;
One day, he had a mental break and went on a long rampage, destroying several towns and killing many. [PAWN_pronoun] eventually calmed, but [PAWN_possessive] bloodlust never left [PAWN_objective].&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Intellectual: {{--|2}}&amp;lt;/br&amp;gt;Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| Social{{br}}Firefighting{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bodyguard{{br}}(Bodyguard)&lt;br /&gt;
| [PAWN_nameDef] found work on a midworld, protecting whoever paid [PAWN_objective] from harm. [PAWN_pronoun] gained proficiency in many different combat forms, and was known for [PAWN_possessive] ruthlessness against those who crossed [PAWN_objective].&lt;br /&gt;
| Shooting: {{+|4}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&lt;br /&gt;
| Social{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{check}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bounty hunter{{br}}(Hunter)&lt;br /&gt;
| [PAWN_nameDef] is a self-employed bounty hunter. [PAWN_pronoun] spent [PAWN_possessive] days hunting space pirates and collecting cash bounties.&lt;br /&gt;
| Shooting: {{+|6}}&amp;lt;/br&amp;gt;Melee: {{+|4}}&amp;lt;/br&amp;gt;Medicine: {{+|2}}&lt;br /&gt;
| Cleaning{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bounty hunter{{br}}(Hunter)&lt;br /&gt;
| [PAWN_nameDef] was a bounty hunter on a massive glitterworld. [PAWN_pronoun] worked sensitive assignments for extremely wealthy clients, and was known for quiet execution and total discretion.&lt;br /&gt;
| Shooting: {{+|8}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bounty hunter{{br}}(Hunter)&lt;br /&gt;
| When the civil war ended, Mushinto had to find a new way to use his fighting skills. He decided to hunt down war criminals and soon realized that he enjoyed capturing  bad guys by any means necessary.&lt;br /&gt;
| Shooting: {{+|5}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Social: {{+|2}}&amp;lt;/br&amp;gt;Crafting: {{+|2}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{check}} || {{cross}} || {{cross}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Brigand{{br}}(Brigand)&lt;br /&gt;
| [PAWN_nameDef] flew with a band of brigands [PAWN_pronoun] called friends. [PAWN_pronoun] even had a ship of [PAWN_possessive] own - The Dung Mucker 2000.&lt;br /&gt;
| Construction: {{+|2}}&amp;lt;/br&amp;gt;Shooting: {{+|2}}&amp;lt;/br&amp;gt;Melee: {{+|3}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Medicine: {{+|1}}&amp;lt;/br&amp;gt;Crafting: {{+|1}}&lt;br /&gt;
| None&lt;br /&gt;
| {{check}} || {{cross}} || {{check}} || {{check}} || {{check}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
! Bush sniper{{br}}(Sniper)&lt;br /&gt;
| [PAWN_nameDef]'s peaceful life was cut short when [PAWN_possessive] country was brutally invaded.&lt;br /&gt;
&lt;br /&gt;
[PAWN_nameDef] was drafted into service as soon as [PAWN_pronoun] was of legal age, and quickly showed an aptitude for rifles. [PAWN_pronoun] spent months living in the forests picking off soldiers who dared cross the border.&lt;br /&gt;
| Plants: {{--|3}}&amp;lt;/br&amp;gt;Shooting: {{+|6}}&amp;lt;/br&amp;gt;Cooking: {{+|2}}&amp;lt;/br&amp;gt;Artistic: {{--|2}}&amp;lt;/br&amp;gt;Animals: {{+|4}}&lt;br /&gt;
| Caring{{br}}&lt;br /&gt;
| {{check}} || {{check}} || {{check}} || {{cross}} || {{check}} || {{check}}&lt;br /&gt;
|-&lt;br /&gt;
! Business gangster{{br}}(Gangster)&lt;br /&gt;
| Staying one step ahead of the law, [PAWN_nameDef] became a legitimate businessman and silenced anyone who dared say otherwise. As proprietor of brothels, speakeasies and eateries, [PAWN_nameDef]'s good fortune continued while his competition suffered a series of unfortunate and unexplained accidents.&lt;br /&gt;
| Shooting: {{+|3}}&amp;lt;/br&amp;gt;Melee: {{+|5}}&amp;lt;/br&amp;gt;Social: {{+|7}}&amp;lt;/br&amp;gt;Artistic: {{+|2}}&lt;br /&gt;
| Caring{{br}}Cleaning{{br}}PlantWork{{br}}&lt;br /&gt;
| {{cross}} || {{check}} || {{check}} || {{cross}} || {{cross}} || {{cross}}&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=Topic:Uz7ghv2lxcgrnnnx&amp;topic_postId=uz977jljzbouadu5&amp;topic_revId=uz977jljzbouadu5&amp;action=single-view</id>
		<title>Topic:Uz7ghv2lxcgrnnnx</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=Topic:Uz7ghv2lxcgrnnnx&amp;topic_postId=uz977jljzbouadu5&amp;topic_revId=uz977jljzbouadu5&amp;action=single-view"/>
		<updated>2019-05-07T08:43:50Z</updated>

		<summary type="html">&lt;span class=&quot;plainlinks&quot;&gt;&lt;a href=&quot;/wiki/User:Mehni&quot; class=&quot;mw-userlink&quot; title=&quot;User:Mehni&quot;&gt;&lt;bdi&gt;Mehni&lt;/bdi&gt;&lt;/a&gt; &lt;span class=&quot;mw-usertoollinks&quot;&gt;(&lt;a href=&quot;/wiki/User_talk:Mehni&quot; class=&quot;mw-usertoollinks-talk&quot; title=&quot;User talk:Mehni&quot;&gt;talk&lt;/a&gt; | &lt;a href=&quot;/wiki/Special:Contributions/Mehni&quot; class=&quot;mw-usertoollinks-contribs&quot; title=&quot;Special:Contributions/Mehni&quot;&gt;contribs&lt;/a&gt;)&lt;/span&gt; &lt;a rel=&quot;nofollow&quot; class=&quot;external text&quot; href=&quot;https://rimworldwiki.com/index.php?title=Topic:Uz7ghv2lxcgrnnnx&amp;amp;topic_showPostId=uz977jljzbouadu5#flow-post-uz977jljzbouadu5&quot;&gt;commented&lt;/a&gt; on &quot;Guideline: HECAP, HISCAP, HE, HIS, and transcribing pronouns in backstories&quot; (&lt;em&gt;I strongly disagree. Some of the backstories on this were written purely for male or female characters: some of the characters went throu...&lt;/em&gt;)&lt;/span&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=Modding_Tutorials/Linking_XML_and_C&amp;diff=63223</id>
		<title>Modding Tutorials/Linking XML and C</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=Modding_Tutorials/Linking_XML_and_C&amp;diff=63223"/>
		<updated>2019-04-14T10:39:25Z</updated>

		<summary type="html">&lt;p&gt;Mehni: /* You define yourself */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{BackToTutorials}}&lt;br /&gt;
&lt;br /&gt;
[[Modding Tutorials/Writing custom code|Writing custom code]] is all well and good if you can't force RimWorld to use it! Here are three ways of linking your Code to the XML and vice versa.&lt;br /&gt;
&lt;br /&gt;
=Using your C# from XML=&lt;br /&gt;
==A classy design pattern==&lt;br /&gt;
RimWorld leans heavily on Object Oriented Programming and will often expose the specific class of a Def to the XML. They're often called a workerClass, thingClass, but obviously can be named anything. Keep a look out for these, they're sometimes subtle.&lt;br /&gt;
&lt;br /&gt;
===Examples===&lt;br /&gt;
&amp;lt;source lang =&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;BiomeDef&amp;gt;&lt;br /&gt;
  &amp;lt;defName&amp;gt;BorealForest&amp;lt;/defName&amp;gt;&lt;br /&gt;
  &amp;lt;workerClass&amp;gt;BiomeWorker_BorealForest&amp;lt;/workerClass&amp;gt;&lt;br /&gt;
&amp;lt;/BiomeDef&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang =&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;inspectorTabs&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;ITab_Art&amp;lt;/li&amp;gt;&amp;lt;!-- That's a class! --&amp;gt;&lt;br /&gt;
&amp;lt;/inspectorTabs&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==A &amp;quot;Classy&amp;quot; pattern==&lt;br /&gt;
It is possible to overwrite the default class associated with a Def (or field in a def) by specifying the Class by attribute. The most common usage of this you've undoubtedly seen before is in Components: &amp;lt;source lang = &amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;comps&amp;gt;&lt;br /&gt;
  &amp;lt;li Class=&amp;quot;CompProperties_Forbiddable&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;/comps&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This class override is more widely applicable than just [[Modding Tutorials/Custom Comp Classes|comps]]. It's possible to overwrite or specify almost any type you wish. Keep [[Modding Tutorials/Compatibility|Compatibility]] in mind when doing this: in the end each object can only be one [[Modding Tutorials/Def classes|Class]].&lt;br /&gt;
&lt;br /&gt;
===Example===&lt;br /&gt;
&amp;lt;source lang =&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!-- Generate faction base --&amp;gt;&lt;br /&gt;
&amp;lt;GenStepDef Class = &amp;quot;MyNameSpace.MyCustomGenStepDefClass&amp;quot;&amp;gt; &amp;lt;!-- Overwrite the GenStepDef Class --&amp;gt;&lt;br /&gt;
  &amp;lt;defName&amp;gt;Settlement&amp;lt;/defName&amp;gt;&lt;br /&gt;
  &amp;lt;order&amp;gt;400&amp;lt;/order&amp;gt;&lt;br /&gt;
  &amp;lt;genStep Class=&amp;quot;GenStep_Settlement&amp;quot;&amp;gt; &amp;lt;!-- you can overwrite almost any type you wish. --&amp;gt;&lt;br /&gt;
    &amp;lt;count&amp;gt;1&amp;lt;/count&amp;gt;&lt;br /&gt;
    &amp;lt;nearMapCenter&amp;gt;true&amp;lt;/nearMapCenter&amp;gt;&lt;br /&gt;
  &amp;lt;/genStep&amp;gt;&lt;br /&gt;
  &amp;lt;modExtensions&amp;gt;&lt;br /&gt;
    &amp;lt;li Class=&amp;quot;MyNameSpace.MyCustomModExtension&amp;quot;&amp;gt; &amp;lt;!-- Aah, the classic li Class. --&amp;gt;&lt;br /&gt;
       &amp;lt;isACustomGenStepDefClassAndAModExtensionOverkill&amp;gt;false&amp;lt;/isACustomGenStepDefClassAndAModExtensionOverkill&amp;gt;&lt;br /&gt;
    &amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;/modExtensions&amp;gt;&lt;br /&gt;
&amp;lt;/GenStepDef&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==You define yourself==&lt;br /&gt;
Another possibility is to supply your own type in the XML. The most well-known example of this is [https://github.com/RimWorld-CCL-Reborn/AlienRaces/wiki/Let%27s-Start Alienraces]. The [https://github.com/RimWorld-CCL-Reborn/AlienRaces/blob/master/Source/AlienRace/AlienRace/ThingDef_AlienRace.cs ThingDef_AlienRace] inherits from regular [[Modding Tutorials/ThingDef|ThingDef]], and adds the alienRace tag to it. The alienRace tag then holds more information, a sample of which is shown below.&lt;br /&gt;
&lt;br /&gt;
One benefit of this over the annotation method above (the &amp;quot;Classy&amp;quot; pattern) is that the added control and restriction of scope is increased compatibility with over mods. It's theoretically also easier to further subclass the AlienRace def by annotation.&lt;br /&gt;
&lt;br /&gt;
===Example===&lt;br /&gt;
&amp;lt;source lang = &amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;AlienRace.ThingDef_AlienRace ParentName=&amp;quot;BasePawn&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;defName&amp;gt;ExampleAlien&amp;lt;/defName&amp;gt;&lt;br /&gt;
  &amp;lt;label&amp;gt;Alien for example&amp;lt;/label&amp;gt;&lt;br /&gt;
  &amp;lt;description&amp;gt;This alien is really special.. because it is used as an example&amp;lt;/description&amp;gt;&lt;br /&gt;
  &amp;lt;!-- regular ThingDef tags go here. --&amp;gt;&lt;br /&gt;
  &amp;lt;alienRace&amp;gt;&lt;br /&gt;
      &amp;lt;!-- specific alien stuff goes inside the alienRace tag. --&amp;gt;&lt;br /&gt;
      &amp;lt;generalSettings&amp;gt;&lt;br /&gt;
&lt;br /&gt;
      &amp;lt;/generalSettings&amp;gt;&lt;br /&gt;
      &amp;lt;raceRestriction&amp;gt;&lt;br /&gt;
&lt;br /&gt;
      &amp;lt;/raceRestriction&amp;gt;&lt;br /&gt;
  &amp;lt;/alienRace&amp;gt;&lt;br /&gt;
&amp;lt;/AlienRace.ThingDef_AlienRace&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Serialising custom classes==&lt;br /&gt;
It may sometimes be required to read/write your own datatype to XML. While we all love long strings with comma separated values, there are many cases where this is not a good idea. For that, RimWorld offers a ''LoadDataFromXmlCustom'' method. When RimWorld comes across your type during load, and the class defining that type contains the ''LoadDataFromXmlCustom'', RimWorld will use that method to parse the XML. This is done through the magic of reflection.&lt;br /&gt;
&lt;br /&gt;
Note that this method fails on types that can't have a constructor. In practice, this means you can't serialise [https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/classes-and-structs/structs structs].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang = &amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
//example taken from https://github.com/LocoNeko/RoadsOfTheRim/blob/master/Source/DefModExtension_RotR_RoadDef.cs&lt;br /&gt;
public class RotR_cost&lt;br /&gt;
{&lt;br /&gt;
    public string name;&lt;br /&gt;
    public int count;&lt;br /&gt;
&lt;br /&gt;
    public void LoadDataFromXmlCustom(XmlNode xmlRoot)&lt;br /&gt;
    {&lt;br /&gt;
        if (xmlRoot.ChildNodes.Count != 1)&lt;br /&gt;
        {&lt;br /&gt;
            Log.Error(&amp;quot;Misconfigured RotR_cost: &amp;quot; + xmlRoot.OuterXml, false);&lt;br /&gt;
            return;&lt;br /&gt;
        }&lt;br /&gt;
        name = xmlRoot.Name;&lt;br /&gt;
        count = (int)ParseHelper.FromString(xmlRoot.FirstChild.Value, typeof(int));&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Common issues==&lt;br /&gt;
You need to specify your exact Namespace.Class. There are no two ways around it. You also need to supply RimWorld with the assembly containing the type and namespace specified.&lt;br /&gt;
&lt;br /&gt;
=Using your XML from C#=&lt;br /&gt;
There are times you'll need to use a Def or other value defined in XML.&lt;br /&gt;
&lt;br /&gt;
==DefOf==&lt;br /&gt;
Any class with the [DefOf] annotation will automatically have its fields filled with their corresponding Def. You can then access it in other code like you'd access any DefOf, like ThingDefOf. The below example would be used as ''SomeDef def = MyDefOf.JustOneExampleDefName;''.&lt;br /&gt;
&lt;br /&gt;
'''Advantages''':&lt;br /&gt;
* It's run-time fast.&lt;br /&gt;
* It's easy.&lt;br /&gt;
* It moves errors to startup, rather than at runtime. Early warnings save considerable testing and debugging!&lt;br /&gt;
** If there's an error in your code (like a typo in the defName, or a missing Def), it will detect that as soon as the game starts, rather than when it's trying to use it.&lt;br /&gt;
&lt;br /&gt;
'''Disadvantages''': &lt;br /&gt;
* DefOfs don't get their fields filled until after the game is done loading Defs.&lt;br /&gt;
** This means using a DefOf before it is properly initialised gets you ''null'' - which the DefOf class is supposed to prevent.&lt;br /&gt;
* Has a negative influence on startup times. &amp;lt;ref&amp;gt;It uses reflection to find and fill the fields. This probably isn't the quickest, but the extent of it hasn't been measured.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang = &amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
[DefOf]&lt;br /&gt;
public static class MyDefOf&lt;br /&gt;
{&lt;br /&gt;
    public static SomeDef JustOneExampleDefName;&lt;br /&gt;
    public static SomeDef AnotherExampleDefName;&lt;br /&gt;
    public static SomeDef YetMoreExampleDefName;&lt;br /&gt;
&lt;br /&gt;
    static MyDefOf()&lt;br /&gt;
    {&lt;br /&gt;
        DefOfHelper.EnsureInitializedInCtor(typeof(MyDefOf));&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
The fields have to be static and public.&lt;br /&gt;
&lt;br /&gt;
===That weird constructor===&lt;br /&gt;
It's there for your own good. If you're trying to use a Def before RimWorld had a chance to fill the field with a proper reference, it will return null. You don't want that. This constructor warns against that.&lt;br /&gt;
&lt;br /&gt;
==DefDatabase==&lt;br /&gt;
If you only need to use a certain Def occasionally, you can look it up in the DefDatabase directly.&lt;br /&gt;
&amp;lt;source lang = &amp;quot;csharp&amp;quot;&amp;gt;SomeDef def = DefDatabase&amp;lt;SomeDef&amp;gt;.GetNamed(&amp;quot;JustOneExampleDefName&amp;quot;);&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Advantages''':&lt;br /&gt;
* Is allowed to return null (silent failure is an option).&lt;br /&gt;
* Does not require an entire class.&lt;br /&gt;
* Is open to string based shenanigans.&lt;br /&gt;
&lt;br /&gt;
'''Disadvantages''':&lt;br /&gt;
* Is allowed to return null. If you're not prepared for it to return null, Bad Things Happen.&lt;br /&gt;
* Slower than a DefOf.&lt;br /&gt;
* Prone to typos.&lt;br /&gt;
&lt;br /&gt;
=See also=&lt;br /&gt;
[[Modding Tutorials/Hello World|Hello World]] - For when your code shouldn't be linked to XML, but does need to be bootstrapped.&lt;br /&gt;
&lt;br /&gt;
[[Category: Modding tutorials]]&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=Modding_Tutorials/ThingComp&amp;diff=63112</id>
		<title>Modding Tutorials/ThingComp</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=Modding_Tutorials/ThingComp&amp;diff=63112"/>
		<updated>2019-04-01T13:01:35Z</updated>

		<summary type="html">&lt;p&gt;Mehni: /* Initialize(CompProperties props) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{BackToTutorials}}&lt;br /&gt;
&amp;lt;small&amp;gt;&amp;lt;&amp;amp;nbsp;[[Modding Tutorials/Custom Comp Classes]]&amp;lt;/small&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A ThingComp is a specific type of [[Modding Tutorials/Custom Comp Classes|Component]] that's attached to a ThingWithComps. Things like Pawns, Plants, Equipment, Buildings are all ThingsWithComps, so ThingComps are broadly applicable. You can add any custom code to your ThingComps for you to call manually, and it has methods called at specific occurrences that you can override.&lt;br /&gt;
&lt;br /&gt;
'''Benefits''':&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;+&amp;lt;/nowiki&amp;gt; Are very well supported by RimWorld.&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;+&amp;lt;/nowiki&amp;gt; Exposes (part of its) functionality to XML.&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;+&amp;lt;/nowiki&amp;gt; Compatible with savefiles, other mods, you name it.&amp;lt;/br&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;+&amp;lt;/nowiki&amp;gt; Does not come with the compatibility issues and pitfalls of creating a custom Def class.&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;+&amp;lt;/nowiki&amp;gt; Can save data.&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;+&amp;lt;/nowiki&amp;gt; Can access its parent.&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;+&amp;lt;/nowiki&amp;gt; Certain functionality gets automatically called RimWorld.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Downsides''':&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;-&amp;lt;/nowiki&amp;gt; Only works on ThingWithComps.&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;-&amp;lt;/nowiki&amp;gt; Requires a few extra steps to expose their functionality to XML.&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;-&amp;lt;/nowiki&amp;gt; Not suited for every type of functionality.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Requirements ==&lt;br /&gt;
* You need to have [[Modding Tutorials/Setting up a solution|set up your editor and environment]]&lt;br /&gt;
* You need to know [[Modding Tutorials/Writing custom code|how to write custom code]]&lt;br /&gt;
* You should probably understand Defs at least somewhat.&lt;br /&gt;
&lt;br /&gt;
== What you'll learn ==&lt;br /&gt;
What ThingComps are, when and how to use them. Since ThingComps are so ubiquitous and practical, every method you can override is also included, along with a short blurb of what it does.&lt;br /&gt;
&lt;br /&gt;
== Setting up ==&lt;br /&gt;
To implement a ThingComp, we need to inherit from the ''ThingComp'' class. This tutorial assumes you'll want to expose your Comp's functionality to XML, for that we need to inherit from ''CompProperties'' as well. &lt;br /&gt;
&lt;br /&gt;
== The Code ==&lt;br /&gt;
RimWorld will initialise your Comp like thus: &lt;br /&gt;
# First the ThingMaker will create a new instance of a Def, and call this a Thing.&lt;br /&gt;
# ThingMaker will then call PostMake() on the instance of Thing (in our case, a ThingWithComps).&lt;br /&gt;
# PostMake() will call ThingWithComps.InitializeComps().&lt;br /&gt;
# For every entry in the Def's Comp list, ThingWithComps.InitializeComps will create a new instance of each compClass&lt;br /&gt;
#* If the compClass isn't set in the XML, InitializeComps will use the default Type of ThingComp to instantiate. The constructor for CompProperties can specify a different (subclass of) ThingComp to instantiate.&lt;br /&gt;
# ThingWithComps.InitializeComps will set the parent of the ThingComp.&lt;br /&gt;
#* Parent in this context is the ThingWithComps that has the Comp. For example: [[Electric stove]]s have a CompFlickable. The stove is the parent of this instance of comp.&lt;br /&gt;
# ThingWithComps.InitializeComps calls the Initialize() method of the ThingComp instance.&lt;br /&gt;
# ThingComp.Initialize() will set the CompProperties, with the properties as defined in the Def.&lt;br /&gt;
&lt;br /&gt;
Note that this is [https://en.wikipedia.org/wiki/Object-oriented_programming Object Oriented Programming]: the (JIT) compiler first looks for overridden methods to call before calling the parent.&lt;br /&gt;
&lt;br /&gt;
==An Example==&lt;br /&gt;
The below is a simple example. We'll use this later on.&lt;br /&gt;
&amp;lt;source lang = &amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
using Verse;&lt;br /&gt;
using System;&lt;br /&gt;
&lt;br /&gt;
namespace MyExampleNamespace&lt;br /&gt;
{&lt;br /&gt;
    public class MyExampleComp : ThingComp&lt;br /&gt;
    {&lt;br /&gt;
        public override void CompTick()&lt;br /&gt;
        {&lt;br /&gt;
            Log.Error(&amp;quot;Let's error on every tick!&amp;quot;);&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        /// &amp;lt;summary&amp;gt;&lt;br /&gt;
        /// By default props returns the base CompProperties class.&lt;br /&gt;
        /// You can get props and cast it everywhere you use it, &lt;br /&gt;
        /// or you create a Getter like this, which casts once and returns it.&lt;br /&gt;
        /// Careful of case sensitivity!&lt;br /&gt;
        /// &amp;lt;/summary&amp;gt;&lt;br /&gt;
        public MyExampleCompProperties Props =&amp;gt; (MyExampleCompProperties)this.props;&lt;br /&gt;
&lt;br /&gt;
        public bool ExampleBool =&amp;gt; Props.myExampleBool;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    public class MyExampleCompProperties : CompProperties&lt;br /&gt;
    {&lt;br /&gt;
        public bool myExampleBool;&lt;br /&gt;
        public float myExampleFloat;&lt;br /&gt;
&lt;br /&gt;
        /// &amp;lt;summary&amp;gt;&lt;br /&gt;
        /// These constructors aren't strictly required if the compClass is set in the XML.&lt;br /&gt;
        /// &amp;lt;/summary&amp;gt;&lt;br /&gt;
        public MyExampleCompProperties()&lt;br /&gt;
        {&lt;br /&gt;
            this.compClass = typeof(MyExampleComp);&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        public MyExampleCompProperties(Type compClass) : base(compClass)&lt;br /&gt;
        {&lt;br /&gt;
            this.compClass = compClass;&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==XML==&lt;br /&gt;
If you want to add your Comp to a Def, you use the following XML:&lt;br /&gt;
&amp;lt;source lang =&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;Defs&amp;gt;&lt;br /&gt;
    &amp;lt;ThingDef&amp;gt;&lt;br /&gt;
        &amp;lt;comps&amp;gt;&lt;br /&gt;
            &amp;lt;li Class=&amp;quot;MyExampleNamespace.MyExampleCompProperties&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;myExampleBool&amp;gt;false&amp;lt;/myExampleBool&amp;gt;&lt;br /&gt;
                &amp;lt;myExampleFloat&amp;gt;0.005&amp;lt;/myExampleFloat&amp;gt;&lt;br /&gt;
            &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;/comps&amp;gt;&lt;br /&gt;
    &amp;lt;/ThingDef&amp;gt;&lt;br /&gt;
&amp;lt;/Defs&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
This adds the ThingComp to your ThingWithComps and populates it fields with the values set in the XML.&lt;br /&gt;
&lt;br /&gt;
If your ThingComp does not have properties, you use the following XML:&lt;br /&gt;
&amp;lt;source lang =&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;Defs&amp;gt;&lt;br /&gt;
    &amp;lt;ThingDef&amp;gt;&lt;br /&gt;
        &amp;lt;comps&amp;gt;&lt;br /&gt;
            &amp;lt;li&amp;gt;&lt;br /&gt;
                &amp;lt;compClass&amp;gt;MyExampleNamespace.MyExampleComp&amp;lt;/compClass&amp;gt;&lt;br /&gt;
            &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;/comps&amp;gt;&lt;br /&gt;
    &amp;lt;/ThingDef&amp;gt;&lt;br /&gt;
&amp;lt;/Defs&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
This adds the ThingComp to the ThingWithComps and uses the specified compClass.&lt;br /&gt;
&lt;br /&gt;
Somewhat niche but useful: One type of CompProperties can instantiate different type of CompClasses. CompProperties_Power is a good example.&lt;br /&gt;
&lt;br /&gt;
===Adding them with xpath===&lt;br /&gt;
If the ThingWithComps already has comps, you can use a simple PatchOperationAdd to add your comp to the list. If it does not yet have a ''comps'' node, you will need to make one. Other mods may also have the same need, which would result in incompatibility issues: Adding a ''comps'' entry twice results in only the first entry getting read. To go around this, a PatchOperationConditional is used:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang = &amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!-- Add /comps/li/compClass if there are no comps yet. --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Add /li/compClass to /comps if exists (i.e. other mod already added the comps field first) --&amp;gt;&lt;br /&gt;
    &amp;lt;Operation Class=&amp;quot;PatchOperationConditional&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;xpath&amp;gt;/Defs/WorldObjectDef[defName=&amp;quot;Caravan&amp;quot;]/comps&amp;lt;/xpath&amp;gt;&lt;br /&gt;
        &amp;lt;nomatch Class=&amp;quot;PatchOperationAdd&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;xpath&amp;gt;/Defs/WorldObjectDef[defName=&amp;quot;Caravan&amp;quot;]&amp;lt;/xpath&amp;gt;&lt;br /&gt;
            &amp;lt;value&amp;gt;&lt;br /&gt;
                &amp;lt;comps&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;&lt;br /&gt;
                        &amp;lt;compClass&amp;gt;MyExampleNamespace.MyExampleComp&amp;lt;/compClass&amp;gt;&lt;br /&gt;
                    &amp;lt;/li&amp;gt;&lt;br /&gt;
                &amp;lt;/comps&amp;gt;&lt;br /&gt;
            &amp;lt;/value&amp;gt;&lt;br /&gt;
        &amp;lt;/nomatch&amp;gt;&lt;br /&gt;
        &amp;lt;match Class=&amp;quot;PatchOperationAdd&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;xpath&amp;gt;/Defs/WorldObjectDef[defName=&amp;quot;Caravan&amp;quot;]/comps&amp;lt;/xpath&amp;gt;&lt;br /&gt;
            &amp;lt;value&amp;gt;&lt;br /&gt;
                &amp;lt;li&amp;gt;&lt;br /&gt;
                    &amp;lt;compClass&amp;gt;MyExampleNamespace.MyExampleComp&amp;lt;/compClass&amp;gt;&lt;br /&gt;
                &amp;lt;/li&amp;gt;&lt;br /&gt;
            &amp;lt;/value&amp;gt;&lt;br /&gt;
        &amp;lt;/match&amp;gt;&lt;br /&gt;
    &amp;lt;/Operation&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Accessing your Comps ==&lt;br /&gt;
Just setting up your custom comps doesn't do you a lot of good if you can't access them!&lt;br /&gt;
&lt;br /&gt;
=== Accessing your Comp directly ===&lt;br /&gt;
Accessing them depends on whether or not you have a Thing or a ThingWithComps. &lt;br /&gt;
* ThingWithComps has a GetComp&amp;lt;&amp;gt;() method which will return the type of ThingComp specified in the &amp;lt;nowiki&amp;gt;&amp;lt;&amp;gt;&amp;lt;/nowiki&amp;gt; if present, and null otherwise.&lt;br /&gt;
* Thing has a TryGetComp&amp;lt;MyExampleComp&amp;gt;() method. It will safely cast to ThingWithComps and return null upon failure. Upon success, it will return the value of ThingWithComps.GetComp&amp;lt;&amp;gt;()&lt;br /&gt;
&lt;br /&gt;
It is wise to nullcheck.&lt;br /&gt;
&lt;br /&gt;
=== Accessing your CompProperties ===&lt;br /&gt;
If you have the Comp (see above) you can access its properties like so:&lt;br /&gt;
&amp;lt;source lang =&amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
MyExampleCompProperties myProps = (MyExampleCompProperties)MythingWithComps.GetComp&amp;lt;MyExampleComp&amp;gt;().props&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
or, if you have a Props getter which does the casting for you:&lt;br /&gt;
&amp;lt;source lang =&amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
MyExampleCompProperties myProps = MythingWithComps.GetComp&amp;lt;MyExampleComp&amp;gt;().Props&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Overridable methods of ThingComp==&lt;br /&gt;
'''NOTE:''' This is up to date for version 1.0.2150. For the most up-to-date info, grab a decompiler.&lt;br /&gt;
&lt;br /&gt;
It does not make sense to override every method listed here. It therefor goes without saying you should only override those methods need.&lt;br /&gt;
&lt;br /&gt;
===Initialize(CompProperties props)===&lt;br /&gt;
Called once when the ThingComp is instantiated, and called once during loading. Most commonly used to initialise the comp props, but functionally similar to PostMake() so equally suitable for setting up default values.&lt;br /&gt;
&lt;br /&gt;
===ReceiveCompSignal(string signal)===&lt;br /&gt;
A string based signalling system that allows for communication between comps. The counterpart of this is ThingWithComps.BroadcastCompSignal. Note that this is functionally different from [[Modding Tutorials/ThingComp#Notify_SignalReceived(Signal signal)|Notify_SignalReceived]].&lt;br /&gt;
&lt;br /&gt;
===PostExposeData===&lt;br /&gt;
{{Main|Modding Tutorials/ExposeData}}&lt;br /&gt;
Used for saving and loading data. Runs after the ThingWithComps ExposeData.&lt;br /&gt;
&lt;br /&gt;
===PostSpawnSetup(bool respawningAfterLoad)===&lt;br /&gt;
Similar to Initialize(), but be aware that there's a difference between &amp;quot;getting initialised&amp;quot; and &amp;quot;spawning&amp;quot;. A ThingWithComps can be initialised without getting spawned. Useful for setting up Map- and Thing-related stuff.&lt;br /&gt;
&lt;br /&gt;
===PostDeSpawn(Map map)===&lt;br /&gt;
Gets called after despawning. Useful for cleaning up. Note: getting despawned doesn't mean destroyed. Think: caravans, minifying, etc.&lt;br /&gt;
&lt;br /&gt;
===PostDestroy(DestroyMode mode, Map previousMap)===&lt;br /&gt;
Gets called after being destroyed. Useful for cleaning up.&lt;br /&gt;
	&lt;br /&gt;
===CompTick===&lt;br /&gt;
Runs once every [[Time|Tick]], but only if the TickerType of the parent is TickerType Normal.&lt;br /&gt;
&lt;br /&gt;
===CompTickRare===&lt;br /&gt;
Runs once every [[Time|TickRare]], but only if the TickerType of the parent is TickerType Rare.&lt;br /&gt;
&lt;br /&gt;
There is no CompTickLong.&lt;br /&gt;
&lt;br /&gt;
===PostPreApplyDamage(DamageInfo dinfo, out bool absorbed)===&lt;br /&gt;
Runs before damage gets applied to the parent. The bool sets if damage was absorbed or not. Full damage absorption or nothing.&lt;br /&gt;
&lt;br /&gt;
===PostPostApplyDamage(DamageInfo dinfo, float totalDamageDealt)===&lt;br /&gt;
Runs after damage gets applied to the parent.&lt;br /&gt;
&lt;br /&gt;
===PostDraw===&lt;br /&gt;
Called every frame. Only use this for drawing. Do not put game logic in this.&lt;br /&gt;
&lt;br /&gt;
===PostDrawExtraSelectionOverlays===&lt;br /&gt;
Called every frame, if the parent is selected. Used by things like the DeepScanner. Only use this for drawing. Do not put game logic in this.&lt;br /&gt;
&lt;br /&gt;
===PostPrintOnto(SectionLayer layer)===&lt;br /&gt;
It's so the ThingComp can print polygons onto the SectionLayer. SectionLayer is part of the &amp;quot;chunked&amp;quot; graphics printing system that allows us to efficiently render non-moving objects by printing them on a shared mesh and drawing them in one call. All Things have a Print method for this; PostPrintOnto is just the ThingComp hook to participate in Print.&amp;lt;ref&amp;gt;[https://gist.github.com/Mehni/b3f46b3b08f70cd74746a46f89d2d7a8]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===CompPrintForPowerGrid(SectionLayer layer)===&lt;br /&gt;
Same as above, but allows printing images on the power grid. This method is only called for Comps on buildings.&amp;lt;ref&amp;gt;[https://gist.github.com/Mehni/b3f46b3b08f70cd74746a46f89d2d7a8]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===PreAbsorbStack(Thing otherStack, int count)===&lt;br /&gt;
Used before the parent absorbs ''count'' amount of ''otherStack''. Useful for averaging out values of your Comp. e.g. FoodPoisoning.	&lt;br /&gt;
&lt;br /&gt;
===PostSplitOff(Thing piece)===&lt;br /&gt;
The opposite of PreAbsorbStack.&lt;br /&gt;
&lt;br /&gt;
===TransformLabel(string label)===&lt;br /&gt;
Returns a string. Neurotrainers use this to identify what type of Neurotrainer they are.&lt;br /&gt;
&lt;br /&gt;
===CompGetGizmosExtra===&lt;br /&gt;
Returns an IEnumerable&amp;lt;Gizmo&amp;gt;. Lets you add [[Modding Tutorials/Gizmos|Gizmos]] to the thing. Gizmos are the actions buttons you see when you select something, like the temperature setting buttons.&lt;br /&gt;
&lt;br /&gt;
===AllowStackWith(Thing other)===&lt;br /&gt;
Returns a boolean that determines whether or not two Things can stack.&lt;br /&gt;
&lt;br /&gt;
===CompInspectStringExtra===&lt;br /&gt;
Returns a string. Adds extra things to the selection box.&lt;br /&gt;
&lt;br /&gt;
===GetDescriptionPart===&lt;br /&gt;
Returns a string. Adds extra things to the selection box.&lt;br /&gt;
&lt;br /&gt;
===CompFloatMenuOptions(Pawn selPawn)===&lt;br /&gt;
Returns an IEnumerable&amp;lt;FloatMenuOption&amp;gt;. Lets you add a FloatMenuOption to the thing.&lt;br /&gt;
&lt;br /&gt;
===PrePreTraded(TradeAction action, Pawn playerNegotiator, ITrader trader)===&lt;br /&gt;
Runs before the trade is completed. Useful for making Pawns very attached to a Thing, then make them hate the Pawn that sells it.&lt;br /&gt;
&lt;br /&gt;
===PostIngested(Pawn ingester)===&lt;br /&gt;
Runs after the Thing is eaten.&lt;br /&gt;
&lt;br /&gt;
===PostPostGeneratedForTrader(TraderKindDef trader, int forTile, Faction forFaction)===&lt;br /&gt;
Runs after it's generated for a trader. Used by CompQuality.&lt;br /&gt;
&lt;br /&gt;
===Notify_SignalReceived(Signal signal)===&lt;br /&gt;
The ThingComp way of participating in the ISignalReceiver interface. The ISignalReceiver interface isn't used a lot in RimWorld, but the design pattern it follows is reminiscent of the Observer Design pattern, or maybe Eventhandler. Except different.&lt;br /&gt;
&lt;br /&gt;
===ToString===&lt;br /&gt;
For debugging.&lt;br /&gt;
&lt;br /&gt;
==Overridable methods of CompProperties==&lt;br /&gt;
'''NOTE:''' This is up to date for version 1.0.2150. For the most up-to-date info, grab a decompiler.&lt;br /&gt;
&lt;br /&gt;
It does not make sense to override every method listed here. It therefor goes without saying you should only override those methods need.&lt;br /&gt;
&lt;br /&gt;
===CompProperties()===&lt;br /&gt;
Technically not an override. A constructor.&lt;br /&gt;
&lt;br /&gt;
===CompProperties(Type compClass)===&lt;br /&gt;
Technically not an override. A constructor which takes a parameter.&lt;br /&gt;
&lt;br /&gt;
===DrawGhost(IntVec3 center, Rot4 rot, ThingDef thingDef, Color ghostCol, AltitudeLayer drawAltitude)===&lt;br /&gt;
Used by Fire, and other cases where you'd not recognise the Blueprint without the Comp.&lt;br /&gt;
&lt;br /&gt;
===ConfigErrors(ThingDef parentDef)===&lt;br /&gt;
Returns an IEnumerable&amp;lt;string&amp;gt; with config errors. Don't forget to ''yield return'' every error in the ''base''.&lt;br /&gt;
&lt;br /&gt;
===ResolveReferences(ThingDef parentDef)===&lt;br /&gt;
Part of the def loading process. Loading involves multiple stages, one of which is &amp;quot;ResolveReferences&amp;quot;. Lots of defs have a ResolveReferences method. This is the CompProperties way of participating in that.&amp;lt;ref&amp;gt;[https://gist.github.com/Mehni/b3f46b3b08f70cd74746a46f89d2d7a8]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===SpecialDisplayStats(StatRequest req)===&lt;br /&gt;
Returns an IEnumerable&amp;lt;StatDrawEntry&amp;gt;. Useful for when your Comp adds extra stats.&lt;br /&gt;
&lt;br /&gt;
== Cautions, traps, etc ==&lt;br /&gt;
* If you have the same comp in an abstract (XML) def and attempt to redefine it in a (XML) child def, it will get counted twice. To get around this in XML, inherit from a newly defined Parent without the Comp. It's '''not''' recommended to add the Inherit=&amp;quot;False&amp;quot; tag to the comps tag, as that gets rid of all Comps. While you can get around it in code, a newly defined parent is cleaner (and less effort).&lt;br /&gt;
* Not every Thing is a ThingWithComps! Only Things that are a ThingWithComps (or subclass thereof) have Comps. Chunks are a notable Thing that aren't ThingWithComps.&lt;br /&gt;
* Casting to ThingWithComps is needlessly expensive and explicit casting can lead to InvalidCastExceptions. If it's a Thing you suspect is a ThingWithComps, you can:&lt;br /&gt;
&amp;lt;source lang =&amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
Thing thing;&lt;br /&gt;
MyExampleComp comp = thing.TryGetComp&amp;lt;MyExampleComp&amp;gt;();&lt;br /&gt;
if (comp != null)&lt;br /&gt;
{&lt;br /&gt;
    //do stuff&lt;br /&gt;
}&amp;lt;/source&amp;gt;&lt;br /&gt;
* Ticking! Make sure the TickerType and your Tick method matches. If the ThingWithComp has the Normal TickerType, CompTickRare() will never get called.&lt;br /&gt;
&lt;br /&gt;
[[Category:Modding tutorials]][[Category:Modding]][[Category:Defs]]&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
	<entry>
		<id>https://rimworldwiki.com/index.php?title=Modding_Tutorials/Setting_up_a_solution&amp;diff=63051</id>
		<title>Modding Tutorials/Setting up a solution</title>
		<link rel="alternate" type="text/html" href="https://rimworldwiki.com/index.php?title=Modding_Tutorials/Setting_up_a_solution&amp;diff=63051"/>
		<updated>2019-03-25T09:18:26Z</updated>

		<summary type="html">&lt;p&gt;Mehni: downplayed cookie cutter&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{BackToTutorials}}&lt;br /&gt;
{{Credit|[[User:Alistaire|Alistaire]]}}&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In this tutorial you will learn how to set up a solution, along with instructions on setting the output directory and files for more convenient building right into the Assemblies folder.&lt;br /&gt;
&lt;br /&gt;
=Requirements=&lt;br /&gt;
&lt;br /&gt;
* The manual option in this tutorial requires you to have [[Modding_Tutorials/Mod_folder_structure#The Source and Assemblies folders|set up a Source and Assemblies folder]] (the Visual Studio automatic option sets this up for you).&lt;br /&gt;
* You will want to have an IDE installed: [[Modding Tutorials/Recommended software#IDE's|Recommended IDE's]].&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Setting up a solution=&lt;br /&gt;
Setting up can be different for different IDE's. Feel free to add '''''complete''''' instructions for your IDE of choice.&lt;br /&gt;
&lt;br /&gt;
===Visual Studio Community 2017===&lt;br /&gt;
''NOTE: Visual Studio 2017 is a rather heavy application (2-3 GB for basic functionality) but has a bit more functionality. Only Install if your computer can handle it! The tutorial is similar for Visual Studio 2015.''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Option 1 (Manual Method):====&lt;br /&gt;
# Create a new class library project&lt;br /&gt;
## Once loaded, go to File -&amp;gt; New -&amp;gt; Project...&lt;br /&gt;
## Go to Templates -&amp;gt; Visual C# -&amp;gt; Class Library (Be sure to select the *.NET Framework* version, not *.NET Standard*) [[File:Capture.png|200px|thumb|right|Installing the .NET framework]]&lt;br /&gt;
## Enter your name and solution name in the lower pane.&lt;br /&gt;
## Choose a location, preferably:&amp;lt;br/&amp;gt;&amp;lt;pre&amp;gt;(RimWorldInstallFolder)/Mods/(YourModName)/Source&amp;lt;/pre&amp;gt;&lt;br /&gt;
## ''Optional'': Untick &amp;quot;Create directory for solution&amp;quot;&lt;br /&gt;
# In your project, set target framework and various other porperties&lt;br /&gt;
## In your Solution Explorer, right click your project -&amp;gt; Properties&lt;br /&gt;
## Once in your properties, select Application -&amp;gt; Set Target Framework to .NET Framework 3.5 (No client profile)&lt;br /&gt;
## ''Optional'': Change your Assembly and Namespace names to anything of your choice&lt;br /&gt;
## Go to Build -&amp;gt; Advanced... and set &amp;quot;Debugging information&amp;quot; to none&lt;br /&gt;
## Leave Advanced..., and set the Output Path to &amp;quot;..\..\Assemblies\&amp;quot; (The Assemblies folder in your mod folder)&lt;br /&gt;
# Add references to RimWorld code&lt;br /&gt;
## Expand your project. Then right click &amp;quot;References&amp;quot; -&amp;gt; Add Reference...&lt;br /&gt;
## Click Browse...&lt;br /&gt;
## Navigate towards &amp;lt;pre&amp;gt;RimWorld******/RimWorld******_Data/Managed&amp;lt;/pre&amp;gt; and select files: &amp;lt;br/&amp;gt;&amp;lt;pre&amp;gt;Assembly-CSharp.dll&amp;amp;#10;UnityEngine.dll&amp;lt;/pre&amp;gt;&lt;br /&gt;
## Click &amp;quot;Add&amp;quot;&lt;br /&gt;
## Click &amp;quot;OK&amp;quot; to close the Reference Manager.&lt;br /&gt;
## Right click on both Assembly-CSharp.dll and UnityEngine.dll and set Copy Local to False (Properties pane).&lt;br /&gt;
&lt;br /&gt;
====Option 2 (Automatic Method):====&lt;br /&gt;
This option uses the [https://ludeon.com/forums/index.php?topic=39038.0 Rimworld Mod Development Cookiecutter] tool.&amp;lt;/br&amp;gt;&lt;br /&gt;
'''Note: despite being automatic and potentially taking away some of the tedium away, the environment it sets up is very particular and this tool is currently not recommended for newcomers.'''&amp;lt;/br&amp;gt;&lt;br /&gt;
''As of Jan 2019, the cookiecutter is set up for Windows development.  Linux/Mac people can still use it, but they will have a few errors to clean up.''&amp;lt;/br&amp;gt;&lt;br /&gt;
# Open Visual Studio&lt;br /&gt;
# Once loaded, go to File -&amp;gt; New -&amp;gt; From Cookiecutter...&lt;br /&gt;
# Search for ''rimworld''&lt;br /&gt;
# Double-click ''cookiecutter-rimworld-mod-development''&lt;br /&gt;
# Change the Template Options:&lt;br /&gt;
## ''Create To'' =&amp;gt; ''Your/Rimworld/Mod/Directory''&lt;br /&gt;
## ''mod_name''&lt;br /&gt;
## ''namespace_name'' (don't change if unsure)&lt;br /&gt;
## ''author'' =&amp;gt; ''your steam username''&lt;br /&gt;
## ''target_version'' =&amp;gt; current RW version (can leave blank for most up-to-date)&lt;br /&gt;
## ''in_game_description'' (not required, can change later in About-Release.xml)&lt;br /&gt;
## ''url'' (can leave blank for link to your Steam Workshop profile)&lt;br /&gt;
# Click &amp;quot;Create and Open Folder&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===Sharpdevelop===&lt;br /&gt;
'''Caution:''' Sharpdevelop (or #develop) does NOT CURRENTLY allow for C# 6.0+ syntax without plugins and does NOT ALLOW for C# 7.0+ syntax at all. For your average project this does not matter, however some existing projects are already built entirely upon C# 6.0+ syntax which can not be compiled anymore in Sharpdevelop. Visual Studio does not have these issues and should be your go-to for compiling large projects such as Combat Extended.&lt;br /&gt;
&lt;br /&gt;
# Create a new class library project in your [[Modding Tutorials/Recommended software#IDE.27s|IDE of choice]];&lt;br /&gt;
## Go to File -&amp;gt; New -&amp;gt; Solution;&lt;br /&gt;
## Go to C# or .NET -&amp;gt; Library or Class Library (NOT portable);&lt;br /&gt;
## Enter a project name (solution name automatically updated);&lt;br /&gt;
## Choose a location, preferably:&amp;lt;br/&amp;gt;&amp;lt;pre&amp;gt;(RimWorldInstallFolder)/Mods/(YourModName)/Source&amp;lt;/pre&amp;gt;&lt;br /&gt;
## ''Optional'': Untick &amp;quot;Create a directory for solution&amp;quot;/&amp;quot;Create a project within the solution directory&amp;quot;,&lt;br /&gt;
# In your project, add references to Assembly-CSharp.dll and UnityEngine.dll:&lt;br /&gt;
## In your IDE project file browser, right-click the &amp;quot;References&amp;quot; folder and &amp;quot;Add reference&amp;quot;;&lt;br /&gt;
## Choose the &amp;quot;.NET Assembly Browser&amp;quot; tab and &amp;quot;Browse...&amp;quot;;&lt;br /&gt;
## Navigate towards &amp;lt;pre&amp;gt;RimWorld******/RimWorld******_Data/Managed&amp;lt;/pre&amp;gt; and select files: &amp;lt;br/&amp;gt;&amp;lt;pre&amp;gt;Assembly-CSharp.dll&amp;amp;#10;UnityEngine.dll&amp;lt;/pre&amp;gt;&lt;br /&gt;
## Click &amp;quot;Open&amp;quot; then &amp;quot;OK&amp;quot;;&lt;br /&gt;
## In the References folder, right-click Assembly-CSharp -&amp;gt; Properties and change &amp;quot;Local copy&amp;quot; to False. Do the same for UnityEngine,&lt;br /&gt;
# In your project properties, change the target framework to .NET 3.5:&lt;br /&gt;
## In your IDE project file browser, right-click &amp;quot;(YourSolutionName)&amp;quot;;&lt;br /&gt;
## Choose Properties;&lt;br /&gt;
## Go to the &amp;quot;Compiling&amp;quot; tab, &amp;quot;Output&amp;quot;, &amp;quot;Target framework&amp;quot;, &amp;quot;Change&amp;quot; and choose &amp;quot;.NET Framework 3.5&amp;quot;,&lt;br /&gt;
# In your project properties, change the build events so only a single file is built:&lt;br /&gt;
## Go to the &amp;quot;Compiling&amp;quot; tab, &amp;quot;Output&amp;quot;, &amp;quot;Debug info&amp;quot; and choose &amp;quot;No debug information&amp;quot;;&lt;br /&gt;
## Right-click your .cs files -&amp;gt; Properties and change &amp;quot;Copy to output&amp;quot; (If you haven't resized the properties bar, this will be truncated to &amp;quot;Copy to out&amp;quot;) to Never,&lt;br /&gt;
# In your project properties, fix the output location to put the DLL in the Assemblies folder:&lt;br /&gt;
## Go to the &amp;quot;Compiling&amp;quot; tab, &amp;quot;Output&amp;quot;, &amp;quot;Output path&amp;quot; and change the output path to &amp;quot;..\..\Assemblies\&amp;quot;.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Xamarin/MonoDevelop===&lt;br /&gt;
The setup is similar as the one above. A few special points to address:&lt;br /&gt;
# Mono 4.X isn't backward compatible so you may need to install an older 3.X version of Mono in order to compile against .NET3.5 dlls.&lt;br /&gt;
# Make sure you uncheck &amp;quot;Use MSBuild build engine (recommended for this project type)&amp;quot; under project &amp;gt; options &amp;gt; build &amp;gt; general   (You might find this by right-clicking on your project - not solution - name and selecting options)&lt;br /&gt;
# Changing the framework to 3.5 can be found (for Linux anyway) in the same place.&lt;br /&gt;
&lt;br /&gt;
More detailed installation instructions for Linux can be found [https://blog.rubenwardy.com/2016/07/21/rimworld-setup-monodevelop/ here] and [https://spdskatr.github.io/RWModdingResources/mono-arch here].&lt;br /&gt;
&lt;br /&gt;
===Rider (good for Mac)===&lt;br /&gt;
JetBrains Rider is a great cross-platform C# IDE, but it isn't cheap. It's $140 for the first year, including perpetual access to that version (access to future updates gets cheaper, but it's still over $100/year). However, the Early Access versions are a bit unstable but free. They also offer free student licenses.&lt;br /&gt;
&lt;br /&gt;
# Open Rider and click New Solution in the welcome dialog.&lt;br /&gt;
## Click Class Library under .NET on the left. The option may a second to show up.&lt;br /&gt;
## Under Solution Name (and Project Name), enter the name of your mod.&lt;br /&gt;
## Set the Solution Directory to [your mod folder]/Source.&lt;br /&gt;
## Optionally check &amp;quot;put solution and project in the same directory.&amp;quot; This is probably a good idea.&lt;br /&gt;
## Change Framework to .Net Framework 3.5.&lt;br /&gt;
## Click Create.&lt;br /&gt;
# In the left side bar, expand your solution, right click your project (mod name with &amp;quot;C#&amp;quot; icon) and click Properties.&lt;br /&gt;
## In the Properties window, select Configurations &amp;gt; Debug on the left and uncheck Debug Symbols.&lt;br /&gt;
## For both configurations, change the Output Path to ../../Assemblies.&lt;br /&gt;
## Click OK.&lt;br /&gt;
# Expand your project, right click References and click Add Reference.&lt;br /&gt;
## Click Add From.&lt;br /&gt;
## Browse to the folder with the RimWorld DLLs (Mac: /Users/[username]/Library/Application Support/Steam/steamapps/common/RimWorld/RimWorldMac.app/Contents/Resources/Data/Managed).&lt;br /&gt;
## Select both Assembly-CSharp.dll and UnityEngine.dll and click OK.&lt;br /&gt;
## Expand Assemblies under References. For both of the assemblies that you just added:&lt;br /&gt;
### Right click the assembly and click Properties.&lt;br /&gt;
### Uncheck &amp;quot;Copy Local&amp;quot; (you may need to scroll down) and click OK.&lt;br /&gt;
&lt;br /&gt;
You're done! Note that Rider has a built-in decompiler—to view the source of a RimWorld class or method, just right-click its name and click Go To &amp;gt; Definition.&lt;br /&gt;
&lt;br /&gt;
=Common issues=&lt;br /&gt;
* Can't find the option to target .NET Framework 3.5? Due to its age, it may require additional installation steps. In Visual Studio, Tools =&amp;gt; Get Tools and features =&amp;gt; Individual Components =&amp;gt; Select ''.NET Framework 3.5 development tools'' (or google installation instructions). Also make sure your project is a ''Class Library (.NET '''Framework''')''. Not .NET Core or .NET Standard. &lt;br /&gt;
&lt;br /&gt;
=See also=&lt;br /&gt;
* [[Modding Tutorials/Writing custom code|Writing custom code]] continues on setting up your solution.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Modding tutorials]]&lt;/div&gt;</summary>
		<author><name>Mehni</name></author>
	</entry>
</feed>