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

1843 lines
44 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: "breakDocumentSettings",
name: "Document settings",
2021-02-09 15:21:48 +13:00
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: "parentDoc",
name: "Belongs under",
type: "singleToNoneRelationship",
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,
relationshipSettings: {
connectedObjectType: "characters"
}
},
2021-02-21 01:06:21 +13:00
{
id: "documentColor",
name: "Text color",
2021-02-21 01:06:21 +13:00
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: "documentBackgroundColor",
name: "Background color",
type: "colorPicker",
icon: "mdi-format-color-fill",
tooltip:
`This field allows for custom-coloring your document to any available HEX or RBG color.
<br>The selected color will show as a background both in the hierarchical tree on the left and in the top tabs.
`,
sizing: 2
},
{
id: "finishedSwitch",
name: "Is finished",
type: "switch",
icon: "mdi-check-bold",
tooltip:
`This setting allows for setting the current document to finished document mode.
<br>
A document with finished document mode toggled on will not show any un-filled fields in view mode and will function as if "Hide empty fields" was turned on in the settings.
`,
sizing: 2
2021-02-21 01:06:21 +13:00
},
{
id: "minorSwitch",
name: "Is a minor document",
type: "switch",
icon: "mdi-magnify-minus-outline",
tooltip:
`This setting allows for setting the current document to minor document mode.
<br>
A document with minor document mode toggled on will not show in any other relationship searches.<br>
The idea behind this setting is to allow for creation of documents that will not clutter the search, but could be theoretically relevant in some very specific cases to the story (eg: distant relatives of a character).
`,
sizing: 3
},
{
id: "deadSwitch",
name: "Is Dead/Gone/Destroyed",
type: "switch",
icon: "mdi-skull-crossbones",
tooltip:
2021-04-18 02:43:13 +12:00
`This setting allows for setting the current document to dead/gone/destroyed mode.
<br>
A document with dead/gone/destroyed mode toggled on will have a crossed-over text modifier applied to it - showing that it is no longer a part of the current timeline.
`,
sizing: 3
},
2021-02-21 01:06:21 +13:00
{
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".
`,
sizing: 3
},
{
id: "order",
name: "Order number",
type: "number",
icon: "mdi-file-tree",
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: 3
},
{
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>
2021-03-18 10:26:08 +13:00
Example: A tag called "Player Party" will be considered the same tag as "player party", "PlAyER PaRtY" or anything similar.
`,
sizing: 12
2021-01-31 02:43:13 +13:00
},
{
id: "otherNames",
name: "Other Names & Epithets",
type: "list",
icon: "mdi-book-plus",
sizing: 12
},
{
id: "categoryDescription",
name: "Category description",
type: "wysiwyg",
icon: "mdi-folder-edit-outline",
sizing: 12
},
{
id: "breakBasic",
name: "Basic information",
type: "break",
sizing: 12
},
2021-02-21 01:06:21 +13:00
{
id: "titles",
name: "Titles",
type: "list",
icon: "mdi-crown",
sizing: 12
},
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: "statsList",
name: "Stats/Attributes",
type: "list",
icon: "mdi-sword-cross",
sizing: 12,
predefinedListExtras: {
reverse: true,
affix: "Stat/Attribute",
extraSelectValueList: [
{
title: "Dungeons & Dragons (5th edition)",
values: [
"Strength",
"Dexterity",
"Constitution",
"Intelligence",
"Wisdom",
"Charisma"
]
},
{
title: "Dungeons & Dragons - Expanded (5th edition)",
values: [
"Hit points",
"Maximum hit points",
"Temporary points",
"Armor class",
"Innitiative",
"Piety",
"Renown",
"Proficiency bonus"
]
},
{
title: "Dungeons & Dragons - Travel speeds (5th edition)",
values: [
"Movement speed",
"Fly speed",
"Swim speed",
"Climb speed"
]
},
{
title: "Dungeons & Dragons - Saving throws (5th edition)",
values: [
"Strength (saving)",
"Dexterity (saving)",
"Constitution (saving)",
"Intelligence (saving)",
"Wisdom (saving)",
"Charisma (saving)"
]
},
{
title: "Mass Effect (D20, 5e)",
values: [
"Strenght",
"Dexterity",
"Constitution",
"Intelligence ",
"Wisdom",
"Charisma",
"Defense (total)",
"Defense (size) ",
"Defense (cover) ",
"Shield/Shields ",
"Plating",
"Reduction ",
"Size",
"Age ",
"Level/Class Level ",
"Paragon ",
"Renegade ",
"Power",
"Biotics",
"Biotic Points ",
"Tech Points ",
"Attack (bab/base Attack) ",
"Rank ",
"Ranks ",
"Modifier",
"Mod ",
"Ability Modifier",
"Misc Modifier ",
"Bonus ",
"Total Bonus",
"Attack",
"Attack Bonus ",
"Action ",
"Range",
"Ammunition",
"Damage ",
"Critical ",
"Recoil",
"Armor ",
"Armor Special Qualities ",
"Head ",
"Shoulders",
"Arms",
"Chest ",
"Legs ",
"Others ",
"Cost",
"Thermal Clips ",
"Heat",
"Medi-Gel",
"Grenades",
"Repair Kits",
"Dc",
"Maintenance ",
"Cooldown",
"Activation",
"Load/Carry Capaccity (light) ",
"Load/Carry Capaccity (medium) ",
"Load/Carry Capaccity (heavy) ",
"Amount ",
"Credits"
]
},
{
title: "Vampire: Masquerade (5th edition, World of Darkness)",
values: [
"Strength",
"Dexterity",
"Stamina",
"Charisma",
"Manipulation",
"Composure",
"Intelligence",
"Wits",
"Resolve",
"Health",
"Willpower",
"Humanity"
]
},
{
title: "Paranoia (Red Clearance)",
values: [
"Violence",
"Brains",
"Chutzpah",
"Mechanics",
"Athletics",
"Guns",
"Melee",
"Throw",
"Science",
"Psychology",
"Bureaucracy",
"Alpha Complex",
"Bluff",
"Charm",
"Intimdate",
"Stealth",
"Operate",
"Engineer",
"Program",
"Demolitions"
]
},
{
title: "Shadowrun (6th edition)",
values: [
"Body",
"Agility",
"Reaction",
"Willpower",
"Intuition",
"Edge",
"Essence",
"Magic/Resonance",
"Initiative (matrix)",
"Initiative (astral)",
"Composure",
"Judge",
"Intentions",
"Memory",
"Lift/Carry",
"Movement",
"Dam",
"Damage",
"Acc",
"Accuracy",
"Ap",
"Action",
"Points",
"Rc",
"Ammo",
"Rating",
"Rtg",
"Nuyen",
"Funds",
"Currency"
]
},
{
title: "Fading Suns",
values: [
"Body",
"Strength",
"Dexterity",
"Endurance",
"Mind",
"Wits",
"Perception",
"Tech",
"Spirit",
"Vitality",
"Wyrd",
"Charm",
"Dodge",
"Fight",
"Impress",
"Melee",
"Observe",
"Shoot",
"Sneak",
"Vigor"
]
},
{
title: "Cyberpunk (RED)",
values: [
"Intelligence",
"Willpower",
"Cool",
"Empathy",
"Technique",
"Reflexes",
"Luck",
"Body",
"Dexterity",
"Movement"
]
},
{
title: "Mutant: Year Zero",
values: [
"Strength",
"Agility",
"Wits",
"Empathy",
"Damage",
"Fatigue",
"Confusion",
"Doubt"
]
},
{
title: "GURPS (3rd & 4th edition)",
values: [
"Strength",
"Agility",
"Wits",
"Empathy",
"Damage",
"Fatigue",
"Confusion",
"Doubt"
]
},
{
title: "7th Sea (2nd edition)",
values: [
"Brawn",
"Finesse",
"Resolve",
"Wits",
"Panache"
]
},
{
title: "7th Sea - Villain (2nd edition)",
values: [
"Strength",
"Influence"
]
},
{
title: "Apocalypse World (2nd edition, Powered by the Apocalypse)",
values: [
"Cool",
"Hard",
"Hot",
"Sharp",
"Weird",
"HX"
]
},
{
title: "Dresden Files RPG",
values: [
"Alertness",
"Athletics",
"Burglary",
"Contacts",
"Conviction",
"Craftsmanship",
"Deceit",
"Discipline",
"Driving",
"Empathy",
"Endurance",
"Fists",
"Guns",
"Intimidation",
"Investigation",
"Lore",
"Might",
"Performance",
"Presence",
"Rapport",
"Resources",
"Scholarship",
"Stealth",
"Survival",
"Weapons"
]
},
{
title: "Traveller (2nd edition)",
values: [
"Strength",
"Dexterity",
"Endurace",
"Intelligence",
"Education",
"Social",
"Standing"
]
},
{
title: "Cypher System",
values: [
"Intellect",
"Might",
"Speed"
]
},
{
title: "Blades in the Dark",
values: [
"Attune",
"Command",
"Consort",
"Finesse",
"Hunt",
"Prowl",
"Skirmish",
"Study",
"Survey",
"Sway",
"Tinker",
"Wreck",
"Insight",
"Prowess",
"Tesolve"
]
},
"Absorption",
"Alertness",
"Attack",
"Avoidance",
"Awareness",
"Block",
"Brawn",
"Cautiousness",
"Chance",
"Damage",
"Defense",
"Deftness",
"Dodge",
"Ego",
"Endurance",
"Energy",
"Evasion",
"Fate",
"Fatigue",
"Finesse",
"Fortitude",
"Honor",
"Hit Points (HP)",
"Immunity",
"Level",
"Magic",
"Mana",
"Mana Points (MP)",
"Might",
"Mind",
"Morale",
"Parry",
"Personality",
"Precision",
"Presence",
"Psyche",
"Quickness",
"Rank",
"Rate",
"Recovery",
"Reduction",
"Reflexes",
"Resistence",
"Sanity",
"Sense",
"Soul",
"Speed",
"Spellpower",
"Spirit",
"Stamina",
"Swiftness",
"Tier",
"Vitality",
"Willpower",
"Wits"
]
}
},
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: "Species/Races/Flora/Fauna",
2021-02-09 15:21:48 +13:00
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: [
/*
2021-02-09 15:21:48 +13:00
"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" */
2021-02-09 15:21:48 +13:00
]
},
{
id: "description",
name: "Description & History",
type: "wysiwyg",
sizing: 12
},
{
id: "breakSkills",
name: "Skills & Other features",
2021-02-09 15:21:48 +13:00
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",
2021-04-18 02:43:13 +12:00
"Arrogant",
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",
"Boisterous",
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",
"Cerebral",
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",
"Eccentric",
2021-02-21 01:06:21 +13:00
"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",
"Evil",
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",
"Forceful",
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",
"Heroic",
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-05-01 02:27:23 +12:00
"Mischievous",
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",
"Old-fashioned",
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",
"Purposeful",
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",
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",
2021-04-18 02:43:13 +12:00
"Stolid",
2021-02-21 01:06:21 +13:00
"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",
2021-02-09 15:21:48 +13:00
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",
2021-04-18 12:52:16 +12:00
sizing: 12,
2021-01-31 02:43:13 +13:00
predefinedListExtras: {
affix: "Level",
extraSelectValueList: [
"Trainee",
"Apprentice",
2021-02-09 15:21:48 +13:00
"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-04-18 12:52:16 +12:00
sizing: 4,
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",
2021-02-09 15:21:48 +13:00
type: "manyToManyRelationship",
icon: "fas fa-hat-wizard",
2021-04-18 12:52:16 +12:00
sizing: 4,
2021-01-31 02:43:13 +13:00
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",
name: "Known Technologies/Sciences",
2021-02-09 15:21:48 +13:00
type: "manyToManyRelationship",
icon: "fas fa-wrench",
2021-04-18 12:52:16 +12:00
sizing: 4,
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 the Character",
2021-02-09 15:21:48 +13:00
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 the Character",
2021-02-09 15:21:48 +13:00
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 the Character",
2021-02-09 15:21:48 +13:00
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 & Other connections",
2021-02-09 15:21:48 +13:00
type: "break",
sizing: 12
},
2021-03-08 11:07:40 +13:00
{
id: "pairedConnectionPolGroup",
name: "Connected to Ideologies/Political groups",
2021-03-08 11:07:40 +13:00
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 Ideologies/Political groups",
2021-02-09 15:21:48 +13:00
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 Ideologies/Political groups",
2021-02-09 15:21:48 +13:00
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 Ideologies/Political groups",
2021-02-09 15:21:48 +13:00
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"
}
},
{
id: "pairedConnectionOtherGroups",
name: "Connected to Organizations/Other groups",
type: "manyToManyRelationship",
icon: "mdi-account-group",
sizing: 6,
relationshipSettings: {
connectedObjectType: "guilds",
connectedField: "pairedConnectionCharacter"
}
},
{
id: "pairedBelongingOtherGroups",
name: "Member of Organizations/Other groups",
type: "manyToManyRelationship",
icon: "mdi-account-group",
sizing: 6,
relationshipSettings: {
connectedObjectType: "guilds",
connectedField: "pairedBelongingCharacter"
}
},
{
id: "pairedAllyOtherGroups",
name: "Ally of Organizations/Other groups",
type: "manyToManyRelationship",
icon: "mdi-account-group",
sizing: 6,
relationshipSettings: {
connectedObjectType: "guilds",
connectedField: "pairedAllyCharacter"
}
},
{
id: "pairedEnemyOtherGroups",
name: "Enemy of Organizations/Other groups",
type: "manyToManyRelationship",
icon: "mdi-account-group",
sizing: 6,
relationshipSettings: {
connectedObjectType: "guilds",
connectedField: "pairedEnemyCharacter"
}
},
2021-03-08 11:07:40 +13:00
{
id: "pairedConnectionRelGroup",
name: "Connected to Teachings/Religious groups",
2021-03-08 11:07:40 +13:00
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 Teachings/Religious groups",
2021-02-09 15:21:48 +13:00
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 Teachings/Religious groups",
2021-02-09 15:21:48 +13:00
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 Teachings/Religious groups",
2021-02-09 15:21:48 +13:00
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",
2021-03-08 11:07:40 +13:00
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",
2021-02-09 15:21:48 +13:00
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",
2021-02-09 15:21:48 +13:00
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",
2021-02-09 15:21:48 +13:00
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 Sciences/Technological groups",
2021-03-08 11:07:40 +13:00
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 Sciences/Technological groups",
2021-02-09 15:21:48 +13:00
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 Sciences/Technological groups",
2021-02-09 15:21:48 +13:00
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 Sciences/Technological groups",
2021-02-09 15:21:48 +13:00
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",
2021-02-09 15:21:48 +13:00
type: "manyToManyRelationship",
icon: "mdi-calendar-text",
sizing: 6,
relationshipSettings: {
connectedObjectType: "events",
connectedField: "pairedCharacter"
}
},
{
id: "pairedConnectedPlaces",
name: "Connected to Locations",
2021-02-09 15:21:48 +13:00
type: "manyToManyRelationship",
icon: "mdi-map-marker-radius",
sizing: 6,
relationshipSettings: {
connectedObjectType: "locations",
connectedField: "pairedConnectedCharacter"
}
},
{
id: "pairedConnectedMyths",
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 to Items",
2021-02-09 15:21:48 +13:00
type: "manyToManyRelationship",
icon: "mdi-sword-cross",
sizing: 6,
relationshipSettings: {
connectedObjectType: "items",
connectedField: "pairedConnectedCharacter"
}
},
{
id: "breakNotes",
name: "Notes",
type: "break",
sizing: 12
},
{
id: "pairedConnectedNotes",
name: "Connected to Lore notes/Other notes",
type: "manyToManyRelationship",
icon: "mdi-script-text-outline",
sizing: 12,
relationshipSettings: {
connectedObjectType: "loreNotes",
connectedField: "pairedConnectedCharacter"
}
2021-01-31 02:43:13 +13:00
}
2021-01-31 02:43:13 +13:00
]
}