fantasia-archive/src/scripts/databaseManager/blueprints/characters.ts

1296 lines
30 KiB
TypeScript
Raw Normal View History

2021-02-26 14:50:46 +13:00
import { I_Blueprint } from "../../../interfaces/I_Blueprint"
2021-02-09 15:21:48 +13:00
export const charactersBlueprint: I_Blueprint = {
2021-01-31 02:43:13 +13:00
_id: "characters",
order: 18,
2021-01-31 02:43:13 +13:00
namePlural: "Characters",
nameSingular: "Character",
icon: "mdi-account",
extraFields: [
2021-02-09 15:21:48 +13:00
{
id: "breakBasic",
name: "Basic information",
type: "break",
sizing: 12
},
2021-01-31 02:43:13 +13:00
{
id: "name",
name: "Name",
type: "text",
icon: "mdi-account",
2021-02-21 01:06:21 +13:00
sizing: 3
},
{
id: "documentColor",
name: "Color",
type: "colorPicker",
icon: "mdi-eyedropper",
tooltip:
`This field allows for custom-coloring your document to any available HEX or RBG color.
<br>The selected color will show on the icon and name of the document both in the hierarchical tree on the left and in the top tabs.
`,
sizing: 2
2021-01-31 02:43:13 +13:00
},
{
id: "parentDoc",
2021-02-09 15:21:48 +13:00
name: "Belongs under",
2021-01-31 02:43:13 +13:00
type: "singleToNoneRelationship",
2021-02-21 01:06:21 +13:00
tooltip:
`This field is used to build up custom hierarchical tree structure in the main list of items in the left side of the app.
<br> You can use this for an infinite amount of sub-levels to the hierarchical structure.
<br> An example would be multiple sub-groups (provinces) of Roman Empire belonging under the main political group called "Roman Empire".
`,
sizing: 3,
2021-01-31 02:43:13 +13:00
relationshipSettings: {
connectedObjectType: "characters"
}
},
{
id: "order",
name: "Order number",
type: "number",
icon: "mdi-file-tree",
2021-02-21 01:06:21 +13:00
tooltip:
`In case the default sorting via alphabet in the hierarchical tree on the left is inadequite for your needs, this field allows you to fill custom numbers to order by that get placed before the default alphabetical order.
<br>It is heavily suggested to "pad-out" the custom order numbers by writing for example 100 (or least 10) instead of 1.
<br>This allows for extra "padding" between the items in case a new one needs to be added in the middle without needing to redo the custom order on all documents.
`,
sizing: 2
},
{
id: "categorySwitch",
name: "Is a category",
type: "switch",
icon: "fas fa-folder-open",
tooltip:
`This setting allows for setting the current document to category mode.
<br>
A document with category mode toggled on will have most of its fields hidden and will not show in any other relationship searches except for "Belongs under".
`,
2021-01-31 02:43:13 +13:00
sizing: 2
},
{
id: "tags",
name: "Tags",
type: "tags",
icon: "mdi-tag",
tooltip:
2021-03-08 15:08:17 +13:00
`Tags are used to sort the same (or even different) document types into a custom groups based on your needs.
<br>
A document may have any number of tags, but each tag can be present only once.
<br>
This limitation also applies to any variation of lower or upper case iterations of the same tag.
<br>
Example: A tag called "Player Party" will be consider the same tag as "player party", "PlAyER PaRtY" or any similar.
`,
sizing: 12
2021-01-31 02:43:13 +13:00
},
{
id: "otherNames",
2021-02-21 01:06:21 +13:00
name: "Other names & Epithets",
type: "list",
2021-02-09 15:21:48 +13:00
icon: "mdi-book-plus",
2021-02-21 01:06:21 +13:00
sizing: 6
},
{
id: "titles",
name: "Titles",
type: "list",
icon: "mdi-crown",
sizing: 6
},
2021-01-31 02:43:13 +13:00
{
id: "sex",
name: "Sex",
type: "singleSelect",
icon: "mdi-gender-male-female",
2021-02-21 01:06:21 +13:00
sizing: 3,
predefinedSelectValues: [
"Male",
"Female",
"Other",
"None"
]
2021-02-09 15:21:48 +13:00
},
{
id: "age",
name: "Age",
type: "text",
icon: "mdi-timer-sand",
2021-02-21 01:06:21 +13:00
sizing: 3
2021-02-09 15:21:48 +13:00
},
{
id: "height",
name: "Height",
type: "text",
icon: "mdi-human-male-height-variant",
2021-02-21 01:06:21 +13:00
sizing: 3
2021-02-09 15:21:48 +13:00
},
{
id: "weight",
name: "Weight",
type: "text",
icon: "mdi-weight",
2021-02-21 01:06:21 +13:00
sizing: 3
2021-02-09 15:21:48 +13:00
},
{
id: "strength",
name: "Strength",
type: "text",
icon: "fas fa-dumbbell",
sizing: 2
},
{
id: "constitution",
name: "Constitution",
type: "text",
icon: "mdi-shield",
sizing: 2
},
{
id: "dexterity",
name: "Dexterity",
type: "text",
icon: "mdi-run-fast",
sizing: 2
},
{
id: "intellect",
name: "Intellect",
type: "text",
icon: "mdi-brain",
sizing: 2
},
{
id: "wisdom",
name: "Wisdom/Willpower",
type: "text",
icon: "fas fa-yin-yang",
sizing: 2
},
{
id: "charisma",
name: "Charisma",
type: "text",
icon: "mdi-drama-masks",
sizing: 2
},
{
id: "pairedOriginLocation",
name: "Place of origin",
type: "singleToManyRelationship",
icon: "mdi-map-marker-radius",
sizing: 3,
relationshipSettings: {
connectedObjectType: "locations",
connectedField: "pairedOriginCharacters"
}
},
{
id: "birthDate",
name: "Date of birth",
type: "text",
icon: "mdi-cake-variant",
sizing: 3
},
{
id: "pairedDemiseLocation",
name: "Place of demise",
type: "singleToManyRelationship",
icon: "mdi-map-marker-radius",
2021-01-31 02:43:13 +13:00
sizing: 3,
2021-02-09 15:21:48 +13:00
relationshipSettings: {
connectedObjectType: "locations",
connectedField: "pairedDemiseCharacters"
}
},
{
id: "deathDate",
name: "Date of death",
type: "text",
icon: "mdi-skull-crossbones",
sizing: 3
},
{
id: "pairedCurrentLocation",
name: "Place of residence",
type: "singleToManyRelationship",
icon: "mdi-map-marker-radius",
2021-02-21 01:06:21 +13:00
sizing: 3,
2021-02-09 15:21:48 +13:00
relationshipSettings: {
connectedObjectType: "locations",
connectedField: "pairedCurrentCharacters"
}
},
{
id: "pairedRace",
name: "Race/Species",
type: "manyToManyRelationship",
icon: "fas fa-dragon",
2021-02-21 01:06:21 +13:00
sizing: 3,
2021-02-09 15:21:48 +13:00
relationshipSettings: {
connectedObjectType: "races",
connectedField: "pairedCharacter"
}
},
2021-02-21 01:06:21 +13:00
{
id: "ethnicity",
name: "Ethnicity",
type: "text",
icon: "fas fa-hand-paper",
sizing: 3
},
2021-02-09 15:21:48 +13:00
{
id: "powerLevel",
2021-02-21 01:06:21 +13:00
name: "Combat rating",
2021-02-09 15:21:48 +13:00
type: "singleSelect",
icon: "fas fa-fist-raised",
2021-02-21 01:06:21 +13:00
sizing: 3,
2021-02-09 15:21:48 +13:00
predefinedSelectValues: [
/*
"0 - Civilian",
"1 - Trainee / Athletic civilian",
"2 - Trained soldier / Weak magic user",
"3 - Veteran soldier / Average magic user",
"4 - Elite soldier / Weak vampire",
"5 - Top-tier soldier / Strong magic user / Weak nephilim / Average vampire",
"6 - Exceptional magic user / Average nephilim / Powerful vampire",
"7 - Genius magic user / Powerful nephilim / Prodigy vampire",
"8 - Prodigy magic user / Genius nephilim",
"9 - Weak god / Weak dragon / Prodigy nephilim",
"10 - Average god / Adult dragon",
"11 - Powerful god / Poweful and old dragon / Weak ascendant",
"12 - Prodigy god / Ancient dragon / Medium ascendant / Weak & medium outerplanar entities",
"13 - World-shaping god / Powerful ascendant / Strong outerplanar entity",
"14 - New transcendant / Genius ascendant / Powerful outerplanar entity",
"15 - Established transcendant / Prodigy ascendant / Ancient outerplanar entity",
"16 & Above - Off the scale / Impossible to even categorize" */
]
},
{
id: "description",
name: "Description & History",
type: "wysiwyg",
sizing: 12
},
{
id: "breakSkills",
name: "Skill and other features",
type: "break",
sizing: 12
},
{
id: "personalityTraits",
2021-03-08 11:07:40 +13:00
name: "Traits & Characteristics",
2021-02-09 15:21:48 +13:00
type: "multiSelect",
icon: "mdi-head-cog",
sizing: 6,
predefinedSelectValues: [
"Abrasive",
"Abrupt",
2021-02-21 01:06:21 +13:00
"Absentminded",
"Accessible",
"Active",
"Adaptable",
"Admirable",
"Adventurous",
"Aggressive",
2021-02-09 15:21:48 +13:00
"Agonizing",
2021-02-21 01:06:21 +13:00
"Agreeable",
2021-02-09 15:21:48 +13:00
"Aimless",
"Airy",
2021-02-21 01:06:21 +13:00
"Alert",
"Allocentric",
2021-02-09 15:21:48 +13:00
"Aloof",
2021-02-21 01:06:21 +13:00
"Ambitious",
"Amiable",
2021-02-09 15:21:48 +13:00
"Amoral",
2021-02-21 01:06:21 +13:00
"Amusing",
2021-02-09 15:21:48 +13:00
"Angry",
2021-02-21 01:06:21 +13:00
"Anticipative",
2021-02-09 15:21:48 +13:00
"Anxious",
"Apathetic",
2021-02-21 01:06:21 +13:00
"Appreciative",
2021-02-09 15:21:48 +13:00
"Arbitrary",
"Argumentative",
"Arrogantt",
2021-02-21 01:06:21 +13:00
"Artful",
"Articulate",
2021-02-09 15:21:48 +13:00
"Artificial",
2021-02-21 01:06:21 +13:00
"Ascetic",
2021-02-09 15:21:48 +13:00
"Asocial",
2021-02-21 01:06:21 +13:00
"Aspiring",
2021-02-09 15:21:48 +13:00
"Assertive",
"Astigmatic",
2021-02-21 01:06:21 +13:00
"Athletic",
"Attractive",
"Authoritarian",
"Balanced",
2021-02-09 15:21:48 +13:00
"Barbaric",
2021-02-21 01:06:21 +13:00
"Benevolent",
2021-02-09 15:21:48 +13:00
"Bewildered",
2021-02-21 01:06:21 +13:00
"Big-thinking",
"Biosterous",
2021-02-09 15:21:48 +13:00
"Bizarre",
"Bland",
"Blunt",
2021-02-21 01:06:21 +13:00
"Boyish",
"Breezy",
"Brilliant",
2021-02-09 15:21:48 +13:00
"Brittle",
"Brutal",
2021-02-21 01:06:21 +13:00
"Businesslike",
"Busy",
2021-02-09 15:21:48 +13:00
"Calculating",
"Callous",
2021-02-21 01:06:21 +13:00
"Calm",
2021-02-09 15:21:48 +13:00
"Cantakerous",
2021-02-21 01:06:21 +13:00
"Capable",
"Captivating",
2021-02-09 15:21:48 +13:00
"Careless",
2021-02-21 01:06:21 +13:00
"Caring",
"Casual",
2021-02-09 15:21:48 +13:00
"Cautious",
2021-02-21 01:06:21 +13:00
"Challenging",
"Charismatic",
"Charming",
2021-02-09 15:21:48 +13:00
"Charmless",
2021-02-21 01:06:21 +13:00
"Cheerful",
2021-02-09 15:21:48 +13:00
"Childish",
2021-02-21 01:06:21 +13:00
"Chummy",
"Circumspect",
"Clean",
"Clear-headed",
"Clever",
2021-02-09 15:21:48 +13:00
"Clumsy",
"Coarse",
"Cold",
2021-02-21 01:06:21 +13:00
"Colorful",
2021-02-09 15:21:48 +13:00
"Colorless",
2021-02-21 01:06:21 +13:00
"Companionly",
"Compassionate",
"Competitive",
2021-02-09 15:21:48 +13:00
"Complacent",
"Complaintive",
2021-02-21 01:06:21 +13:00
"Complex",
2021-02-09 15:21:48 +13:00
"Compulsive",
"Conceited",
2021-02-21 01:06:21 +13:00
"Conciliatory",
2021-02-09 15:21:48 +13:00
"Condemnatory",
2021-02-21 01:06:21 +13:00
"Confident",
"Confidential",
2021-02-09 15:21:48 +13:00
"Conformist",
"Confused",
2021-02-21 01:06:21 +13:00
"Conscientious",
"Conservative",
"Considerate",
"Constant",
"Contemplative",
2021-02-09 15:21:48 +13:00
"Contemptible",
2021-02-21 01:06:21 +13:00
"Contradictory",
2021-02-09 15:21:48 +13:00
"Conventional",
2021-02-21 01:06:21 +13:00
"Cooperative",
"Courageous",
"Courteous",
2021-02-09 15:21:48 +13:00
"Cowardly",
"Crafty",
"Crass",
"Crazy",
2021-02-21 01:06:21 +13:00
"Creative",
"Crebral",
2021-02-09 15:21:48 +13:00
"Criminal",
2021-02-21 01:06:21 +13:00
"Crisp",
2021-02-09 15:21:48 +13:00
"Critical",
"Crude",
"Cruel",
2021-02-21 01:06:21 +13:00
"Cultured",
"Curious",
"Cute",
2021-02-09 15:21:48 +13:00
"Cynical",
2021-02-21 01:06:21 +13:00
"Daring",
"Debonair",
2021-02-09 15:21:48 +13:00
"Decadent",
"Deceitful",
2021-02-21 01:06:21 +13:00
"Decent",
"Deceptive",
"Decisive",
"Dedicated",
"Deep",
2021-02-09 15:21:48 +13:00
"Delicate",
"Demanding",
"Dependent",
"Desperate",
"Destructive",
2021-02-21 01:06:21 +13:00
"Determined",
2021-02-09 15:21:48 +13:00
"Devious",
"Difficult",
2021-02-21 01:06:21 +13:00
"Dignified",
"Directed",
2021-02-09 15:21:48 +13:00
"Dirty",
2021-02-21 01:06:21 +13:00
"Disciplined",
2021-02-09 15:21:48 +13:00
"Disconcerting",
"Discontented",
"Discouraging",
"Discourteous",
2021-02-21 01:06:21 +13:00
"Discreet",
2021-02-09 15:21:48 +13:00
"Dishonest",
"Disloyal",
"Disobedient",
"Disorderly",
"Disorganized",
"Disputatious",
"Disrespectful",
"Disruptive",
"Dissolute",
"Dissonant",
"Distractible",
"Disturbing",
"Dogmatic",
2021-02-21 01:06:21 +13:00
"Dominating",
2021-02-09 15:21:48 +13:00
"Domineering",
2021-02-21 01:06:21 +13:00
"Dramatic",
"Dreamy",
"Driving",
"Droll",
"Dry",
2021-02-09 15:21:48 +13:00
"Dull",
2021-02-21 01:06:21 +13:00
"Dutiful",
"Dynamic",
"Earnest",
"Earthy",
2021-02-09 15:21:48 +13:00
"Easily Discouraged",
2021-02-21 01:06:21 +13:00
"Ebullient",
"Educated",
"Effeminate",
"Efficient",
2021-02-09 15:21:48 +13:00
"Egocentric",
2021-02-21 01:06:21 +13:00
"Elegant",
"Eloquent",
"Emotional",
"Empathetic",
"Energetic",
2021-02-09 15:21:48 +13:00
"Enervated",
2021-02-21 01:06:21 +13:00
"Enigmatic",
"Enthusiastic",
2021-02-09 15:21:48 +13:00
"Envious",
"Erratic",
"Escapist",
2021-02-21 01:06:21 +13:00
"Esthetic",
2021-02-09 15:21:48 +13:00
"Excitable",
2021-02-21 01:06:21 +13:00
"Exciting",
2021-02-09 15:21:48 +13:00
"Expedient",
2021-02-21 01:06:21 +13:00
"Experimental",
"Extraordinary",
2021-02-09 15:21:48 +13:00
"Extravagant",
"Extreme",
2021-02-21 01:06:21 +13:00
"Fair",
"Faithful",
2021-02-09 15:21:48 +13:00
"Faithless",
"False",
2021-02-21 01:06:21 +13:00
"Familial",
2021-02-09 15:21:48 +13:00
"Fanatical",
"Fanciful",
2021-02-21 01:06:21 +13:00
"Farsighted",
2021-02-09 15:21:48 +13:00
"Fatalistic",
"Fawning",
"Fearful",
2021-02-21 01:06:21 +13:00
"Felicific",
2021-02-09 15:21:48 +13:00
"Fickle",
"Fiery",
2021-02-21 01:06:21 +13:00
"Firm",
2021-02-09 15:21:48 +13:00
"Fixed",
"Flamboyant",
2021-02-21 01:06:21 +13:00
"Flexible",
"Focused",
"Folksy",
2021-02-09 15:21:48 +13:00
"Foolish",
2021-02-21 01:06:21 +13:00
"Forecful",
2021-02-09 15:21:48 +13:00
"Forgetful",
2021-02-21 01:06:21 +13:00
"Forgiving",
"Formal",
"Forthright",
2021-02-09 15:21:48 +13:00
"Fraudulent",
2021-02-21 01:06:21 +13:00
"Freethinking",
"Freewheeling",
"Friendly",
2021-02-09 15:21:48 +13:00
"Frightening",
"Frivolous",
2021-02-21 01:06:21 +13:00
"Frugal",
"Fun-loving",
"Gallant",
"Generous",
"Gentle",
"Genuine",
"Glamorous",
2021-02-09 15:21:48 +13:00
"Gloomy",
2021-02-21 01:06:21 +13:00
"Good-natured",
2021-02-09 15:21:48 +13:00
"Graceless",
2021-02-21 01:06:21 +13:00
"Gracious",
2021-02-09 15:21:48 +13:00
"Grand",
"Greedy",
"Grim",
2021-02-21 01:06:21 +13:00
"Guileless",
2021-02-09 15:21:48 +13:00
"Gullible",
2021-02-21 01:06:21 +13:00
"Hardworking",
2021-02-09 15:21:48 +13:00
"Hateful",
"Haughty",
2021-02-21 01:06:21 +13:00
"Healthy",
"Hearty",
2021-02-09 15:21:48 +13:00
"Hedonistic",
2021-02-21 01:06:21 +13:00
"Helpful",
"Herioc",
2021-02-09 15:21:48 +13:00
"Hesitant",
"Hidebound",
"High-handed",
2021-02-21 01:06:21 +13:00
"High-minded",
"High-spirited",
"Honest",
"Honorable",
2021-02-09 15:21:48 +13:00
"Hostile",
2021-02-21 01:06:21 +13:00
"Humble",
"Humorous",
"Huried",
"Hypnotic",
"Iconoclastic",
"Idealistic",
"Idiosyncratic",
2021-02-09 15:21:48 +13:00
"Ignorant",
2021-02-21 01:06:21 +13:00
"Imaginative",
2021-02-09 15:21:48 +13:00
"Imitative",
2021-02-21 01:06:21 +13:00
"Impassive",
2021-02-09 15:21:48 +13:00
"Impatient",
2021-02-21 01:06:21 +13:00
"Impersonal",
2021-02-09 15:21:48 +13:00
"Impractical",
2021-02-21 01:06:21 +13:00
"Impressionable",
"Impressive",
2021-02-09 15:21:48 +13:00
"Imprudent",
"Impulsive",
2021-02-21 01:06:21 +13:00
"Incisive",
2021-02-09 15:21:48 +13:00
"Inconsiderate",
2021-02-21 01:06:21 +13:00
"Incorruptible",
2021-02-09 15:21:48 +13:00
"Incurious",
"Indecisive",
2021-02-21 01:06:21 +13:00
"Independent",
"Individualistic",
2021-02-09 15:21:48 +13:00
"Indulgent",
"Inert",
"Inhibited",
2021-02-21 01:06:21 +13:00
"Innovative",
"Inoffensive",
2021-02-09 15:21:48 +13:00
"Insecure",
"Insensitive",
2021-02-21 01:06:21 +13:00
"Insightful",
2021-02-09 15:21:48 +13:00
"Insincere",
2021-02-21 01:06:21 +13:00
"Insouciant",
2021-02-09 15:21:48 +13:00
"Insulting",
2021-02-21 01:06:21 +13:00
"Intelligent",
"Intense",
2021-02-09 15:21:48 +13:00
"Intolerant",
2021-02-21 01:06:21 +13:00
"Intuitive",
"Invisible",
"Invulnerable",
2021-02-09 15:21:48 +13:00
"Irascible",
"Irrational",
2021-02-21 01:06:21 +13:00
"Irreligious",
2021-02-09 15:21:48 +13:00
"Irresponsible",
2021-02-21 01:06:21 +13:00
"Irreverent",
2021-02-09 15:21:48 +13:00
"Irritable",
2021-02-21 01:06:21 +13:00
"Kind",
"Knowledge",
2021-02-09 15:21:48 +13:00
"Lazy",
2021-02-21 01:06:21 +13:00
"Leaderly",
"Leisurely",
"Liberal",
2021-02-09 15:21:48 +13:00
"Libidinous",
2021-02-21 01:06:21 +13:00
"Logical",
2021-02-09 15:21:48 +13:00
"Loquacious",
2021-02-21 01:06:21 +13:00
"Lovable",
"Loyal",
"Lyrical",
"Magnanimous",
2021-02-09 15:21:48 +13:00
"Malicious",
"Mannered",
"Mannerless",
2021-02-21 01:06:21 +13:00
"Many-sided",
"Masculine (Manly)",
"Maternal",
"Maticulous",
"Mature",
2021-02-09 15:21:48 +13:00
"Mawkish",
"Mealymouthed",
"Mechanical",
"Meddlesome",
"Melancholic",
2021-02-21 01:06:21 +13:00
"Mellow",
2021-02-09 15:21:48 +13:00
"Meretricious",
"Messy",
2021-02-21 01:06:21 +13:00
"Methodical",
2021-02-09 15:21:48 +13:00
"Miserable",
"Miserly",
"Misguided",
"Mistaken",
2021-02-21 01:06:21 +13:00
"Moderate",
"Modern",
"Modest",
2021-02-09 15:21:48 +13:00
"Money-minded",
"Monstrous",
"Moody",
2021-02-21 01:06:21 +13:00
"Moralistic",
2021-02-09 15:21:48 +13:00
"Morbid",
"Muddle-headed",
2021-02-21 01:06:21 +13:00
"Multi-leveled",
"Mystical",
2021-02-09 15:21:48 +13:00
"Naive",
"Narcissistic",
"Narrow-minded",
2021-02-21 01:06:21 +13:00
"Narrow",
2021-02-09 15:21:48 +13:00
"Natty",
2021-02-21 01:06:21 +13:00
"Neat",
2021-02-09 15:21:48 +13:00
"Negativistic",
"Neglectful",
"Neurotic",
2021-02-21 01:06:21 +13:00
"Neutral",
2021-02-09 15:21:48 +13:00
"Nihilistic",
2021-02-21 01:06:21 +13:00
"Nonauthoritarian",
"Noncommittal",
"Noncompetitive",
"Obedient",
"Objective",
2021-02-09 15:21:48 +13:00
"Obnoxious",
2021-02-21 01:06:21 +13:00
"Observant",
2021-02-09 15:21:48 +13:00
"Obsessive",
"Obvious",
"Odd",
"Offhand",
2021-02-21 01:06:21 +13:00
"Old-fashined",
2021-02-09 15:21:48 +13:00
"One-dimensional",
"One-sided",
2021-02-21 01:06:21 +13:00
"Open",
2021-02-09 15:21:48 +13:00
"Opinionated",
"Opportunistic",
"Oppressed",
2021-02-21 01:06:21 +13:00
"Optimistic",
"Orderly",
"Ordinary",
"Organized",
"Original",
2021-02-09 15:21:48 +13:00
"Outrageous",
2021-02-21 01:06:21 +13:00
"Outspoken",
2021-02-09 15:21:48 +13:00
"Overimaginative",
2021-02-21 01:06:21 +13:00
"Painstaking",
2021-02-09 15:21:48 +13:00
"Paranoid",
2021-02-21 01:06:21 +13:00
"Passionate",
2021-02-09 15:21:48 +13:00
"Passive",
2021-02-21 01:06:21 +13:00
"Paternalistic",
"Patient",
"Patriotic",
"Peaceful",
2021-02-09 15:21:48 +13:00
"Pedantic",
2021-02-21 01:06:21 +13:00
"Perceptive",
"Perfectionist",
"Personable",
"Persuasive",
2021-02-09 15:21:48 +13:00
"Perverse",
"Petty",
"Pharissical",
"Phlegmatic",
2021-02-21 01:06:21 +13:00
"Physical",
"Placid",
"Planful",
"Playful",
2021-02-09 15:21:48 +13:00
"Plodding",
2021-02-21 01:06:21 +13:00
"Polished",
"Political",
2021-02-09 15:21:48 +13:00
"Pompous",
2021-02-21 01:06:21 +13:00
"Popular",
2021-02-09 15:21:48 +13:00
"Possessive",
"Power-hungry",
2021-02-21 01:06:21 +13:00
"Practical",
"Precise",
2021-02-09 15:21:48 +13:00
"Predatory",
2021-02-21 01:06:21 +13:00
"Predictable",
2021-02-09 15:21:48 +13:00
"Prejudiced",
2021-02-21 01:06:21 +13:00
"Preoccupied",
2021-02-09 15:21:48 +13:00
"Presumptuous",
"Pretentious",
"Prim",
2021-02-21 01:06:21 +13:00
"Principled",
"Private",
2021-02-09 15:21:48 +13:00
"Procrastinating",
"Profligate",
2021-02-21 01:06:21 +13:00
"Profound",
"Progressive",
"Protean",
"Protective",
"Proud",
"Providential",
2021-02-09 15:21:48 +13:00
"Provocative",
2021-02-21 01:06:21 +13:00
"Prudent",
"Pruposeful",
2021-02-09 15:21:48 +13:00
"Pugnacious",
2021-02-21 01:06:21 +13:00
"Punctual",
"Pure",
2021-02-09 15:21:48 +13:00
"Puritanical",
2021-02-21 01:06:21 +13:00
"Questioning",
"Quiet",
2021-02-09 15:21:48 +13:00
"Quirky",
2021-02-21 01:06:21 +13:00
"Rational",
2021-02-09 15:21:48 +13:00
"Reactionary",
"Reactive",
2021-02-21 01:06:21 +13:00
"Realistic",
"Reflective",
2021-02-09 15:21:48 +13:00
"Regimental",
"Regretful",
2021-02-21 01:06:21 +13:00
"Relaxed",
"Reliable",
"Religious",
2021-02-09 15:21:48 +13:00
"Repentant",
"Repressed",
"Resentful",
2021-02-21 01:06:21 +13:00
"Reserved",
"Resourceful",
"Respectful",
"Responsible",
"Responsive",
"Restrained",
"Retiring",
"Reverential",
2021-02-09 15:21:48 +13:00
"Ridiculous",
"Rigid",
"Ritualistic",
2021-02-21 01:06:21 +13:00
"Romantic",
2021-02-09 15:21:48 +13:00
"Rowdy",
"Ruined",
2021-02-21 01:06:21 +13:00
"Rustic",
2021-02-09 15:21:48 +13:00
"Sadistic",
2021-02-21 01:06:21 +13:00
"Sage",
2021-02-09 15:21:48 +13:00
"Sanctimonious",
2021-02-21 01:06:21 +13:00
"Sane",
"Sarcastic",
2021-02-09 15:21:48 +13:00
"Scheming",
2021-02-21 01:06:21 +13:00
"Scholarly",
2021-02-09 15:21:48 +13:00
"Scornful",
2021-02-21 01:06:21 +13:00
"Scrupulous",
2021-02-09 15:21:48 +13:00
"Secretive",
2021-02-21 01:06:21 +13:00
"Secure",
2021-02-09 15:21:48 +13:00
"Sedentary",
2021-02-21 01:06:21 +13:00
"Self-conscious",
"Self-critical",
"Self-defacing",
"Self-denying",
2021-02-09 15:21:48 +13:00
"Self-indulgent",
2021-02-21 01:06:21 +13:00
"Self-reliant",
"Self-sufficent",
"Selfish",
"Selfless",
"Sensitive",
"Sensual",
"Sentimental",
"Seraphic",
"Serious",
"Sexy",
2021-02-09 15:21:48 +13:00
"Shallow",
2021-02-21 01:06:21 +13:00
"Sharing",
2021-02-09 15:21:48 +13:00
"Shortsighted",
2021-02-21 01:06:21 +13:00
"Shrewd",
2021-02-09 15:21:48 +13:00
"Shy",
"Silly",
2021-02-21 01:06:21 +13:00
"Simple",
2021-02-09 15:21:48 +13:00
"Single-minded",
2021-02-21 01:06:21 +13:00
"Skeptical",
"Skillful",
2021-02-09 15:21:48 +13:00
"Sloppy",
"Slow",
"Sly",
"Small-thinking",
2021-02-21 01:06:21 +13:00
"Smooth",
"Sober",
"Sociable",
"Soft",
"Soft",
2021-02-09 15:21:48 +13:00
"Softheaded",
2021-02-21 01:06:21 +13:00
"Solemn",
"Solid",
"Solitary",
"Sophisticated",
2021-02-09 15:21:48 +13:00
"Sordid",
2021-02-21 01:06:21 +13:00
"Spontaneous",
"Sporting",
"Stable",
"Steadfast",
"Steady",
2021-02-09 15:21:48 +13:00
"Steely",
2021-02-21 01:06:21 +13:00
"Stern",
2021-02-09 15:21:48 +13:00
"Stiff",
2021-02-21 01:06:21 +13:00
"Stoic",
"Stoiid",
"Strict",
2021-02-09 15:21:48 +13:00
"Strong-willed",
2021-02-21 01:06:21 +13:00
"Strong",
"Stubborn",
"Studious",
2021-02-09 15:21:48 +13:00
"Stupid",
2021-02-21 01:06:21 +13:00
"Stylish",
"Suave",
"Subjective",
2021-02-09 15:21:48 +13:00
"Submissive",
2021-02-21 01:06:21 +13:00
"Subtle",
2021-02-09 15:21:48 +13:00
"Superficial",
"Superstitious",
2021-02-21 01:06:21 +13:00
"Surprising",
2021-02-09 15:21:48 +13:00
"Suspicious",
2021-02-21 01:06:21 +13:00
"Sweet",
"Sympathetic",
"Systematic",
2021-02-09 15:21:48 +13:00
"Tactless",
2021-02-21 01:06:21 +13:00
"Tasteful",
2021-02-09 15:21:48 +13:00
"Tasteless",
2021-02-21 01:06:21 +13:00
"Teacherly",
2021-02-09 15:21:48 +13:00
"Tense",
"Thievish",
2021-02-21 01:06:21 +13:00
"Thorough",
2021-02-09 15:21:48 +13:00
"Thoughtless",
2021-02-21 01:06:21 +13:00
"Tidy",
2021-02-09 15:21:48 +13:00
"Timid",
2021-02-21 01:06:21 +13:00
"Tolerant",
"Tough",
"Tractable",
2021-02-09 15:21:48 +13:00
"Transparent",
"Treacherous",
"Trendy",
"Troublesome",
2021-02-21 01:06:21 +13:00
"Trusting",
"Unaggressive",
"Unambitious",
2021-02-09 15:21:48 +13:00
"Unappreciative",
"Uncaring",
2021-02-21 01:06:21 +13:00
"Unceremonious",
"Unchanging",
2021-02-09 15:21:48 +13:00
"Uncharitable",
2021-02-21 01:06:21 +13:00
"Uncomplaining",
2021-02-09 15:21:48 +13:00
"Unconvincing",
"Uncooperative",
"Uncreative",
"Uncritical",
"Unctuous",
2021-02-21 01:06:21 +13:00
"Undemanding",
"Understanding",
2021-02-09 15:21:48 +13:00
"Undisciplined",
2021-02-21 01:06:21 +13:00
"Undogmatic",
"Unfathomable",
"Unfoolable",
2021-02-09 15:21:48 +13:00
"Unfriendly",
"Ungrateful",
"Unhealthy",
2021-02-21 01:06:21 +13:00
"Unhurried",
2021-02-09 15:21:48 +13:00
"Unimaginative",
"Unimpressive",
2021-02-21 01:06:21 +13:00
"Uninhibited",
2021-02-09 15:21:48 +13:00
"Unlovable",
2021-02-21 01:06:21 +13:00
"Unpatriotic",
2021-02-09 15:21:48 +13:00
"Unpolished",
2021-02-21 01:06:21 +13:00
"Unpredicatable",
2021-02-09 15:21:48 +13:00
"Unprincipled",
"Unrealistic",
"Unreflective",
"Unreliable",
2021-02-21 01:06:21 +13:00
"Unreligious",
2021-02-09 15:21:48 +13:00
"Unrestrained",
"Unself-critical",
2021-02-21 01:06:21 +13:00
"Unsentimental",
2021-02-09 15:21:48 +13:00
"Unstable",
2021-02-21 01:06:21 +13:00
"Upright",
"Urbane",
2021-02-09 15:21:48 +13:00
"Vacuous",
"Vague",
"Venal",
"Venomous",
"Venturesome",
2021-02-21 01:06:21 +13:00
"Vindictive",
2021-02-09 15:21:48 +13:00
"Vivacious",
2021-02-21 01:06:21 +13:00
"Vulnerable",
2021-02-09 15:21:48 +13:00
"Warm",
2021-02-21 01:06:21 +13:00
"Weak-willed",
"Weak",
2021-02-09 15:21:48 +13:00
"Well-bred",
2021-02-21 01:06:21 +13:00
"Well-meaning",
2021-02-09 15:21:48 +13:00
"Well-read",
"Well-rounded",
2021-02-21 01:06:21 +13:00
"Whimsical",
"Willful",
2021-02-09 15:21:48 +13:00
"Winning",
"Wise",
2021-02-21 01:06:21 +13:00
"Wishful",
2021-02-09 15:21:48 +13:00
"Witty",
"Youthful",
2021-02-21 01:06:21 +13:00
"Zany"
2021-02-09 15:21:48 +13:00
]
},
{
id: "traits",
name: "Unusual features/traits",
type: "list",
icon: "mdi-guy-fawkes-mask",
sizing: 6
2021-01-31 02:43:13 +13:00
},
{
id: "skills",
name: "Skills",
type: "list",
icon: "mdi-sword-cross",
sizing: 6,
predefinedListExtras: {
affix: "Level",
extraSelectValueList: [
"Trainee",
2021-02-09 15:21:48 +13:00
"Appreantice",
"Capable",
"Advanced",
2021-01-31 02:43:13 +13:00
"Expert",
2021-02-09 15:21:48 +13:00
"Master",
"Grand-master",
"Genius",
"Prodigy",
"Off-the-scale"
2021-01-31 02:43:13 +13:00
]
}
},
{
2021-02-09 15:21:48 +13:00
id: "pairedLanguage",
name: "Languages",
type: "manyToManyRelationship",
icon: "mdi-book-alphabet",
2021-01-31 02:43:13 +13:00
sizing: 6,
2021-02-09 15:21:48 +13:00
relationshipSettings: {
connectedObjectType: "languages",
connectedField: "pairedCharacter"
}
2021-01-31 02:43:13 +13:00
},
{
2021-02-09 15:21:48 +13:00
id: "pairedMagic",
name: "Known magic/spells",
type: "manyToManyRelationship",
icon: "fas fa-hat-wizard",
2021-01-31 02:43:13 +13:00
sizing: 6,
relationshipSettings: {
2021-02-09 15:21:48 +13:00
connectedObjectType: "magic",
connectedField: "pairedCharacter"
2021-01-31 02:43:13 +13:00
}
},
{
2021-02-09 15:21:48 +13:00
id: "pairedTech",
2021-02-21 01:06:21 +13:00
name: "Known technologies/sciences",
2021-02-09 15:21:48 +13:00
type: "manyToManyRelationship",
icon: "fas fa-wrench",
2021-01-31 02:43:13 +13:00
sizing: 6,
2021-02-09 15:21:48 +13:00
relationshipSettings: {
connectedObjectType: "tech",
connectedField: "pairedCharacter"
}
},
{
id: "breakRelationships",
name: "Relationships",
type: "break",
sizing: 12
},
{
id: "parentsOfCharacter",
name: "Parents of character",
type: "manyToManyRelationship",
icon: "mdi-account",
sizing: 4,
2021-01-31 02:43:13 +13:00
relationshipSettings: {
connectedObjectType: "characters",
2021-02-09 15:21:48 +13:00
connectedField: "childOfCharacter"
2021-01-31 02:43:13 +13:00
}
},
{
2021-02-09 15:21:48 +13:00
id: "childOfCharacter",
name: "Children of character",
type: "manyToManyRelationship",
icon: "mdi-account",
sizing: 4,
2021-01-31 02:43:13 +13:00
relationshipSettings: {
2021-02-09 15:21:48 +13:00
connectedObjectType: "characters",
connectedField: "parentsOfCharacter"
2021-01-31 02:43:13 +13:00
}
},
{
2021-02-09 15:21:48 +13:00
id: "relativesOfCharacter",
name: "Other relatives of character",
type: "manyToManyRelationship",
icon: "mdi-account",
sizing: 4,
2021-01-31 02:43:13 +13:00
relationshipSettings: {
connectedObjectType: "characters",
2021-02-09 15:21:48 +13:00
connectedField: "relativesOfCharacter"
2021-01-31 02:43:13 +13:00
}
},
{
2021-02-09 15:21:48 +13:00
id: "allyResCharacter",
name: "Friends/Allies",
type: "manyToManyRelationship",
icon: "mdi-account",
sizing: 4,
2021-01-31 02:43:13 +13:00
relationshipSettings: {
2021-02-09 15:21:48 +13:00
connectedObjectType: "characters",
connectedField: "allyResCharacter"
2021-01-31 02:43:13 +13:00
}
},
{
2021-02-09 15:21:48 +13:00
id: "enemydResCharacter",
name: "Enemies",
2021-01-31 02:43:13 +13:00
type: "manyToManyRelationship",
2021-02-09 15:21:48 +13:00
icon: "mdi-account",
sizing: 4,
2021-01-31 02:43:13 +13:00
relationshipSettings: {
connectedObjectType: "characters",
2021-02-09 15:21:48 +13:00
connectedField: "enemydResCharacter"
2021-01-31 02:43:13 +13:00
}
},
{
2021-02-09 15:21:48 +13:00
id: "complicatedResCharacter",
name: "Complicated relationship with",
type: "manyToManyRelationship",
icon: "mdi-account",
sizing: 4,
relationshipSettings: {
connectedObjectType: "characters",
connectedField: "complicatedResCharacter"
}
},
{
id: "breakPolitics",
name: "Ideologies, religions & politics",
type: "break",
sizing: 12
},
2021-03-08 11:07:40 +13:00
{
id: "pairedConnectionPolGroup",
name: "Connected to political groups/ideologies",
type: "manyToManyRelationship",
icon: "mdi-bank-outline",
sizing: 6,
relationshipSettings: {
connectedObjectType: "politicalGroups",
connectedField: "pairedConnectionCharacter"
}
},
2021-02-09 15:21:48 +13:00
{
id: "pairedBelongingPolGroup",
name: "Member of political groups/ideologies",
type: "manyToManyRelationship",
icon: "mdi-bank-outline",
2021-03-08 11:07:40 +13:00
sizing: 6,
2021-02-09 15:21:48 +13:00
relationshipSettings: {
connectedObjectType: "politicalGroups",
connectedField: "pairedBelongingCharacter"
}
},
{
id: "pairedAllyPolGroup",
name: "Ally of political groups/ideologies",
type: "manyToManyRelationship",
icon: "mdi-bank-outline",
2021-03-08 11:07:40 +13:00
sizing: 6,
2021-02-09 15:21:48 +13:00
relationshipSettings: {
connectedObjectType: "politicalGroups",
connectedField: "pairedAllyCharacter"
}
},
{
id: "pairedEnemyPolGroup",
name: "Enemy of political groups/ideologies",
type: "manyToManyRelationship",
icon: "mdi-bank-outline",
2021-03-08 11:07:40 +13:00
sizing: 6,
2021-02-09 15:21:48 +13:00
relationshipSettings: {
connectedObjectType: "politicalGroups",
connectedField: "pairedEnemyCharacter"
}
},
2021-03-08 11:07:40 +13:00
{
id: "pairedConnectionRelGroup",
name: "Connected to religious groups/teachings",
type: "manyToManyRelationship",
icon: "fas fa-ankh",
sizing: 6,
relationshipSettings: {
connectedObjectType: "religions",
connectedField: "pairedConnectionCharacter"
}
},
2021-02-09 15:21:48 +13:00
{
id: "pairedBelongingRelGroup",
name: "Member of religious groups/teachings",
type: "manyToManyRelationship",
icon: "fas fa-ankh",
2021-03-08 11:07:40 +13:00
sizing: 6,
2021-02-09 15:21:48 +13:00
relationshipSettings: {
connectedObjectType: "religions",
connectedField: "pairedBelongingCharacter"
}
},
{
id: "pairedAllyRelGroup",
name: "Ally of religious groups/teachings",
type: "manyToManyRelationship",
icon: "fas fa-ankh",
2021-03-08 11:07:40 +13:00
sizing: 6,
2021-02-09 15:21:48 +13:00
relationshipSettings: {
connectedObjectType: "religions",
connectedField: "pairedAllyCharacter"
}
},
{
id: "pairedEnemyRelGroup",
name: "Enemy of religious groups/teachings",
type: "manyToManyRelationship",
icon: "fas fa-ankh",
2021-03-08 11:07:40 +13:00
sizing: 6,
2021-02-09 15:21:48 +13:00
relationshipSettings: {
connectedObjectType: "religions",
connectedField: "pairedEnemyCharacter"
}
},
2021-03-08 11:07:40 +13:00
{
id: "pairedConnectionMagicGroup",
name: "Connected to magical groups",
type: "manyToManyRelationship",
icon: "fas fa-hat-wizard",
sizing: 6,
relationshipSettings: {
connectedObjectType: "magic",
connectedField: "pairedConnectionCharacter"
}
},
2021-02-09 15:21:48 +13:00
{
id: "pairedBelongingMagicGroup",
name: "Member of magical groups",
type: "manyToManyRelationship",
icon: "fas fa-hat-wizard",
2021-03-08 11:07:40 +13:00
sizing: 6,
2021-02-09 15:21:48 +13:00
relationshipSettings: {
connectedObjectType: "magic",
connectedField: "pairedBelongingCharacter"
}
},
{
id: "pairedAllyMagicGroup",
name: "Ally of magical groups",
type: "manyToManyRelationship",
icon: "fas fa-hat-wizard",
2021-03-08 11:07:40 +13:00
sizing: 6,
2021-02-09 15:21:48 +13:00
relationshipSettings: {
connectedObjectType: "magic",
connectedField: "pairedAllyCharacter"
}
},
{
id: "pairedEnemyMagicGroup",
name: "Enemy of magical groups",
type: "manyToManyRelationship",
icon: "fas fa-hat-wizard",
2021-03-08 11:07:40 +13:00
sizing: 6,
2021-02-09 15:21:48 +13:00
relationshipSettings: {
connectedObjectType: "magic",
connectedField: "pairedEnemyCharacter"
}
},
2021-03-08 11:07:40 +13:00
{
id: "pairedConnectionTechGroup",
name: "Connected to scientifical/technological groups",
type: "manyToManyRelationship",
icon: "fas fa-wrench",
sizing: 6,
relationshipSettings: {
connectedObjectType: "tech",
connectedField: "pairedConnectionCharacter"
}
},
2021-02-09 15:21:48 +13:00
{
id: "pairedBelongingTechGroup",
name: "Member of scientifical/technological groups",
type: "manyToManyRelationship",
icon: "fas fa-wrench",
2021-03-08 11:07:40 +13:00
sizing: 6,
2021-02-09 15:21:48 +13:00
relationshipSettings: {
connectedObjectType: "tech",
connectedField: "pairedBelongingCharacter"
}
},
{
id: "pairedAllyTechGroup",
name: "Ally of scientifical/technological groups",
type: "manyToManyRelationship",
icon: "fas fa-wrench",
2021-03-08 11:07:40 +13:00
sizing: 6,
2021-02-09 15:21:48 +13:00
relationshipSettings: {
connectedObjectType: "tech",
connectedField: "pairedAllyCharacter"
}
},
{
id: "pairedEnemyTechGroup",
name: "Enemy of scientifical/technological groups",
type: "manyToManyRelationship",
icon: "fas fa-wrench",
2021-03-08 11:07:40 +13:00
sizing: 6,
2021-02-09 15:21:48 +13:00
relationshipSettings: {
connectedObjectType: "tech",
connectedField: "pairedEnemyCharacter"
}
},
{
id: "breakOther",
name: "Other details",
type: "break",
2021-01-31 02:43:13 +13:00
sizing: 12
2021-02-09 15:21:48 +13:00
},
{
id: "pairedEvent",
name: "Took part in events",
type: "manyToManyRelationship",
icon: "mdi-calendar-text",
sizing: 6,
relationshipSettings: {
connectedObjectType: "events",
connectedField: "pairedCharacter"
}
},
{
id: "pairedConnectedPlaces",
name: "Connected to locations",
type: "manyToManyRelationship",
icon: "mdi-map-marker-radius",
sizing: 6,
relationshipSettings: {
connectedObjectType: "locations",
connectedField: "pairedConnectedCharacter"
}
},
{
id: "pairedConnectedMyths",
2021-03-08 11:07:40 +13:00
name: "Connected to myths. legends and stories",
2021-02-09 15:21:48 +13:00
type: "manyToManyRelationship",
icon: "fas fa-journal-whills",
sizing: 6,
relationshipSettings: {
connectedObjectType: "myths",
connectedField: "pairedConnectedCharacter"
}
},
{
id: "pairedConnectedItems",
name: "Connected legendary items/artifacts",
type: "manyToManyRelationship",
icon: "mdi-sword-cross",
sizing: 6,
relationshipSettings: {
connectedObjectType: "items",
connectedField: "pairedConnectedCharacter"
}
2021-01-31 02:43:13 +13:00
}
]
}