fantasia-archive/src/scripts/databaseManager/blueprints/conditions.ts
2021-06-13 18:15:40 +02:00

656 lines
18 KiB
TypeScript

import { RPGSystemsStats } from "./../extraFieldLists/RPGSystemsStats"
import { I_Blueprint } from "../../../interfaces/I_Blueprint"
export const conditionsBlueprint: I_Blueprint = {
_id: "conditions",
order: 150,
namePlural: "Afflictions/Boons/Conditions",
nameSingular: "Affliction/Boon/Condition",
icon: "mdi-virus",
category: "Details",
extraFields: [
{
id: "breakDocumentSettings",
name: "Document settings",
type: "break",
sizing: 12
},
{
id: "name",
name: "Name",
type: "text",
icon: "mdi-virus",
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: "conditions"
}
},
{
id: "documentColor",
name: "Text 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
},
{
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
},
{
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:
`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
},
{
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:
`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 considered the same tag as "player party", "PlAyER PaRtY" or anything similar.
`,
sizing: 12
},
{
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
},
{
id: "features",
name: "Prominent features",
type: "list",
icon: "mdi-guy-fawkes-mask",
sizing: 6,
predefinedListExtras: {
affix: "Note",
extraSelectValueList: [
]
}
},
{
id: "duration",
name: "Duration",
type: "text",
icon: "mdi-timer-sand",
sizing: 3
},
{
id: "conditionType",
name: "Affliction/Boon/Condition type",
type: "multiSelect",
icon: "mdi-auto-fix",
sizing: 3,
predefinedSelectValues: [
"Affliction",
"Antidote",
"Boon",
"Charm",
"Cure",
"Curse",
"Disease",
"Gift/Blessing",
"Glamour",
"Handicap",
"Inborn defect",
"Medicine",
"Physical condition",
"Poison ",
"Racial trait",
"Remedy",
"Virus",
"Other"
]
},
{
id: "meansOfAttaining",
name: "Ways of attaining",
type: "list",
icon: "fas fa-disease",
sizing: 6
},
{
id: "meansOfRemoving",
name: "Ways of removing",
type: "list",
icon: "fas fa-heart",
sizing: 6
},
{
id: "pairedConnectedConditionsPositive",
name: "Related Boons",
type: "manyToManyRelationship",
icon: "mdi-virus",
sizing: 4,
relationshipSettings: {
connectedObjectType: "conditions",
connectedField: "pairedConnectedConditionsPositive"
}
},
{
id: "pairedConnectedConditionsNegative",
name: "Related Afflictions",
type: "manyToManyRelationship",
icon: "mdi-virus",
sizing: 4,
relationshipSettings: {
connectedObjectType: "conditions",
connectedField: "pairedConnectedConditionsNegative"
}
},
{
id: "pairedConnectedConditionsOther",
name: "Related Other conditions",
type: "manyToManyRelationship",
icon: "mdi-virus",
sizing: 4,
relationshipSettings: {
connectedObjectType: "conditions",
connectedField: "pairedConnectedConditionsOther"
}
},
{
id: "statsListRequired",
name: "Stats/Attributes modifiers",
type: "list",
icon: "mdi-sword",
sizing: 12,
predefinedListExtras: {
reverse: true,
affix: "Stat/Attribute",
extraSelectValueList: RPGSystemsStats
}
},
{
id: "description",
name: "Description & History",
type: "wysiwyg",
icon: "mdi-book-open-page-variant-outline",
sizing: 12
},
{
id: "traditions",
name: "Traditions & customs connected to the item",
type: "wysiwyg",
sizing: 12
},
{
id: "breakNotes",
name: "Connections - Story/Lore",
type: "break",
sizing: 12
},
{
id: "pairedConnectedNotes",
name: "Connected to Lore notes/Other notes",
type: "manyToManyRelationship",
icon: "mdi-script-text-outline",
sizing: 6,
relationshipSettings: {
connectedObjectType: "loreNotes",
connectedField: "pairedConnectedConditions"
}
},
{
id: "pairedMyths",
name: "Connected to Myths/Legends/Stories",
type: "manyToManyRelationship",
icon: "fas fa-journal-whills",
sizing: 6,
relationshipSettings: {
connectedObjectType: "myths",
connectedField: "pairedConditions"
}
},
{
id: "breakWorld",
name: "Connections - World",
type: "break",
sizing: 12
},
{
id: "pairedCharactersPositive",
name: "Affecting Characters positively",
type: "manyToManyRelationship",
icon: "mdi-account",
sizing: 6,
relationshipSettings: {
connectedObjectType: "characters",
connectedField: "pairedConditionsPositive"
}
},
{
id: "pairedCharactersNegative",
name: "Affecting Characters negatively",
type: "manyToManyRelationship",
icon: "mdi-account",
sizing: 6,
relationshipSettings: {
connectedObjectType: "characters",
connectedField: "pairedConditionsNegative"
}
},
{
id: "pairedCharactersOther",
name: "Affecting Characters in other ways",
type: "manyToManyRelationship",
icon: "mdi-account",
sizing: 6,
relationshipSettings: {
connectedObjectType: "characters",
connectedField: "pairedConditionsOther"
}
},
{
id: "pairedCharactersConnected",
name: "Connected to Characters",
type: "manyToManyRelationship",
icon: "mdi-account",
sizing: 6,
relationshipSettings: {
connectedObjectType: "characters",
connectedField: "pairedConditionsConnected"
}
},
{
id: "pairedLocationsPositive",
name: "Affecting Locations/Geography positively",
type: "manyToManyRelationship",
icon: "mdi-map-marker-radius",
sizing: 4,
relationshipSettings: {
connectedObjectType: "locations",
connectedField: "pairedConditionsPositive"
}
},
{
id: "pairedLocationsNegative",
name: "Affecting Locations/Geography negatively",
type: "manyToManyRelationship",
icon: "mdi-map-marker-radius",
sizing: 4,
relationshipSettings: {
connectedObjectType: "locations",
connectedField: "pairedConditionsNegative"
}
},
{
id: "pairedLocationsOther",
name: "Affecting Locations/Geography in other ways",
type: "manyToManyRelationship",
icon: "mdi-map-marker-radius",
sizing: 4,
relationshipSettings: {
connectedObjectType: "locations",
connectedField: "pairedConditionsOther"
}
},
{
id: "pairedEventsPositive",
name: "Affecting Events positively",
type: "manyToManyRelationship",
icon: "mdi-calendar-text",
sizing: 4,
relationshipSettings: {
connectedObjectType: "events",
connectedField: "pairedConditionsPositive"
}
},
{
id: "pairedEventsNegative",
name: "Affecting Events negatively",
type: "manyToManyRelationship",
icon: "mdi-calendar-text",
sizing: 4,
relationshipSettings: {
connectedObjectType: "events",
connectedField: "pairedConditionsNegative"
}
},
{
id: "pairedEventsOther",
name: "Affecting Events in other ways",
type: "manyToManyRelationship",
icon: "mdi-calendar-text",
sizing: 4,
relationshipSettings: {
connectedObjectType: "events",
connectedField: "pairedConditionsOther"
}
},
{
id: "pairedRacesPositive",
name: "Affecting Species/Races/Flora/Fauna positively",
type: "manyToManyRelationship",
icon: "fas fa-dragon",
sizing: 4,
relationshipSettings: {
connectedObjectType: "races",
connectedField: "pairedConditionsPositive"
}
},
{
id: "pairedRacesNegative",
name: "Affecting Species/Races/Flora/Fauna negatively",
type: "manyToManyRelationship",
icon: "fas fa-dragon",
sizing: 4,
relationshipSettings: {
connectedObjectType: "races",
connectedField: "pairedConditionsNegative"
}
},
{
id: "pairedRacesOther",
name: "Affecting Species/Races/Flora/Fauna in other ways",
type: "manyToManyRelationship",
icon: "fas fa-dragon",
sizing: 4,
relationshipSettings: {
connectedObjectType: "races",
connectedField: "pairedConditionsOther"
}
},
{
id: "breakPolitics",
name: "Connections - Groups/Teachings",
type: "break",
sizing: 12
},
{
id: "pairedRacesPoliticalGroups",
name: "Connected to Ideologies/Political groups",
type: "manyToManyRelationship",
icon: "mdi-bank-outline",
sizing: 4,
relationshipSettings: {
connectedObjectType: "politicalGroups",
connectedField: "pairedConditions"
}
},
{
id: "pairedReligiousGroups",
name: "Connected to Teachings/Religious groups",
type: "manyToManyRelationship",
icon: "fas fa-ankh",
sizing: 4,
relationshipSettings: {
connectedObjectType: "religions",
connectedField: "pairedConditions"
}
},
{
id: "pairedOtherGroups",
name: "Connected to Organizations/Other groups",
type: "manyToManyRelationship",
icon: "mdi-account-group",
sizing: 4,
relationshipSettings: {
connectedObjectType: "guilds",
connectedField: "pairedConditions"
}
},
{
id: "pairedMagicGroups",
name: "Connected to Schools of Magic/Magical groups",
type: "manyToManyRelationship",
icon: "fas fa-hat-wizard",
sizing: 6,
relationshipSettings: {
connectedObjectType: "magic",
connectedField: "pairedConditions"
}
},
{
id: "pairedTechGroups",
name: "Connected to Sciences/Technological groups",
type: "manyToManyRelationship",
icon: "fas fa-wrench",
sizing: 6,
relationshipSettings: {
connectedObjectType: "tech",
connectedField: "pairedConditions"
}
},
{
id: "breakDetails",
name: "Connections - Details",
type: "break",
sizing: 12
},
{
id: "pairedSkillsPositive",
name: "Caused by positive Skills/Spells/Other",
type: "manyToManyRelationship",
icon: "mdi-sword-cross",
sizing: 4,
relationshipSettings: {
connectedObjectType: "skills",
connectedField: "pairedConditionsPositive"
}
},
{
id: "pairedSkillsNegative",
name: "Caused by negative Skills/Spells/Other",
type: "manyToManyRelationship",
icon: "mdi-sword-cross",
sizing: 4,
relationshipSettings: {
connectedObjectType: "skills",
connectedField: "pairedConditionsNegative"
}
},
{
id: "pairedSkillsOther",
name: "Caused by neutral/other Skills/Spells/Other",
type: "manyToManyRelationship",
icon: "mdi-sword-cross",
sizing: 4,
relationshipSettings: {
connectedObjectType: "skills",
connectedField: "pairedConditionsOther"
}
},
{
id: "pairedItemsPositive",
name: "Boon caused by Items",
type: "manyToManyRelationship",
icon: "mdi-sword",
sizing: 6,
relationshipSettings: {
connectedObjectType: "items",
connectedField: "pairedConditionsPositive"
}
},
{
id: "pairedItemsNegative",
name: "Affliction caused by Items",
type: "manyToManyRelationship",
icon: "mdi-sword",
sizing: 6,
relationshipSettings: {
connectedObjectType: "items",
connectedField: "pairedConditionsNegative"
}
},
{
id: "pairedItemsOther",
name: "Other Condition caused by Items",
type: "manyToManyRelationship",
icon: "mdi-sword",
sizing: 6,
relationshipSettings: {
connectedObjectType: "items",
connectedField: "pairedConditionsOther"
}
},
{
id: "pairedItemsAfflicting",
name: "Affecting the following Items",
type: "manyToManyRelationship",
icon: "mdi-sword",
sizing: 6,
relationshipSettings: {
connectedObjectType: "items",
connectedField: "pairedConditionsAfflicting"
}
},
{
id: "pairedResourcesPositive",
name: "Caused by positive Resources/Materials",
type: "manyToManyRelationship",
icon: "mdi-gold",
sizing: 4,
relationshipSettings: {
connectedObjectType: "resources",
connectedField: "pairedConditionsPositive"
}
},
{
id: "pairedResourcesNegative",
name: "Caused by negative Resources/Materials",
type: "manyToManyRelationship",
icon: "mdi-gold",
sizing: 4,
relationshipSettings: {
connectedObjectType: "resources",
connectedField: "pairedConditionsNegative"
}
},
{
id: "pairedResourcesOther",
name: "Caused by neutral/other Resources/Materials",
type: "manyToManyRelationship",
icon: "mdi-gold",
sizing: 4,
relationshipSettings: {
connectedObjectType: "resources",
connectedField: "pairedConditionsOther"
}
},
{
id: "breakDetails",
name: "Secrets/Spoilers/DM notes",
type: "break",
sizing: 12,
isSpoiler: true
},
{
id: "spoilerNotes",
name: "Secrets/Spoilers/DM notes",
type: "wysiwyg",
icon: "fas fa-mask",
sizing: 12,
isSpoiler: true,
tooltip:
`This field will not export by default when using the Export document functionality.
<br>
Instead it needs to be manually included if the user wishes to export it.
`
}
]
}