From 5b42f8f44274f6f9836aec4f6e6029473c9ba0b7 Mon Sep 17 00:00:00 2001 From: frasdoge Date: Tue, 31 Mar 2020 17:09:25 +1000 Subject: [PATCH] Initial commit. --- .gitignore | 119 + CHANGELOG.md | 5 + .../Stats/SkillData/Summon.stats | 4 + .../Stats/Stats/Object.stats | 16 + LICENSE | 21 + .../Localization/English/english.xml | 23 + .../Dialogs/BOO_BookOfOrigins_Dialog.lsj | 3929 +++++++++++++++++ .../RawFiles/Goals/BOO_BookOfOrigins.txt | 164 + .../Story/story_orphanqueries_found.txt | 0 .../meta.lsx | 55 + .../meta.lsx | 13 + .../Stats/Generated/Data/Object.txt | 9 + .../Stats/Generated/Data/Skill_Summon.txt | 0 README.md | 12 + 14 files changed, 4370 insertions(+) create mode 100644 .gitignore create mode 100644 CHANGELOG.md create mode 100644 Editor/Mods/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Stats/SkillData/Summon.stats create mode 100644 Editor/Mods/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Stats/Stats/Object.stats create mode 100644 LICENSE create mode 100644 Mods/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Localization/English/english.xml create mode 100644 Mods/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Story/Dialogs/BOO_BookOfOrigins_Dialog.lsj create mode 100644 Mods/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Story/RawFiles/Goals/BOO_BookOfOrigins.txt create mode 100644 Mods/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Story/story_orphanqueries_found.txt create mode 100644 Mods/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/meta.lsx create mode 100644 Projects/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/meta.lsx create mode 100644 Public/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Stats/Generated/Data/Object.txt create mode 100644 Public/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Stats/Generated/Data/Skill_Summon.txt create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..03a094d --- /dev/null +++ b/.gitignore @@ -0,0 +1,119 @@ +# SourceControlGenerator # +########################## +SourceControlGenerator.json + +# Levels +###################### +Mods/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Levels/* +Mods/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Globals/* +Editor/Mods/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Levels/* + +# Story files # +###################### +*.div +*.raw +story_orphanqueries_ignore.txt +Mods/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Story/Dialogs/Autosave/* +Mods/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Story/Dialogs/Recovered/* + +# Asset Folders # +###################### +Public/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Assets/* +#Public/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/GUI/* + +# Editor files # +###################### +RootTemplateSelectorConfig_* +ResourceSelectorConfig_* +StatsEditorConfig.xml +EffectEditorConfig.xml +DockPanel.config +EditorBrowserMetadata_* +EditorBrowserMetadata.xml +Autosave/* +Recovered/* +ReConHistory.txt +story.debugInfo + +# Assets # +###################### +*.gr2 +*.dae +*.swf +*.bullet +*.dds +*.tga +*.png +*.ttf +*.lsb +*.lsf +*.lsfx +*.lsefx +#*.lsx +*.lsmg + +# Logs # +###################### +*.log +*.ailog +log.txt +errors.txt +dialoglog.txt +personallog.txt + +# Binary Files # +###################### +*.dat +*.data +*.bik +*.bnk +*.bshd +*.cur +*.fnt +*.iggy +*.iggytex +*.osi +*.patch +*.tmpl + +# Dump files # +###################### +*.stackdump +*.dmp + +# Compiled source # +################### +*.com +*.class +*.dll +*.exe +*.o +*.so + +# Packages # +############ +*.7z +*.dmg +*.gz +*.iso +*.jar +*.rar +*.tar +*.zip + +# VS Code # +############ +launch.json + +# OS generated files # +###################### +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db +*.lnk + + diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..310873b --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,5 @@ +Book Of Origins Changelog +======= +# 1.4.1.0 +* Initial Release + diff --git a/Editor/Mods/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Stats/SkillData/Summon.stats b/Editor/Mods/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Stats/SkillData/Summon.stats new file mode 100644 index 0000000..292214d --- /dev/null +++ b/Editor/Mods/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Stats/SkillData/Summon.stats @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Editor/Mods/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Stats/Stats/Object.stats b/Editor/Mods/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Stats/Stats/Object.stats new file mode 100644 index 0000000..8d5eb4d --- /dev/null +++ b/Editor/Mods/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Stats/Stats/Object.stats @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..4b6be33 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 frasdoge + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Mods/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Localization/English/english.xml b/Mods/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Localization/English/english.xml new file mode 100644 index 0000000..e08cd02 --- /dev/null +++ b/Mods/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Localization/English/english.xml @@ -0,0 +1,23 @@ + + You now recall your heritage. You are of... + Hmm. You seem to have forgotten your heritage. + You suddenly remember your origins. You were... + Human descent. <i>(Encourage)</i> + Lizard-kin descent.<i> (Dragon's Blaze)</i> + A master of manipulating time. <i>(Time Warp)</i> + A master of a great wolf. <i>(Summon Soul Wolf)</i> + A bard with the voice of a demon. <i>(Maddening Song)</i> + Someone with the piercing eyes of a demon. <i>(Demonic Stare)</i> + Elven descent. <i>(Flesh Sacrifice)</i> + Strange descent. <i>(Play Dead)</i> + Your origins and heritage have once again solidified in your mind. + A great presence in the storm. <i>(Blinding Squall)</i> + Hmm. You've forgotten your origins actually. + A defender of the weak. <i>(Dome of Protection)</i> + Dwarven descent. <i>(Petrifying Touch)</i> + Someone who could not be shackled. <i>(Break the Shackles)</i> + A tome with mystical properties. Those who read it seem to remember their past quite vividly. + Book of Origins + Read + Summon Soul Wolf + \ No newline at end of file diff --git a/Mods/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Story/Dialogs/BOO_BookOfOrigins_Dialog.lsj b/Mods/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Story/Dialogs/BOO_BookOfOrigins_Dialog.lsj new file mode 100644 index 0000000..467b227 --- /dev/null +++ b/Mods/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Story/Dialogs/BOO_BookOfOrigins_Dialog.lsj @@ -0,0 +1,3929 @@ +{ + "save": { + "header": { + "time": 0, + "version": "2.0.8.2" + }, + "regions": { + "dialog": { + "UUID": { + "type": 22, + "value": "415fbd25-ca7f-43e3-b606-d880acd21f96" + }, + "automated": { + "type": 19, + "value": false + }, + "category": { + "type": 23, + "value": "Generic NPC Dialog" + }, + "nodes": [ + { + "RootNodes": [ + { + "RootNodes": { + "type": 22, + "value": "1c6450cb-256b-463c-b406-259cd58231a4" + } + } + ], + "node": [ + { + "ShowOnce": { + "type": 19, + "value": false + }, + "UUID": { + "type": 22, + "value": "0246ed02-d3e0-4c61-9ffe-341431cd8a63" + }, + "addressedspeaker": { + "type": 4, + "value": -1 + }, + "constructor": { + "type": 22, + "value": "TagAnswer" + }, + "endnode": { + "type": 19, + "value": false + }, + "exclusive": { + "type": 19, + "value": false + }, + "optional": { + "type": 19, + "value": false + }, + "speaker": { + "type": 4, + "value": 0 + }, + "stub": { + "type": 19, + "value": true + }, + "transitionmode": { + "type": 1, + "value": 0 + }, + "waittime": { + "type": 6, + "value": -1.0 + }, + "GameData": [ + { + "CameraTarget": { + "type": 4, + "value": -1 + }, + "CustomMovie": { + "type": 23, + "value": "" + }, + "Emotion": { + "type": 23, + "value": "Default" + }, + "ExtraWaitTime": { + "type": 4, + "value": 0 + }, + "SoundEvent": { + "type": 23, + "value": "" + }, + "AiPersonalities": [ + {} + ], + "MusicInstrumentSounds": [ + {} + ], + "OriginSound": [ + {} + ] + } + ], + "TaggedTexts": [ + { + "TaggedText": [ + { + "HasTagRule": { + "type": 19, + "value": true + }, + "RuleGroup": [ + { + "TagCombineOp": { + "type": 1, + "value": 0 + }, + "Rules": [ + {} + ] + } + ], + "TagTexts": [ + { + "TagText": [ + { + "TagText": { + "type": 28, + "value": "You now recall your heritage. You are of...", + "handle": "h260fdb55g52f3g40cbg8784g82be116bd64c" + }, + "stub": { + "type": 19, + "value": true + } + } + ] + } + ] + } + ] + } + ], + "Tags": [ + {} + ], + "checkflags": [ + {} + ], + "children": [ + { + "child": [ + { + "UUID": { + "type": 22, + "value": "a1732589-41e2-4b62-946b-5caa9b00dc7b" + } + }, + { + "UUID": { + "type": 22, + "value": "3840fef9-1018-4998-804b-64f2a7c48467" + } + }, + { + "UUID": { + "type": 22, + "value": "45635724-e4d1-411f-81dd-16c189f32486" + } + }, + { + "UUID": { + "type": 22, + "value": "d65a5ec2-32db-49be-8483-1539127adaba" + } + }, + { + "UUID": { + "type": 22, + "value": "a1cf135a-d0e4-4659-8e82-8072b4f864db" + } + }, + { + "UUID": { + "type": 22, + "value": "1b983581-922e-446e-883e-c78376d80efa" + } + } + ] + } + ], + "editorData": [ + { + "data": [ + { + "key": { + "type": 22, + "value": "ID" + }, + "val": { + "type": 23, + "value": "N28" + } + }, + { + "key": { + "type": 22, + "value": "NodeContext" + }, + "val": { + "type": 23, + "value": "" + } + }, + { + "key": { + "type": 22, + "value": "collapsed" + }, + "val": { + "type": 23, + "value": "False" + } + }, + { + "key": { + "type": 22, + "value": "logicalname" + }, + "val": { + "type": 23, + "value": "Answer" + } + }, + { + "key": { + "type": 22, + "value": "position" + }, + "val": { + "type": 23, + "value": "655;234" + } + }, + { + "key": { + "type": 22, + "value": "sourcetemplate" + }, + "val": { + "type": 23, + "value": "" + } + } + ] + } + ], + "setflags": [ + {} + ] + }, + { + "ShowOnce": { + "type": 19, + "value": true + }, + "UUID": { + "type": 22, + "value": "1b983581-922e-446e-883e-c78376d80efa" + }, + "addressedspeaker": { + "type": 4, + "value": -1 + }, + "constructor": { + "type": 22, + "value": "TagQuestion" + }, + "endnode": { + "type": 19, + "value": false + }, + "exclusive": { + "type": 19, + "value": false + }, + "optional": { + "type": 19, + "value": false + }, + "speaker": { + "type": 4, + "value": 0 + }, + "stub": { + "type": 19, + "value": true + }, + "transitionmode": { + "type": 1, + "value": 0 + }, + "waittime": { + "type": 6, + "value": -1.0 + }, + "GameData": [ + { + "CameraTarget": { + "type": 4, + "value": -1 + }, + "CustomMovie": { + "type": 23, + "value": "" + }, + "Emotion": { + "type": 23, + "value": "Default" + }, + "ExtraWaitTime": { + "type": 4, + "value": 0 + }, + "SoundEvent": { + "type": 23, + "value": "" + }, + "AiPersonalities": [ + {} + ], + "MusicInstrumentSounds": [ + {} + ], + "OriginSound": [ + {} + ] + } + ], + "TaggedTexts": [ + { + "TaggedText": [ + { + "HasTagRule": { + "type": 19, + "value": true + }, + "RuleGroup": [ + { + "TagCombineOp": { + "type": 1, + "value": 0 + }, + "Rules": [ + {} + ] + } + ], + "TagTexts": [ + { + "TagText": [ + { + "TagText": { + "type": 28, + "value": "Hmm. You seem to have forgotten your heritage.", + "handle": "h46c8c094g4917g44b2ga505g7252c4be5487" + }, + "stub": { + "type": 19, + "value": true + } + } + ] + } + ] + } + ] + } + ], + "Tags": [ + {} + ], + "checkflags": [ + {} + ], + "children": [ + { + "child": [ + { + "UUID": { + "type": 22, + "value": "a9deab1a-3736-4d6e-906a-68c9c8641690" + } + } + ] + } + ], + "editorData": [ + { + "data": [ + { + "key": { + "type": 22, + "value": "ID" + }, + "val": { + "type": 23, + "value": "N29" + } + }, + { + "key": { + "type": 22, + "value": "NodeContext" + }, + "val": { + "type": 23, + "value": "" + } + }, + { + "key": { + "type": 22, + "value": "collapsed" + }, + "val": { + "type": 23, + "value": "False" + } + }, + { + "key": { + "type": 22, + "value": "logicalname" + }, + "val": { + "type": 23, + "value": "Question" + } + }, + { + "key": { + "type": 22, + "value": "position" + }, + "val": { + "type": 23, + "value": "975;891" + } + }, + { + "key": { + "type": 22, + "value": "sourcetemplate" + }, + "val": { + "type": 23, + "value": "" + } + } + ] + } + ], + "setflags": [ + {} + ] + }, + { + "ShowOnce": { + "type": 19, + "value": true + }, + "UUID": { + "type": 22, + "value": "1c6450cb-256b-463c-b406-259cd58231a4" + }, + "addressedspeaker": { + "type": 4, + "value": -1 + }, + "constructor": { + "type": 22, + "value": "TagGreeting" + }, + "endnode": { + "type": 19, + "value": false + }, + "exclusive": { + "type": 19, + "value": false + }, + "optional": { + "type": 19, + "value": false + }, + "speaker": { + "type": 4, + "value": 0 + }, + "stub": { + "type": 19, + "value": true + }, + "transitionmode": { + "type": 1, + "value": 0 + }, + "waittime": { + "type": 6, + "value": -1.0 + }, + "GameData": [ + { + "CameraTarget": { + "type": 4, + "value": -1 + }, + "CustomMovie": { + "type": 23, + "value": "" + }, + "Emotion": { + "type": 23, + "value": "Default" + }, + "ExtraWaitTime": { + "type": 4, + "value": 0 + }, + "SoundEvent": { + "type": 23, + "value": "" + }, + "AiPersonalities": [ + {} + ], + "MusicInstrumentSounds": [ + {} + ], + "OriginSound": [ + {} + ] + } + ], + "TaggedTexts": [ + { + "TaggedText": [ + { + "HasTagRule": { + "type": 19, + "value": true + }, + "RuleGroup": [ + { + "TagCombineOp": { + "type": 1, + "value": 0 + }, + "Rules": [ + {} + ] + } + ], + "TagTexts": [ + { + "TagText": [ + { + "TagText": { + "type": 28, + "value": "You suddenly remember your origins. You were...", + "handle": "h6d6ba4f0gbaecg4dc2g8c0ag296892624e8a" + }, + "stub": { + "type": 19, + "value": true + } + } + ] + } + ] + } + ] + } + ], + "Tags": [ + {} + ], + "checkflags": [ + {} + ], + "children": [ + { + "child": [ + { + "UUID": { + "type": 22, + "value": "d4da1ec2-2db1-4ca7-a811-dddd441e788c" + } + }, + { + "UUID": { + "type": 22, + "value": "86900c80-31f5-49c2-b4c1-62fc83e1ccd6" + } + }, + { + "UUID": { + "type": 22, + "value": "a9f877f7-1f96-4e9c-8e64-de6c4e0febd6" + } + }, + { + "UUID": { + "type": 22, + "value": "6242e1d1-6414-47ee-a850-caf493af6d9b" + } + }, + { + "UUID": { + "type": 22, + "value": "6c2ead02-2db6-4d26-9133-e18f43afc5b0" + } + }, + { + "UUID": { + "type": 22, + "value": "d661b9e6-88d7-4a9e-bf28-4d54b51c4ca2" + } + }, + { + "UUID": { + "type": 22, + "value": "8b64b453-5cf3-4c98-aa89-0ee2b85d9b24" + } + }, + { + "UUID": { + "type": 22, + "value": "b39372fd-7615-4eb8-a666-a8c931f9c5b3" + } + } + ] + } + ], + "editorData": [ + { + "data": [ + { + "key": { + "type": 22, + "value": "ID" + }, + "val": { + "type": 23, + "value": "N1" + } + }, + { + "key": { + "type": 22, + "value": "NodeContext" + }, + "val": { + "type": 23, + "value": "" + } + }, + { + "key": { + "type": 22, + "value": "collapsed" + }, + "val": { + "type": 23, + "value": "False" + } + }, + { + "key": { + "type": 22, + "value": "logicalname" + }, + "val": { + "type": 23, + "value": "Greeting" + } + }, + { + "key": { + "type": 22, + "value": "position" + }, + "val": { + "type": 23, + "value": "15;234" + } + }, + { + "key": { + "type": 22, + "value": "sourcetemplate" + }, + "val": { + "type": 23, + "value": "" + } + } + ] + } + ], + "setflags": [ + {} + ] + }, + { + "ShowOnce": { + "type": 19, + "value": true + }, + "UUID": { + "type": 22, + "value": "3840fef9-1018-4998-804b-64f2a7c48467" + }, + "addressedspeaker": { + "type": 4, + "value": -1 + }, + "constructor": { + "type": 22, + "value": "TagQuestion" + }, + "endnode": { + "type": 19, + "value": false + }, + "exclusive": { + "type": 19, + "value": false + }, + "optional": { + "type": 19, + "value": false + }, + "speaker": { + "type": 4, + "value": 0 + }, + "stub": { + "type": 19, + "value": true + }, + "transitionmode": { + "type": 1, + "value": 0 + }, + "waittime": { + "type": 6, + "value": -1.0 + }, + "GameData": [ + { + "CameraTarget": { + "type": 4, + "value": -1 + }, + "CustomMovie": { + "type": 23, + "value": "" + }, + "Emotion": { + "type": 23, + "value": "Default" + }, + "ExtraWaitTime": { + "type": 4, + "value": 0 + }, + "SoundEvent": { + "type": 23, + "value": "" + }, + "AiPersonalities": [ + {} + ], + "MusicInstrumentSounds": [ + {} + ], + "OriginSound": [ + {} + ] + } + ], + "TaggedTexts": [ + { + "TaggedText": [ + { + "HasTagRule": { + "type": 19, + "value": true + }, + "RuleGroup": [ + { + "TagCombineOp": { + "type": 1, + "value": 0 + }, + "Rules": [ + {} + ] + } + ], + "TagTexts": [ + { + "TagText": [ + { + "TagText": { + "type": 28, + "value": "Human descent. (Encourage)", + "handle": "h2d99979bgab25g414bg9f2cg9cb3cb57d1e4" + }, + "stub": { + "type": 19, + "value": true + } + } + ] + } + ] + } + ] + } + ], + "Tags": [ + {} + ], + "checkflags": [ + {} + ], + "children": [ + { + "child": [ + { + "UUID": { + "type": 22, + "value": "a9deab1a-3736-4d6e-906a-68c9c8641690" + } + } + ] + } + ], + "editorData": [ + { + "data": [ + { + "key": { + "type": 22, + "value": "ID" + }, + "val": { + "type": 23, + "value": "N25" + } + }, + { + "key": { + "type": 22, + "value": "NodeContext" + }, + "val": { + "type": 23, + "value": "" + } + }, + { + "key": { + "type": 22, + "value": "collapsed" + }, + "val": { + "type": 23, + "value": "False" + } + }, + { + "key": { + "type": 22, + "value": "logicalname" + }, + "val": { + "type": 23, + "value": "Question" + } + }, + { + "key": { + "type": 22, + "value": "position" + }, + "val": { + "type": 23, + "value": "975;15" + } + }, + { + "key": { + "type": 22, + "value": "sourcetemplate" + }, + "val": { + "type": 23, + "value": "" + } + } + ] + } + ], + "setflags": [ + { + "flaggroup": [ + { + "type": { + "type": 22, + "value": "Character" + }, + "flag": [ + { + "name": { + "type": 22, + "value": "BOO_BookOfOrigins_Encourage" + }, + "paramval": { + "type": 4, + "value": 0 + }, + "value": { + "type": 19, + "value": true + } + } + ] + } + ] + } + ] + }, + { + "ShowOnce": { + "type": 19, + "value": true + }, + "UUID": { + "type": 22, + "value": "45635724-e4d1-411f-81dd-16c189f32486" + }, + "addressedspeaker": { + "type": 4, + "value": -1 + }, + "constructor": { + "type": 22, + "value": "TagQuestion" + }, + "endnode": { + "type": 19, + "value": false + }, + "exclusive": { + "type": 19, + "value": false + }, + "optional": { + "type": 19, + "value": false + }, + "speaker": { + "type": 4, + "value": 0 + }, + "stub": { + "type": 19, + "value": true + }, + "transitionmode": { + "type": 1, + "value": 0 + }, + "waittime": { + "type": 6, + "value": -1.0 + }, + "GameData": [ + { + "CameraTarget": { + "type": 4, + "value": -1 + }, + "CustomMovie": { + "type": 23, + "value": "" + }, + "Emotion": { + "type": 23, + "value": "Default" + }, + "ExtraWaitTime": { + "type": 4, + "value": 0 + }, + "SoundEvent": { + "type": 23, + "value": "" + }, + "AiPersonalities": [ + {} + ], + "MusicInstrumentSounds": [ + {} + ], + "OriginSound": [ + {} + ] + } + ], + "TaggedTexts": [ + { + "TaggedText": [ + { + "HasTagRule": { + "type": 19, + "value": true + }, + "RuleGroup": [ + { + "TagCombineOp": { + "type": 1, + "value": 0 + }, + "Rules": [ + {} + ] + } + ], + "TagTexts": [ + { + "TagText": [ + { + "TagText": { + "type": 28, + "value": "Lizard-kin descent. (Dragon's Blaze)", + "handle": "hbd76d0bfg5669g4d09g802cgaba0b159e063" + }, + "stub": { + "type": 19, + "value": true + } + } + ] + } + ] + } + ] + } + ], + "Tags": [ + {} + ], + "checkflags": [ + {} + ], + "children": [ + { + "child": [ + { + "UUID": { + "type": 22, + "value": "a9deab1a-3736-4d6e-906a-68c9c8641690" + } + } + ] + } + ], + "editorData": [ + { + "data": [ + { + "key": { + "type": 22, + "value": "ID" + }, + "val": { + "type": 23, + "value": "N21" + } + }, + { + "key": { + "type": 22, + "value": "NodeContext" + }, + "val": { + "type": 23, + "value": "" + } + }, + { + "key": { + "type": 22, + "value": "collapsed" + }, + "val": { + "type": 23, + "value": "False" + } + }, + { + "key": { + "type": 22, + "value": "logicalname" + }, + "val": { + "type": 23, + "value": "Question" + } + }, + { + "key": { + "type": 22, + "value": "position" + }, + "val": { + "type": 23, + "value": "975;234" + } + }, + { + "key": { + "type": 22, + "value": "sourcetemplate" + }, + "val": { + "type": 23, + "value": "" + } + } + ] + } + ], + "setflags": [ + { + "flaggroup": [ + { + "type": { + "type": 22, + "value": "Character" + }, + "flag": [ + { + "name": { + "type": 22, + "value": "BOO_BookOfOrigins_DragonsBlaze" + }, + "paramval": { + "type": 4, + "value": 0 + }, + "value": { + "type": 19, + "value": true + } + } + ] + } + ] + } + ] + }, + { + "ShowOnce": { + "type": 19, + "value": true + }, + "UUID": { + "type": 22, + "value": "6242e1d1-6414-47ee-a850-caf493af6d9b" + }, + "addressedspeaker": { + "type": 4, + "value": -1 + }, + "constructor": { + "type": 22, + "value": "TagQuestion" + }, + "endnode": { + "type": 19, + "value": false + }, + "exclusive": { + "type": 19, + "value": false + }, + "optional": { + "type": 19, + "value": false + }, + "speaker": { + "type": 4, + "value": 0 + }, + "stub": { + "type": 19, + "value": true + }, + "transitionmode": { + "type": 1, + "value": 0 + }, + "waittime": { + "type": 6, + "value": -1.0 + }, + "GameData": [ + { + "CameraTarget": { + "type": 4, + "value": -1 + }, + "CustomMovie": { + "type": 23, + "value": "" + }, + "Emotion": { + "type": 23, + "value": "Default" + }, + "ExtraWaitTime": { + "type": 4, + "value": 0 + }, + "SoundEvent": { + "type": 23, + "value": "" + }, + "AiPersonalities": [ + {} + ], + "MusicInstrumentSounds": [ + {} + ], + "OriginSound": [ + {} + ] + } + ], + "TaggedTexts": [ + { + "TaggedText": [ + { + "HasTagRule": { + "type": 19, + "value": true + }, + "RuleGroup": [ + { + "TagCombineOp": { + "type": 1, + "value": 0 + }, + "Rules": [ + {} + ] + } + ], + "TagTexts": [ + { + "TagText": [ + { + "TagText": { + "type": 28, + "value": "A master of manipulating time. (Time Warp)", + "handle": "hcbf794f0g8b24g4b9eg84ccgec63997e03f0" + }, + "stub": { + "type": 19, + "value": true + } + } + ] + } + ] + } + ] + } + ], + "Tags": [ + {} + ], + "checkflags": [ + {} + ], + "children": [ + { + "child": [ + { + "UUID": { + "type": 22, + "value": "0246ed02-d3e0-4c61-9ffe-341431cd8a63" + } + } + ] + } + ], + "editorData": [ + { + "data": [ + { + "key": { + "type": 22, + "value": "ID" + }, + "val": { + "type": 23, + "value": "N10" + } + }, + { + "key": { + "type": 22, + "value": "NodeContext" + }, + "val": { + "type": 23, + "value": "" + } + }, + { + "key": { + "type": 22, + "value": "collapsed" + }, + "val": { + "type": 23, + "value": "False" + } + }, + { + "key": { + "type": 22, + "value": "logicalname" + }, + "val": { + "type": 23, + "value": "Question" + } + }, + { + "key": { + "type": 22, + "value": "position" + }, + "val": { + "type": 23, + "value": "335;234" + } + }, + { + "key": { + "type": 22, + "value": "sourcetemplate" + }, + "val": { + "type": 23, + "value": "" + } + } + ] + } + ], + "setflags": [ + { + "flaggroup": [ + { + "type": { + "type": 22, + "value": "Character" + }, + "flag": [ + { + "name": { + "type": 22, + "value": "BOO_BookOfOrigins_TimeWarp" + }, + "paramval": { + "type": 4, + "value": 0 + }, + "value": { + "type": 19, + "value": true + } + } + ] + } + ] + } + ] + }, + { + "ShowOnce": { + "type": 19, + "value": true + }, + "UUID": { + "type": 22, + "value": "6c2ead02-2db6-4d26-9133-e18f43afc5b0" + }, + "addressedspeaker": { + "type": 4, + "value": -1 + }, + "constructor": { + "type": 22, + "value": "TagQuestion" + }, + "endnode": { + "type": 19, + "value": false + }, + "exclusive": { + "type": 19, + "value": false + }, + "optional": { + "type": 19, + "value": false + }, + "speaker": { + "type": 4, + "value": 0 + }, + "stub": { + "type": 19, + "value": true + }, + "transitionmode": { + "type": 1, + "value": 0 + }, + "waittime": { + "type": 6, + "value": -1.0 + }, + "GameData": [ + { + "CameraTarget": { + "type": 4, + "value": -1 + }, + "CustomMovie": { + "type": 23, + "value": "" + }, + "Emotion": { + "type": 23, + "value": "Default" + }, + "ExtraWaitTime": { + "type": 4, + "value": 0 + }, + "SoundEvent": { + "type": 23, + "value": "" + }, + "AiPersonalities": [ + {} + ], + "MusicInstrumentSounds": [ + {} + ], + "OriginSound": [ + {} + ] + } + ], + "TaggedTexts": [ + { + "TaggedText": [ + { + "HasTagRule": { + "type": 19, + "value": true + }, + "RuleGroup": [ + { + "TagCombineOp": { + "type": 1, + "value": 0 + }, + "Rules": [ + {} + ] + } + ], + "TagTexts": [ + { + "TagText": [ + { + "TagText": { + "type": 28, + "value": "A master of a great wolf. (Summon Soul Wolf)", + "handle": "hde23477dg6beeg4555ga216g4cec678e35fe" + }, + "stub": { + "type": 19, + "value": true + } + } + ] + } + ] + } + ] + } + ], + "Tags": [ + {} + ], + "checkflags": [ + {} + ], + "children": [ + { + "child": [ + { + "UUID": { + "type": 22, + "value": "0246ed02-d3e0-4c61-9ffe-341431cd8a63" + } + } + ] + } + ], + "editorData": [ + { + "data": [ + { + "key": { + "type": 22, + "value": "ID" + }, + "val": { + "type": 23, + "value": "N14" + } + }, + { + "key": { + "type": 22, + "value": "NodeContext" + }, + "val": { + "type": 23, + "value": "" + } + }, + { + "key": { + "type": 22, + "value": "collapsed" + }, + "val": { + "type": 23, + "value": "False" + } + }, + { + "key": { + "type": 22, + "value": "logicalname" + }, + "val": { + "type": 23, + "value": "Question" + } + }, + { + "key": { + "type": 22, + "value": "position" + }, + "val": { + "type": 23, + "value": "335;453" + } + }, + { + "key": { + "type": 22, + "value": "sourcetemplate" + }, + "val": { + "type": 23, + "value": "" + } + } + ] + } + ], + "setflags": [ + { + "flaggroup": [ + { + "type": { + "type": 22, + "value": "Character" + }, + "flag": [ + { + "name": { + "type": 22, + "value": "BOO_BookOfOrigins_SoulWolf" + }, + "paramval": { + "type": 4, + "value": 0 + }, + "value": { + "type": 19, + "value": true + } + } + ] + } + ] + } + ] + }, + { + "ShowOnce": { + "type": 19, + "value": true + }, + "UUID": { + "type": 22, + "value": "86900c80-31f5-49c2-b4c1-62fc83e1ccd6" + }, + "addressedspeaker": { + "type": 4, + "value": -1 + }, + "constructor": { + "type": 22, + "value": "TagQuestion" + }, + "endnode": { + "type": 19, + "value": false + }, + "exclusive": { + "type": 19, + "value": false + }, + "optional": { + "type": 19, + "value": false + }, + "speaker": { + "type": 4, + "value": 0 + }, + "stub": { + "type": 19, + "value": true + }, + "transitionmode": { + "type": 1, + "value": 0 + }, + "waittime": { + "type": 6, + "value": -1.0 + }, + "GameData": [ + { + "CameraTarget": { + "type": 4, + "value": -1 + }, + "CustomMovie": { + "type": 23, + "value": "" + }, + "Emotion": { + "type": 23, + "value": "Default" + }, + "ExtraWaitTime": { + "type": 4, + "value": 0 + }, + "SoundEvent": { + "type": 23, + "value": "" + }, + "AiPersonalities": [ + {} + ], + "MusicInstrumentSounds": [ + {} + ], + "OriginSound": [ + {} + ] + } + ], + "TaggedTexts": [ + { + "TaggedText": [ + { + "HasTagRule": { + "type": 19, + "value": true + }, + "RuleGroup": [ + { + "TagCombineOp": { + "type": 1, + "value": 0 + }, + "Rules": [ + {} + ] + } + ], + "TagTexts": [ + { + "TagText": [ + { + "TagText": { + "type": 28, + "value": "A bard with the voice of a demon. (Maddening Song)", + "handle": "h6c023c14gac2fg4320gb7c5g2828cd67da55" + }, + "stub": { + "type": 19, + "value": true + } + } + ] + } + ] + } + ] + } + ], + "Tags": [ + {} + ], + "checkflags": [ + {} + ], + "children": [ + { + "child": [ + { + "UUID": { + "type": 22, + "value": "0246ed02-d3e0-4c61-9ffe-341431cd8a63" + } + } + ] + } + ], + "editorData": [ + { + "data": [ + { + "key": { + "type": 22, + "value": "ID" + }, + "val": { + "type": 23, + "value": "N11" + } + }, + { + "key": { + "type": 22, + "value": "NodeContext" + }, + "val": { + "type": 23, + "value": "" + } + }, + { + "key": { + "type": 22, + "value": "collapsed" + }, + "val": { + "type": 23, + "value": "False" + } + }, + { + "key": { + "type": 22, + "value": "logicalname" + }, + "val": { + "type": 23, + "value": "Question" + } + }, + { + "key": { + "type": 22, + "value": "position" + }, + "val": { + "type": 23, + "value": "335;-204" + } + }, + { + "key": { + "type": 22, + "value": "sourcetemplate" + }, + "val": { + "type": 23, + "value": "" + } + } + ] + } + ], + "setflags": [ + { + "flaggroup": [ + { + "type": { + "type": 22, + "value": "Character" + }, + "flag": [ + { + "name": { + "type": 22, + "value": "BOO_BookOfOrigins_MaddeningSong" + }, + "paramval": { + "type": 4, + "value": 0 + }, + "value": { + "type": 19, + "value": true + } + } + ] + } + ] + } + ] + }, + { + "ShowOnce": { + "type": 19, + "value": true + }, + "UUID": { + "type": 22, + "value": "8b64b453-5cf3-4c98-aa89-0ee2b85d9b24" + }, + "addressedspeaker": { + "type": 4, + "value": -1 + }, + "constructor": { + "type": 22, + "value": "TagQuestion" + }, + "endnode": { + "type": 19, + "value": false + }, + "exclusive": { + "type": 19, + "value": false + }, + "optional": { + "type": 19, + "value": false + }, + "speaker": { + "type": 4, + "value": 0 + }, + "stub": { + "type": 19, + "value": true + }, + "transitionmode": { + "type": 1, + "value": 0 + }, + "waittime": { + "type": 6, + "value": -1.0 + }, + "GameData": [ + { + "CameraTarget": { + "type": 4, + "value": -1 + }, + "CustomMovie": { + "type": 23, + "value": "" + }, + "Emotion": { + "type": 23, + "value": "Default" + }, + "ExtraWaitTime": { + "type": 4, + "value": 0 + }, + "SoundEvent": { + "type": 23, + "value": "" + }, + "AiPersonalities": [ + {} + ], + "MusicInstrumentSounds": [ + {} + ], + "OriginSound": [ + {} + ] + } + ], + "TaggedTexts": [ + { + "TaggedText": [ + { + "HasTagRule": { + "type": 19, + "value": true + }, + "RuleGroup": [ + { + "TagCombineOp": { + "type": 1, + "value": 0 + }, + "Rules": [ + {} + ] + } + ], + "TagTexts": [ + { + "TagText": [ + { + "TagText": { + "type": 28, + "value": "Someone with the piercing eyes of a demon. (Demonic Stare)", + "handle": "h6005678cg5e13g40eag8585g0106c9400661" + }, + "stub": { + "type": 19, + "value": true + } + } + ] + } + ] + } + ] + } + ], + "Tags": [ + {} + ], + "checkflags": [ + {} + ], + "children": [ + { + "child": [ + { + "UUID": { + "type": 22, + "value": "0246ed02-d3e0-4c61-9ffe-341431cd8a63" + } + } + ] + } + ], + "editorData": [ + { + "data": [ + { + "key": { + "type": 22, + "value": "ID" + }, + "val": { + "type": 23, + "value": "N13" + } + }, + { + "key": { + "type": 22, + "value": "NodeContext" + }, + "val": { + "type": 23, + "value": "" + } + }, + { + "key": { + "type": 22, + "value": "collapsed" + }, + "val": { + "type": 23, + "value": "False" + } + }, + { + "key": { + "type": 22, + "value": "logicalname" + }, + "val": { + "type": 23, + "value": "Question" + } + }, + { + "key": { + "type": 22, + "value": "position" + }, + "val": { + "type": 23, + "value": "335;891" + } + }, + { + "key": { + "type": 22, + "value": "sourcetemplate" + }, + "val": { + "type": 23, + "value": "" + } + } + ] + } + ], + "setflags": [ + { + "flaggroup": [ + { + "type": { + "type": 22, + "value": "Character" + }, + "flag": [ + { + "name": { + "type": 22, + "value": "BOO_BookOfOrigins_DemonicStare" + }, + "paramval": { + "type": 4, + "value": 0 + }, + "value": { + "type": 19, + "value": true + } + } + ] + } + ] + } + ] + }, + { + "ShowOnce": { + "type": 19, + "value": true + }, + "UUID": { + "type": 22, + "value": "a1732589-41e2-4b62-946b-5caa9b00dc7b" + }, + "addressedspeaker": { + "type": 4, + "value": -1 + }, + "constructor": { + "type": 22, + "value": "TagQuestion" + }, + "endnode": { + "type": 19, + "value": false + }, + "exclusive": { + "type": 19, + "value": false + }, + "optional": { + "type": 19, + "value": false + }, + "speaker": { + "type": 4, + "value": 0 + }, + "stub": { + "type": 19, + "value": true + }, + "transitionmode": { + "type": 1, + "value": 0 + }, + "waittime": { + "type": 6, + "value": -1.0 + }, + "GameData": [ + { + "CameraTarget": { + "type": 4, + "value": -1 + }, + "CustomMovie": { + "type": 23, + "value": "" + }, + "Emotion": { + "type": 23, + "value": "Default" + }, + "ExtraWaitTime": { + "type": 4, + "value": 0 + }, + "SoundEvent": { + "type": 23, + "value": "" + }, + "AiPersonalities": [ + {} + ], + "MusicInstrumentSounds": [ + {} + ], + "OriginSound": [ + {} + ] + } + ], + "TaggedTexts": [ + { + "TaggedText": [ + { + "HasTagRule": { + "type": 19, + "value": true + }, + "RuleGroup": [ + { + "TagCombineOp": { + "type": 1, + "value": 0 + }, + "Rules": [ + {} + ] + } + ], + "TagTexts": [ + { + "TagText": [ + { + "TagText": { + "type": 28, + "value": "Elven descent. (Flesh Sacrifice)", + "handle": "hdd5dd74agb372g4d32g9276gf605c9f4d16d" + }, + "stub": { + "type": 19, + "value": true + } + } + ] + } + ] + } + ] + } + ], + "Tags": [ + {} + ], + "checkflags": [ + {} + ], + "children": [ + { + "child": [ + { + "UUID": { + "type": 22, + "value": "a9deab1a-3736-4d6e-906a-68c9c8641690" + } + } + ] + } + ], + "editorData": [ + { + "data": [ + { + "key": { + "type": 22, + "value": "ID" + }, + "val": { + "type": 23, + "value": "N24" + } + }, + { + "key": { + "type": 22, + "value": "NodeContext" + }, + "val": { + "type": 23, + "value": "" + } + }, + { + "key": { + "type": 22, + "value": "collapsed" + }, + "val": { + "type": 23, + "value": "False" + } + }, + { + "key": { + "type": 22, + "value": "logicalname" + }, + "val": { + "type": 23, + "value": "Question" + } + }, + { + "key": { + "type": 22, + "value": "position" + }, + "val": { + "type": 23, + "value": "975;-204" + } + }, + { + "key": { + "type": 22, + "value": "sourcetemplate" + }, + "val": { + "type": 23, + "value": "" + } + } + ] + } + ], + "setflags": [ + { + "flaggroup": [ + { + "type": { + "type": 22, + "value": "Character" + }, + "flag": [ + { + "name": { + "type": 22, + "value": "BOO_BookOfOrigins_FleshSacrifice" + }, + "paramval": { + "type": 4, + "value": 0 + }, + "value": { + "type": 19, + "value": true + } + } + ] + } + ] + } + ] + }, + { + "ShowOnce": { + "type": 19, + "value": true + }, + "UUID": { + "type": 22, + "value": "a1cf135a-d0e4-4659-8e82-8072b4f864db" + }, + "addressedspeaker": { + "type": 4, + "value": -1 + }, + "constructor": { + "type": 22, + "value": "TagQuestion" + }, + "endnode": { + "type": 19, + "value": false + }, + "exclusive": { + "type": 19, + "value": false + }, + "optional": { + "type": 19, + "value": false + }, + "speaker": { + "type": 4, + "value": 0 + }, + "stub": { + "type": 19, + "value": true + }, + "transitionmode": { + "type": 1, + "value": 0 + }, + "waittime": { + "type": 6, + "value": -1.0 + }, + "GameData": [ + { + "CameraTarget": { + "type": 4, + "value": -1 + }, + "CustomMovie": { + "type": 23, + "value": "" + }, + "Emotion": { + "type": 23, + "value": "Default" + }, + "ExtraWaitTime": { + "type": 4, + "value": 0 + }, + "SoundEvent": { + "type": 23, + "value": "" + }, + "AiPersonalities": [ + {} + ], + "MusicInstrumentSounds": [ + {} + ], + "OriginSound": [ + {} + ] + } + ], + "TaggedTexts": [ + { + "TaggedText": [ + { + "HasTagRule": { + "type": 19, + "value": true + }, + "RuleGroup": [ + { + "TagCombineOp": { + "type": 1, + "value": 0 + }, + "Rules": [ + {} + ] + } + ], + "TagTexts": [ + { + "TagText": [ + { + "TagText": { + "type": 28, + "value": "Strange descent. (Play Dead)", + "handle": "hffe697e4g9b02g45c0g8732gf92489e05976" + }, + "stub": { + "type": 19, + "value": true + } + } + ] + } + ] + } + ] + } + ], + "Tags": [ + {} + ], + "checkflags": [ + {} + ], + "children": [ + { + "child": [ + { + "UUID": { + "type": 22, + "value": "a9deab1a-3736-4d6e-906a-68c9c8641690" + } + } + ] + } + ], + "editorData": [ + { + "data": [ + { + "key": { + "type": 22, + "value": "ID" + }, + "val": { + "type": 23, + "value": "N23" + } + }, + { + "key": { + "type": 22, + "value": "NodeContext" + }, + "val": { + "type": 23, + "value": "" + } + }, + { + "key": { + "type": 22, + "value": "collapsed" + }, + "val": { + "type": 23, + "value": "False" + } + }, + { + "key": { + "type": 22, + "value": "logicalname" + }, + "val": { + "type": 23, + "value": "Question" + } + }, + { + "key": { + "type": 22, + "value": "position" + }, + "val": { + "type": 23, + "value": "975;672" + } + }, + { + "key": { + "type": 22, + "value": "sourcetemplate" + }, + "val": { + "type": 23, + "value": "" + } + } + ] + } + ], + "setflags": [ + { + "flaggroup": [ + { + "type": { + "type": 22, + "value": "Character" + }, + "flag": [ + { + "name": { + "type": 22, + "value": "BOO_BookOfOrigins_PlayDead" + }, + "paramval": { + "type": 4, + "value": 0 + }, + "value": { + "type": 19, + "value": true + } + } + ] + } + ] + } + ] + }, + { + "ShowOnce": { + "type": 19, + "value": false + }, + "UUID": { + "type": 22, + "value": "a9deab1a-3736-4d6e-906a-68c9c8641690" + }, + "addressedspeaker": { + "type": 4, + "value": -1 + }, + "constructor": { + "type": 22, + "value": "TagAnswer" + }, + "endnode": { + "type": 19, + "value": true + }, + "exclusive": { + "type": 19, + "value": false + }, + "optional": { + "type": 19, + "value": false + }, + "speaker": { + "type": 4, + "value": 0 + }, + "stub": { + "type": 19, + "value": true + }, + "transitionmode": { + "type": 1, + "value": 0 + }, + "waittime": { + "type": 6, + "value": -1.0 + }, + "GameData": [ + { + "CameraTarget": { + "type": 4, + "value": -1 + }, + "CustomMovie": { + "type": 23, + "value": "" + }, + "Emotion": { + "type": 23, + "value": "Default" + }, + "ExtraWaitTime": { + "type": 4, + "value": 0 + }, + "SoundEvent": { + "type": 23, + "value": "" + }, + "AiPersonalities": [ + {} + ], + "MusicInstrumentSounds": [ + {} + ], + "OriginSound": [ + {} + ] + } + ], + "TaggedTexts": [ + { + "TaggedText": [ + { + "HasTagRule": { + "type": 19, + "value": true + }, + "RuleGroup": [ + { + "TagCombineOp": { + "type": 1, + "value": 0 + }, + "Rules": [ + {} + ] + } + ], + "TagTexts": [ + { + "TagText": [ + { + "TagText": { + "type": 28, + "value": "Your origins and heritage have once again solidified in your mind.", + "handle": "h5ab71b5cg25c1g4426ga953g91584d64120d" + }, + "stub": { + "type": 19, + "value": true + } + } + ] + } + ] + } + ] + } + ], + "Tags": [ + {} + ], + "checkflags": [ + {} + ], + "children": [ + {} + ], + "editorData": [ + { + "data": [ + { + "key": { + "type": 22, + "value": "ID" + }, + "val": { + "type": 23, + "value": "N27" + } + }, + { + "key": { + "type": 22, + "value": "NodeContext" + }, + "val": { + "type": 23, + "value": "" + } + }, + { + "key": { + "type": 22, + "value": "collapsed" + }, + "val": { + "type": 23, + "value": "False" + } + }, + { + "key": { + "type": 22, + "value": "logicalname" + }, + "val": { + "type": 23, + "value": "Answer" + } + }, + { + "key": { + "type": 22, + "value": "position" + }, + "val": { + "type": 23, + "value": "1295;234" + } + }, + { + "key": { + "type": 22, + "value": "sourcetemplate" + }, + "val": { + "type": 23, + "value": "" + } + } + ] + } + ], + "setflags": [ + {} + ] + }, + { + "ShowOnce": { + "type": 19, + "value": true + }, + "UUID": { + "type": 22, + "value": "a9f877f7-1f96-4e9c-8e64-de6c4e0febd6" + }, + "addressedspeaker": { + "type": 4, + "value": -1 + }, + "constructor": { + "type": 22, + "value": "TagQuestion" + }, + "endnode": { + "type": 19, + "value": false + }, + "exclusive": { + "type": 19, + "value": false + }, + "optional": { + "type": 19, + "value": false + }, + "speaker": { + "type": 4, + "value": 0 + }, + "stub": { + "type": 19, + "value": true + }, + "transitionmode": { + "type": 1, + "value": 0 + }, + "waittime": { + "type": 6, + "value": -1.0 + }, + "GameData": [ + { + "CameraTarget": { + "type": 4, + "value": -1 + }, + "CustomMovie": { + "type": 23, + "value": "" + }, + "Emotion": { + "type": 23, + "value": "Default" + }, + "ExtraWaitTime": { + "type": 4, + "value": 0 + }, + "SoundEvent": { + "type": 23, + "value": "" + }, + "AiPersonalities": [ + {} + ], + "MusicInstrumentSounds": [ + {} + ], + "OriginSound": [ + {} + ] + } + ], + "TaggedTexts": [ + { + "TaggedText": [ + { + "HasTagRule": { + "type": 19, + "value": true + }, + "RuleGroup": [ + { + "TagCombineOp": { + "type": 1, + "value": 0 + }, + "Rules": [ + {} + ] + } + ], + "TagTexts": [ + { + "TagText": [ + { + "TagText": { + "type": 28, + "value": "A great presence in the storm. (Blinding Squall)", + "handle": "h53229adbg0b88g4890g8bdega3050787337b" + }, + "stub": { + "type": 19, + "value": true + } + } + ] + } + ] + } + ] + } + ], + "Tags": [ + {} + ], + "checkflags": [ + {} + ], + "children": [ + { + "child": [ + { + "UUID": { + "type": 22, + "value": "0246ed02-d3e0-4c61-9ffe-341431cd8a63" + } + } + ] + } + ], + "editorData": [ + { + "data": [ + { + "key": { + "type": 22, + "value": "ID" + }, + "val": { + "type": 23, + "value": "N15" + } + }, + { + "key": { + "type": 22, + "value": "NodeContext" + }, + "val": { + "type": 23, + "value": "" + } + }, + { + "key": { + "type": 22, + "value": "collapsed" + }, + "val": { + "type": 23, + "value": "False" + } + }, + { + "key": { + "type": 22, + "value": "logicalname" + }, + "val": { + "type": 23, + "value": "Question" + } + }, + { + "key": { + "type": 22, + "value": "position" + }, + "val": { + "type": 23, + "value": "335;15" + } + }, + { + "key": { + "type": 22, + "value": "sourcetemplate" + }, + "val": { + "type": 23, + "value": "" + } + } + ] + } + ], + "setflags": [ + { + "flaggroup": [ + { + "type": { + "type": 22, + "value": "Character" + }, + "flag": [ + { + "name": { + "type": 22, + "value": "BOO_BookOfOrigins_BlindingSquall" + }, + "paramval": { + "type": 4, + "value": 0 + }, + "value": { + "type": 19, + "value": true + } + } + ] + } + ] + } + ] + }, + { + "ShowOnce": { + "type": 19, + "value": true + }, + "UUID": { + "type": 22, + "value": "b39372fd-7615-4eb8-a666-a8c931f9c5b3" + }, + "addressedspeaker": { + "type": 4, + "value": -1 + }, + "constructor": { + "type": 22, + "value": "TagQuestion" + }, + "endnode": { + "type": 19, + "value": false + }, + "exclusive": { + "type": 19, + "value": false + }, + "optional": { + "type": 19, + "value": false + }, + "speaker": { + "type": 4, + "value": 0 + }, + "stub": { + "type": 19, + "value": true + }, + "transitionmode": { + "type": 1, + "value": 0 + }, + "waittime": { + "type": 6, + "value": -1.0 + }, + "GameData": [ + { + "CameraTarget": { + "type": 4, + "value": -1 + }, + "CustomMovie": { + "type": 23, + "value": "" + }, + "Emotion": { + "type": 23, + "value": "Default" + }, + "ExtraWaitTime": { + "type": 4, + "value": 0 + }, + "SoundEvent": { + "type": 23, + "value": "" + }, + "AiPersonalities": [ + {} + ], + "MusicInstrumentSounds": [ + {} + ], + "OriginSound": [ + {} + ] + } + ], + "TaggedTexts": [ + { + "TaggedText": [ + { + "HasTagRule": { + "type": 19, + "value": true + }, + "RuleGroup": [ + { + "TagCombineOp": { + "type": 1, + "value": 0 + }, + "Rules": [ + {} + ] + } + ], + "TagTexts": [ + { + "TagText": [ + { + "TagText": { + "type": 28, + "value": "Hmm. You've forgotten your origins actually.", + "handle": "h02a2d549ge626g4fc9g8290g20318d145a6c" + }, + "stub": { + "type": 19, + "value": true + } + } + ] + } + ] + } + ] + } + ], + "Tags": [ + {} + ], + "checkflags": [ + {} + ], + "children": [ + { + "child": [ + { + "UUID": { + "type": 22, + "value": "0246ed02-d3e0-4c61-9ffe-341431cd8a63" + } + } + ] + } + ], + "editorData": [ + { + "data": [ + { + "key": { + "type": 22, + "value": "ID" + }, + "val": { + "type": 23, + "value": "N19" + } + }, + { + "key": { + "type": 22, + "value": "NodeContext" + }, + "val": { + "type": 23, + "value": "" + } + }, + { + "key": { + "type": 22, + "value": "collapsed" + }, + "val": { + "type": 23, + "value": "False" + } + }, + { + "key": { + "type": 22, + "value": "logicalname" + }, + "val": { + "type": 23, + "value": "Question" + } + }, + { + "key": { + "type": 22, + "value": "position" + }, + "val": { + "type": 23, + "value": "335;1110" + } + }, + { + "key": { + "type": 22, + "value": "sourcetemplate" + }, + "val": { + "type": 23, + "value": "" + } + } + ] + } + ], + "setflags": [ + {} + ] + }, + { + "ShowOnce": { + "type": 19, + "value": true + }, + "UUID": { + "type": 22, + "value": "d4da1ec2-2db1-4ca7-a811-dddd441e788c" + }, + "addressedspeaker": { + "type": 4, + "value": -1 + }, + "constructor": { + "type": 22, + "value": "TagQuestion" + }, + "endnode": { + "type": 19, + "value": false + }, + "exclusive": { + "type": 19, + "value": false + }, + "optional": { + "type": 19, + "value": false + }, + "speaker": { + "type": 4, + "value": 0 + }, + "stub": { + "type": 19, + "value": true + }, + "transitionmode": { + "type": 1, + "value": 0 + }, + "waittime": { + "type": 6, + "value": -1.0 + }, + "GameData": [ + { + "CameraTarget": { + "type": 4, + "value": -1 + }, + "CustomMovie": { + "type": 23, + "value": "" + }, + "Emotion": { + "type": 23, + "value": "Default" + }, + "ExtraWaitTime": { + "type": 4, + "value": 0 + }, + "SoundEvent": { + "type": 23, + "value": "" + }, + "AiPersonalities": [ + {} + ], + "MusicInstrumentSounds": [ + {} + ], + "OriginSound": [ + {} + ] + } + ], + "TaggedTexts": [ + { + "TaggedText": [ + { + "HasTagRule": { + "type": 19, + "value": true + }, + "RuleGroup": [ + { + "TagCombineOp": { + "type": 1, + "value": 0 + }, + "Rules": [ + {} + ] + } + ], + "TagTexts": [ + { + "TagText": [ + { + "TagText": { + "type": 28, + "value": "A defender of the weak. (Dome of Protection)", + "handle": "hb04fdbf3g44c1g407cga293g428693905000" + }, + "stub": { + "type": 19, + "value": true + } + } + ] + } + ] + } + ] + } + ], + "Tags": [ + {} + ], + "checkflags": [ + {} + ], + "children": [ + { + "child": [ + { + "UUID": { + "type": 22, + "value": "0246ed02-d3e0-4c61-9ffe-341431cd8a63" + } + } + ] + } + ], + "editorData": [ + { + "data": [ + { + "key": { + "type": 22, + "value": "ID" + }, + "val": { + "type": 23, + "value": "N16" + } + }, + { + "key": { + "type": 22, + "value": "NodeContext" + }, + "val": { + "type": 23, + "value": "" + } + }, + { + "key": { + "type": 22, + "value": "collapsed" + }, + "val": { + "type": 23, + "value": "False" + } + }, + { + "key": { + "type": 22, + "value": "logicalname" + }, + "val": { + "type": 23, + "value": "Question" + } + }, + { + "key": { + "type": 22, + "value": "position" + }, + "val": { + "type": 23, + "value": "335;-423" + } + }, + { + "key": { + "type": 22, + "value": "sourcetemplate" + }, + "val": { + "type": 23, + "value": "" + } + } + ] + } + ], + "setflags": [ + { + "flaggroup": [ + { + "type": { + "type": 22, + "value": "Character" + }, + "flag": [ + { + "name": { + "type": 22, + "value": "BOO_BookOfOrigins_DomeOfProtection" + }, + "paramval": { + "type": 4, + "value": 0 + }, + "value": { + "type": 19, + "value": true + } + } + ] + } + ] + } + ] + }, + { + "ShowOnce": { + "type": 19, + "value": true + }, + "UUID": { + "type": 22, + "value": "d65a5ec2-32db-49be-8483-1539127adaba" + }, + "addressedspeaker": { + "type": 4, + "value": -1 + }, + "constructor": { + "type": 22, + "value": "TagQuestion" + }, + "endnode": { + "type": 19, + "value": false + }, + "exclusive": { + "type": 19, + "value": false + }, + "optional": { + "type": 19, + "value": false + }, + "speaker": { + "type": 4, + "value": 0 + }, + "stub": { + "type": 19, + "value": true + }, + "transitionmode": { + "type": 1, + "value": 0 + }, + "waittime": { + "type": 6, + "value": -1.0 + }, + "GameData": [ + { + "CameraTarget": { + "type": 4, + "value": -1 + }, + "CustomMovie": { + "type": 23, + "value": "" + }, + "Emotion": { + "type": 23, + "value": "Default" + }, + "ExtraWaitTime": { + "type": 4, + "value": 0 + }, + "SoundEvent": { + "type": 23, + "value": "" + }, + "AiPersonalities": [ + {} + ], + "MusicInstrumentSounds": [ + {} + ], + "OriginSound": [ + {} + ] + } + ], + "TaggedTexts": [ + { + "TaggedText": [ + { + "HasTagRule": { + "type": 19, + "value": true + }, + "RuleGroup": [ + { + "TagCombineOp": { + "type": 1, + "value": 0 + }, + "Rules": [ + {} + ] + } + ], + "TagTexts": [ + { + "TagText": [ + { + "TagText": { + "type": 28, + "value": "Dwarven descent. (Petrifying Touch)", + "handle": "h69bc41c7ga800g4d1fgb20bg23ba44d44b64" + }, + "stub": { + "type": 19, + "value": true + } + } + ] + } + ] + } + ] + } + ], + "Tags": [ + {} + ], + "checkflags": [ + {} + ], + "children": [ + { + "child": [ + { + "UUID": { + "type": 22, + "value": "a9deab1a-3736-4d6e-906a-68c9c8641690" + } + } + ] + } + ], + "editorData": [ + { + "data": [ + { + "key": { + "type": 22, + "value": "ID" + }, + "val": { + "type": 23, + "value": "N22" + } + }, + { + "key": { + "type": 22, + "value": "NodeContext" + }, + "val": { + "type": 23, + "value": "" + } + }, + { + "key": { + "type": 22, + "value": "collapsed" + }, + "val": { + "type": 23, + "value": "False" + } + }, + { + "key": { + "type": 22, + "value": "logicalname" + }, + "val": { + "type": 23, + "value": "Question" + } + }, + { + "key": { + "type": 22, + "value": "position" + }, + "val": { + "type": 23, + "value": "975;453" + } + }, + { + "key": { + "type": 22, + "value": "sourcetemplate" + }, + "val": { + "type": 23, + "value": "" + } + } + ] + } + ], + "setflags": [ + { + "flaggroup": [ + { + "type": { + "type": 22, + "value": "Character" + }, + "flag": [ + { + "name": { + "type": 22, + "value": "BOO_BookOfOrigins_PetrifyingTouch" + }, + "paramval": { + "type": 4, + "value": 0 + }, + "value": { + "type": 19, + "value": true + } + } + ] + } + ] + } + ] + }, + { + "ShowOnce": { + "type": 19, + "value": true + }, + "UUID": { + "type": 22, + "value": "d661b9e6-88d7-4a9e-bf28-4d54b51c4ca2" + }, + "addressedspeaker": { + "type": 4, + "value": -1 + }, + "constructor": { + "type": 22, + "value": "TagQuestion" + }, + "endnode": { + "type": 19, + "value": false + }, + "exclusive": { + "type": 19, + "value": false + }, + "optional": { + "type": 19, + "value": false + }, + "speaker": { + "type": 4, + "value": 0 + }, + "stub": { + "type": 19, + "value": true + }, + "transitionmode": { + "type": 1, + "value": 0 + }, + "waittime": { + "type": 6, + "value": -1.0 + }, + "GameData": [ + { + "CameraTarget": { + "type": 4, + "value": -1 + }, + "CustomMovie": { + "type": 23, + "value": "" + }, + "Emotion": { + "type": 23, + "value": "Default" + }, + "ExtraWaitTime": { + "type": 4, + "value": 0 + }, + "SoundEvent": { + "type": 23, + "value": "" + }, + "AiPersonalities": [ + {} + ], + "MusicInstrumentSounds": [ + {} + ], + "OriginSound": [ + {} + ] + } + ], + "TaggedTexts": [ + { + "TaggedText": [ + { + "HasTagRule": { + "type": 19, + "value": true + }, + "RuleGroup": [ + { + "TagCombineOp": { + "type": 1, + "value": 0 + }, + "Rules": [ + {} + ] + } + ], + "TagTexts": [ + { + "TagText": [ + { + "TagText": { + "type": 28, + "value": "Someone who could not be shackled. (Break the Shackles)", + "handle": "h59d3c53egb9e0g4fbcgb908ge936f1adbc54" + }, + "stub": { + "type": 19, + "value": true + } + } + ] + } + ] + } + ] + } + ], + "Tags": [ + {} + ], + "checkflags": [ + {} + ], + "children": [ + { + "child": [ + { + "UUID": { + "type": 22, + "value": "0246ed02-d3e0-4c61-9ffe-341431cd8a63" + } + } + ] + } + ], + "editorData": [ + { + "data": [ + { + "key": { + "type": 22, + "value": "ID" + }, + "val": { + "type": 23, + "value": "N12" + } + }, + { + "key": { + "type": 22, + "value": "NodeContext" + }, + "val": { + "type": 23, + "value": "" + } + }, + { + "key": { + "type": 22, + "value": "collapsed" + }, + "val": { + "type": 23, + "value": "False" + } + }, + { + "key": { + "type": 22, + "value": "logicalname" + }, + "val": { + "type": 23, + "value": "Question" + } + }, + { + "key": { + "type": 22, + "value": "position" + }, + "val": { + "type": 23, + "value": "335;672" + } + }, + { + "key": { + "type": 22, + "value": "sourcetemplate" + }, + "val": { + "type": 23, + "value": "" + } + } + ] + } + ], + "setflags": [ + { + "flaggroup": [ + { + "type": { + "type": 22, + "value": "Character" + }, + "flag": [ + { + "name": { + "type": 22, + "value": "BOO_BookOfOrigins_BreakTheShackles" + }, + "paramval": { + "type": 4, + "value": 0 + }, + "value": { + "type": 19, + "value": true + } + } + ] + } + ] + } + ] + } + ] + } + ], + "speakerlist": [ + { + "speaker": [ + { + "index": { + "type": 22, + "value": "0" + }, + "list": { + "type": 23, + "value": "e0d1ff71-04a8-4340-ae64-9684d846eb83" + } + } + ] + } + ] + }, + "editorData": { + "needLayout": { + "type": 19, + "value": false + }, + "nextNodeId": { + "type": 5, + "value": 29 + } + } + } + } +} \ No newline at end of file diff --git a/Mods/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Story/RawFiles/Goals/BOO_BookOfOrigins.txt b/Mods/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Story/RawFiles/Goals/BOO_BookOfOrigins.txt new file mode 100644 index 0000000..563a082 --- /dev/null +++ b/Mods/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Story/RawFiles/Goals/BOO_BookOfOrigins.txt @@ -0,0 +1,164 @@ +Version 1 +SubGoalCombiner SGC_AND +INITSECTION + +DB_BOO_OriginSkills("Dome_CircleOfProtection"); +DB_BOO_OriginSkills("Shout_BreakTheShackles"); +DB_BOO_OriginSkills("Target_TimeWarp"); +DB_BOO_OriginSkills("Target_Squall"); +DB_BOO_OriginSkills("Target_MaddeningSong"); +DB_BOO_OriginSkills("Target_DemonicStare"); +DB_BOO_OriginSkills("Summon_SoulWolf"); + +DB_BOO_RacialSkills("Shout_FleshSacrifice"); +DB_BOO_RacialSkills("Shout_InspireStart"); +DB_BOO_RacialSkills("Shout_PlayDead"); +DB_BOO_RacialSkills("Cone_Flamebreath"); +DB_BOO_RacialSkills("Target_PetrifyingTouch"); + +KBSECTION + +// Give the characters the book + +IF +GameStarted(_Region, _) +AND +IsGameLevel(_Region, 1) +AND +DB_IsPlayer(_Char) +AND +ItemTemplateIsInCharacterInventory(_Char, "BOOK_BOO_BookOfOrigins_26a03372-4c59-4903-8c63-3318fdaaccf3", 0) +THEN +ItemTemplateAddTo("BOOK_BOO_BookOfOrigins_26a03372-4c59-4903-8c63-3318fdaaccf3", _Char, 1); + +IF +CharacterJoinedParty(_Char) +AND +DB_IsPlayer(_Char) +AND +ItemTemplateIsInCharacterInventory(_Char, "BOOK_BOO_BookOfOrigins_26a03372-4c59-4903-8c63-3318fdaaccf3", 0) +THEN +ItemTemplateAddTo("BOOK_BOO_BookOfOrigins_26a03372-4c59-4903-8c63-3318fdaaccf3", _Char, 1); + +// Using book + +IF +CharacterUsedItem(_Char, _Item) +AND +DB_IsPlayer(_Char) +AND +GetTemplate(_Item, "BOOK_BOO_BookOfOrigins_26a03372-4c59-4903-8c63-3318fdaaccf3") +AND +QRY_SpeakerIsAvailable(_Char) +THEN +Proc_StartDialog(0, "BOO_BookOfOrigins_Dialog", _Char); + +// + +PROC +BOO_RemoveOriginSkills((CHARACTERGUID)_Char) +AND +DB_BOO_OriginSkills(_Skill) +THEN +CharacterRemoveSkill(_Char, _Skill); + +PROC +BOO_RemoveRacialSkills((CHARACTERGUID)_Char) +AND +DB_BOO_RacialSkills(_Skill) +THEN +CharacterRemoveSkill(_Char, _Skill); + +// Change the Origin skills + +IF +ObjectFlagSet("BOO_BookOfOrigins_DomeOfProtection", (CHARACTERGUID)_Char, _) +THEN +BOO_RemoveOriginSkills(_Char); +CharacterAddSkill(_Char, "Dome_CircleOfProtection", 0); +ObjectClearFlag(_Char, "BOO_BookOfOrigins_DomeOfProtection"); + +IF +ObjectFlagSet("BOO_BookOfOrigins_BreakTheShackles", (CHARACTERGUID)_Char, _) +THEN +BOO_RemoveOriginSkills(_Char); +CharacterAddSkill(_Char, "Shout_BreakTheShackles", 0); +ObjectClearFlag(_Char, "BOO_BookOfOrigins_BreakTheShackles"); + +IF +ObjectFlagSet("BOO_BookOfOrigins_TimeWarp", (CHARACTERGUID)_Char, _) +THEN +BOO_RemoveOriginSkills(_Char); +CharacterAddSkill(_Char, "Target_TimeWarp", 0); +ObjectClearFlag(_Char, "BOO_BookOfOrigins_TimeWarp"); + +IF +ObjectFlagSet("BOO_BookOfOrigins_BlindingSquall", (CHARACTERGUID)_Char, _) +THEN +BOO_RemoveOriginSkills(_Char); +CharacterAddSkill(_Char, "Target_Squall", 0); +ObjectClearFlag(_Char, "BOO_BookOfOrigins_BlindingSquall"); + +IF +ObjectFlagSet("BOO_BookOfOrigins_MaddeningSong", (CHARACTERGUID)_Char, _) +THEN +BOO_RemoveOriginSkills(_Char); +CharacterAddSkill(_Char, "Target_MaddeningSong", 0); +ObjectClearFlag(_Char, "BOO_BookOfOrigins_MaddeningSong"); + +IF +ObjectFlagSet("BOO_BookOfOrigins_DemonicStare", (CHARACTERGUID)_Char, _) +THEN +BOO_RemoveOriginSkills(_Char); +CharacterAddSkill(_Char, "Target_DemonicStare", 0); +ObjectClearFlag(_Char, "BOO_BookOfOrigins_DemonicStare"); + +IF +ObjectFlagSet("BOO_BookOfOrigins_SoulWolf", (CHARACTERGUID)_Char, _) +THEN +BOO_RemoveOriginSkills(_Char); +CharacterAddSkill(_Char, "Summon_SoulWolf", 0); +ObjectClearFlag(_Char, "BOO_BookOfOrigins_SoulWolf"); + +// Change racial skills + +IF +ObjectFlagSet("BOO_BookOfOrigins_FleshSacrifice", (CHARACTERGUID)_Char, _) +THEN +BOO_RemoveRacialSkills(_Char); +CharacterAddSkill(_Char, "Shout_FleshSacrifice", 0); +ObjectClearFlag(_Char, "BOO_BookOfOrigins_FleshSacrifice"); + +IF +ObjectFlagSet("BOO_BookOfOrigins_Encourage", (CHARACTERGUID)_Char, _) +THEN +BOO_RemoveRacialSkills(_Char); +CharacterAddSkill(_Char, "Shout_InspireStart", 0); +ObjectClearFlag(_Char, "BOO_BookOfOrigins_Encourage"); + +IF +ObjectFlagSet("BOO_BookOfOrigins_DragonsBlaze", (CHARACTERGUID)_Char, _) +THEN +BOO_RemoveRacialSkills(_Char); +CharacterAddSkill(_Char, "Cone_Flamebreath", 0); +ObjectClearFlag(_Char, "BOO_BookOfOrigins_DragonsBlaze"); + +IF +ObjectFlagSet("BOO_BookOfOrigins_PetrifyingTouch", (CHARACTERGUID)_Char, _) +THEN +BOO_RemoveRacialSkills(_Char); +CharacterAddSkill(_Char, "Target_PetrifyingTouch", 0); +ObjectClearFlag(_Char, "BOO_BookOfOrigins_PetrifyingTouch"); + +IF +ObjectFlagSet("BOO_BookOfOrigins_PlayDead", (CHARACTERGUID)_Char, _) +THEN +BOO_RemoveRacialSkills(_Char); +CharacterAddSkill(_Char, "Shout_PlayDead", 0); +ObjectClearFlag(_Char, "BOO_BookOfOrigins_PlayDead"); + + +EXITSECTION + +ENDEXITSECTION +ParentTargetEdge "__Start" diff --git a/Mods/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Story/story_orphanqueries_found.txt b/Mods/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Story/story_orphanqueries_found.txt new file mode 100644 index 0000000..e69de29 diff --git a/Mods/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/meta.lsx b/Mods/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/meta.lsx new file mode 100644 index 0000000..a00a91c --- /dev/null +++ b/Mods/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/meta.lsx @@ -0,0 +1,55 @@ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Projects/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/meta.lsx b/Projects/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/meta.lsx new file mode 100644 index 0000000..6f0be5e --- /dev/null +++ b/Projects/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/meta.lsx @@ -0,0 +1,13 @@ + + +
+ + + + + + + + + + diff --git a/Public/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Stats/Generated/Data/Object.txt b/Public/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Stats/Generated/Data/Object.txt new file mode 100644 index 0000000..df9d106 --- /dev/null +++ b/Public/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Stats/Generated/Data/Object.txt @@ -0,0 +1,9 @@ +new entry "BOOK_BOO_BookOfOrigins" +type "Object" +data "RootTemplate" "26a03372-4c59-4903-8c63-3318fdaaccf3" +data "Act" "1" +data "UseAPCost" "0" +data "Value" "0" +data "Weight" "0" +data "Unique" "1" + diff --git a/Public/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Stats/Generated/Data/Skill_Summon.txt b/Public/BookOfOrigins_395a6fbb-f855-4cb0-97a9-6674bfd1799b/Stats/Generated/Data/Skill_Summon.txt new file mode 100644 index 0000000..e69de29 diff --git a/README.md b/README.md new file mode 100644 index 0000000..dc782af --- /dev/null +++ b/README.md @@ -0,0 +1,12 @@ +Book Of Origins for Divinity: Original Sin 2 - Definitive Edition +======= + +# Features: + +# Releases +* [Steam Workshop]() +* [Nexus]() + +# Attribution +- [Divinity: Original Sin 2](http://store.steampowered.com/app/435150/Divinity_Original_Sin_2/), a game by [Larian Studios](http://larian.com/) +