major updates
This commit is contained in:
134
docs/projects/book_crafting/Plot Creation.md
Normal file
134
docs/projects/book_crafting/Plot Creation.md
Normal file
@@ -0,0 +1,134 @@
|
||||
Opening:
|
||||
|
||||
- KEY_DETECTIVE
|
||||
- KEY_CRIME
|
||||
- KEY_SETTING
|
||||
- KEY_ATMOSPHERE
|
||||
- KEY_SUSPENSE_TENSION
|
||||
- KEY_INITIAL_CLUES
|
||||
- KEY_CHARACTER_REACTIONS
|
||||
|
||||
Act One:
|
||||
|
||||
- KEY_SUSPECT_1
|
||||
- KEY_SUSPECT_2
|
||||
- KEY_SUSPECT_3
|
||||
- KEY_SUSPECT_4
|
||||
- KEY_MOTIVE_1
|
||||
- KEY_MOTIVE_2
|
||||
- KEY_MOTIVE_3
|
||||
- KEY_MOTIVE_4
|
||||
- KEY_CONNECTION_1
|
||||
- KEY_CONNECTION_2
|
||||
- KEY_CONNECTION_3
|
||||
- KEY_CONNECTION_4
|
||||
- KEY_SETTING_DESCRIPTION
|
||||
- KEY_LANDMARKS
|
||||
- KEY_ATMOSPHERE_DESCRIPTION
|
||||
- KEY_SUBPLOT_1
|
||||
- KEY_SUBPLOT_2
|
||||
- KEY_RELATIONSHIPS_DESCRIPTION
|
||||
- KEY_GATHERED_CLUES
|
||||
- KEY_INTERVIEWED_WITNESSES
|
||||
- KEY_ANALYZED_EVIDENCE
|
||||
- KEY_NARROWED_SUSPECTS
|
||||
|
||||
Act Two:
|
||||
|
||||
- KEY_NEW_CLUE_1
|
||||
- KEY_NEW_CLUE_2
|
||||
- KEY_NEW_CLUE_3
|
||||
- KEY_NEW_CLUE_4
|
||||
- KEY_CONTRADICTORY_EVIDENCE
|
||||
- KEY_RED_HERRINGS
|
||||
- KEY_UNEXPECTED_EVIDENCE
|
||||
- KEY_SUBPLOT_1_ADVANCE
|
||||
- KEY_SUBPLOT_2_ADVANCE
|
||||
- KEY_INTERROGATION_1
|
||||
- KEY_INTERROGATION_2
|
||||
- KEY_INTERROGATION_3
|
||||
- KEY_INTERROGATION_4
|
||||
- KEY_PLOT_TWIST_DESCRIPTION
|
||||
- KEY_DEEPEN_INVESTIGATION_DETAILS
|
||||
|
||||
Act Three:
|
||||
|
||||
- KEY_CONFRONT_CULPRIT_SCENE
|
||||
- KEY_REVEAL_TRUTH_DETAILS
|
||||
- KEY_AFTERMATH_DESCRIPTION
|
||||
- KEY_SUBPLOT_1_RESOLUTION
|
||||
- KEY_SUBPLOT_2_RESOLUTION
|
||||
- KEY_INVESTIGATION_WRAP_UP_DETAILS
|
||||
- KEY_CLOSING_SCENE_DESCRIPTION
|
||||
|
||||
opening = {
|
||||
'detective': 'KEY_DETECTIVE',
|
||||
'crime': 'KEY_CRIME',
|
||||
'setting': 'KEY_SETTING',
|
||||
'atmosphere': 'KEY_ATMOSPHERE',
|
||||
'suspense_tension': 'KEY_SUSPENSE_TENSION',
|
||||
'initial_clues': 'KEY_INITIAL_CLUES',
|
||||
'character_reactions': 'KEY_CHARACTER_REACTIONS'
|
||||
}
|
||||
|
||||
act_one = {
|
||||
'supporting_characters': {
|
||||
'suspects': ['KEY_SUSPECT_1', 'KEY_SUSPECT_2', 'KEY_SUSPECT_3', 'KEY_SUSPECT_4'],
|
||||
'motives': ['KEY_MOTIVE_1', 'KEY_MOTIVE_2', 'KEY_MOTIVE_3', 'KEY_MOTIVE_4'],
|
||||
'connections': ['KEY_CONNECTION_1', 'KEY_CONNECTION_2', 'KEY_CONNECTION_3', 'KEY_CONNECTION_4']
|
||||
},
|
||||
'setting_description': 'KEY_SETTING_DESCRIPTION',
|
||||
'landmarks': 'KEY_LANDMARKS',
|
||||
'atmosphere': 'KEY_ATMOSPHERE_DESCRIPTION',
|
||||
'subplots': {
|
||||
'subplot_1': 'KEY_SUBPLOT_1',
|
||||
'subplot_2': 'KEY_SUBPLOT_2'
|
||||
},
|
||||
'relationships': 'KEY_RELATIONSHIPS_DESCRIPTION',
|
||||
'investigate_crime': {
|
||||
'clues': 'KEY_GATHERED_CLUES',
|
||||
'witnesses': 'KEY_INTERVIEWED_WITNESSES',
|
||||
'evidence': 'KEY_ANALYZED_EVIDENCE',
|
||||
'narrow_suspects': 'KEY_NARROWED_SUSPECTS'
|
||||
}
|
||||
}
|
||||
|
||||
act_two = {
|
||||
'clues_red_herrings': {
|
||||
'new_clues': ['KEY_NEW_CLUE_1', 'KEY_NEW_CLUE_2', 'KEY_NEW_CLUE_3', 'KEY_NEW_CLUE_4'],
|
||||
'contradictory_evidence': 'KEY_CONTRADICTORY_EVIDENCE',
|
||||
'red_herrings': 'KEY_RED_HERRINGS',
|
||||
'unexpected_evidence': 'KEY_UNEXPECTED_EVIDENCE'
|
||||
},
|
||||
'subplots_advance': {
|
||||
'subplot_1_advance': 'KEY_SUBPLOT_1_ADVANCE',
|
||||
'subplot_2_advance': 'KEY_SUBPLOT_2_ADVANCE'
|
||||
},
|
||||
'investigate_suspects': {
|
||||
'suspect_interrogations': {
|
||||
'suspect_1': 'KEY_INTERROGATION_1',
|
||||
'suspect_2': 'KEY_INTERROGATION_2',
|
||||
'suspect_3': 'KEY_INTERROGATION_3',
|
||||
'suspect_4': 'KEY_INTERROGATION_4'
|
||||
}
|
||||
},
|
||||
'plot_twist': 'KEY_PLOT_TWIST_DESCRIPTION',
|
||||
'deepen_investigation': 'KEY_DEEPEN_INVESTIGATION_DETAILS'
|
||||
}
|
||||
|
||||
act_three = {
|
||||
'climax': {
|
||||
'confront_culprit': 'KEY_CONFRONT_CULPRIT_SCENE',
|
||||
'reveal_truth': 'KEY_REVEAL_TRUTH_DETAILS',
|
||||
'aftermath': 'KEY_AFTERMATH_DESCRIPTION'
|
||||
},
|
||||
'subplot_resolution': {
|
||||
'subplot_1_resolution': 'KEY_SUBPLOT_1_RESOLUTION',
|
||||
'subplot_2_resolution': 'KEY_SUBPLOT_2_RESOLUTION'
|
||||
},
|
||||
'investigation_wrap_up': 'KEY_INVESTIGATION_WRAP_UP_DETAILS',
|
||||
'closing_scene': 'KEY_CLOSING_SCENE_DESCRIPTION'
|
||||
}
|
||||
|
||||
|
||||
#Novel
|
||||
38
docs/projects/book_crafting/Script Outline.md
Normal file
38
docs/projects/book_crafting/Script Outline.md
Normal file
@@ -0,0 +1,38 @@
|
||||
**Introduction**
|
||||
|
||||
- Hook: [_Insert engaging question or statement related to video content_]
|
||||
- Greeting: Hello, [_Insert audience descriptor and your name/introduction_]
|
||||
- Video Objective: Today, [_Insert brief description of what you'll be discussing/explaining/showing in the video_]
|
||||
- Preview: We'll be covering [_List the main topics/points briefly_]
|
||||
|
||||
**Main Points**
|
||||
|
||||
- Key Point 1: [_Topic 1_]
|
||||
- Supporting Details: [_Relevant details or explanation_]
|
||||
- Visual Aids: [_Describe visual aid_]
|
||||
- Key Point 2: [_Topic 2_]
|
||||
- Supporting Details: [_Relevant details or explanation_]
|
||||
- Visual Aids: [_Describe visual aid_]
|
||||
- Repeat for additional key points as needed.
|
||||
|
||||
**Transition**
|
||||
|
||||
- Recap: We've discussed [_Quick summary of main points_]
|
||||
- Bridge: Now let's move on to [_Preview of next section/topic_]
|
||||
|
||||
**Additional Information**
|
||||
|
||||
- Supporting Details: [_Extra information, insights, tips related to the main topic_]
|
||||
- Examples or Anecdotes: [_Real-life examples or personal experiences_]
|
||||
- Visual Aids: [_Describe visual aid_]
|
||||
|
||||
**Conclusion**
|
||||
|
||||
- Summary: Today we've covered [_Brief recap of main points/topics_]
|
||||
- Call-to-action (CTA): If you [_Insert what you want viewers to do - like, subscribe, comment, etc._], please [_Insert specific action_]
|
||||
- Closing Remarks: [_Insert memorable closing statement or thought/teaser for the next video_]
|
||||
|
||||
**Outro**
|
||||
|
||||
- Sign-off: This is [_Your Name_], thank you for watching.
|
||||
- End Screen: [_Insert prompts for relevant video suggestions, links to other content, social media handles, etc._]
|
||||
9
docs/projects/book_crafting/first draft.md
Normal file
9
docs/projects/book_crafting/first draft.md
Normal file
@@ -0,0 +1,9 @@
|
||||
- Crime,Victim's occupation,Motive Embezzlement,Banker,Greed
|
||||
- Setting,Time period,Atmosphere London,1940s,Foggy
|
||||
- Detective,Trait 1,Trait 2,Trait 3 Arthur Wellingford,Analytical,Eccentric,Loyal
|
||||
- Suspects,Occupation,Motive,Crime connection Emily Blackthorn,Socialite,Jealousy,Ex-lover Reginald Montague,Accountant,Revenge,Fired employee Penelope Ashton,Art dealer,Debt,Business partner
|
||||
- Supporting characters,Role Clara Wellingford,Sister Inspector Pembroke,Police liaison Dr. Samuel Everett,Forensic expert
|
||||
- Subplots,Conflict Family secret,Hidden inheritance Forbidden love,Class divide
|
||||
- Plot twists,Impact False accusation,Detective's doubt Unexpected ally,Reveals truth
|
||||
|
||||
"Write a gripping mystery novel featuring a crime of {crime_type} committed against a {victim_occupation}, with {motive} as the driving force. Set the story in {location} during the {time_period}, and create an atmosphere of {atmosphere}. Introduce {detective_name}, a detective with the traits {detective_trait1}, {detective_trait2}, and {detective_trait3}. Include the following suspects: {suspect1_name}, a {suspect1_occupation} with a motive of {suspect1_motive} and connection to the crime as {suspect1_connection}; {suspect2_name}, a {suspect2_occupation} with a motive of {suspect2_motive} and connection to the crime as {suspect2_connection}; and {suspect3_name}, a {suspect3_occupation} with a motive of {suspect3_motive} and connection to the crime as {suspect3_connection}. Introduce supporting characters {supporting_character1_name}, a {supporting_character1_role}; {supporting_character2_name}, a {supporting_character2_role}; and {supporting_character3_name}, a {supporting_character3_role}. Include subplots involving {subplot1_type} with conflict {subplot1_conflict} and {subplot2_type} with conflict {subplot2_conflict}. Finally, incorporate plot twists of {twist1_type} with impact {twist1_impact} and {twist2_type} with impact {twist2_impact}."
|
||||
59
docs/projects/book_crafting/story.md
Normal file
59
docs/projects/book_crafting/story.md
Normal file
@@ -0,0 +1,59 @@
|
||||
Opening (4,000 words):
|
||||
1a. (2,000 words) "Introduce the resourceful detective, the crime they're investigating, and the setting. Establish the tone and mood of the story."
|
||||
1b. (2,000 words) "Continue the opening scene, building suspense and tension. Introduce initial clues and reactions from relevant characters."
|
||||
|
||||
Act One (24,000 words):
|
||||
2a. Introduce supporting characters (4,000 words)
|
||||
2a1. (1,000 words) "Introduce the first suspect, their motive, and their connection to the crime."
|
||||
2a2. (1,000 words) "Introduce the second suspect, their motive, and their connection to the crime."
|
||||
2a3. (1,000 words) "Introduce the third suspect, their motive, and their connection to the crime."
|
||||
2a4. (1,000 words) "Introduce the fourth suspect, their motive, and their connection to the crime."
|
||||
|
||||
2b. Develop the setting (4,000 words)
|
||||
2b1. (2,000 words) "Describe the main location in detail, including notable landmarks and the atmosphere."
|
||||
2b2. (2,000 words) "Describe any additional important locations and their significance to the story."
|
||||
|
||||
2c. Establish subplots and relationships (4,000 words)
|
||||
2c1. (2,000 words) "Introduce the first subplot involving conflicts and connections between characters that add tension and intrigue to the story."
|
||||
2c2. (2,000 words) "Introduce the second subplot and show how it affects the characters and main plot."
|
||||
|
||||
2d. Investigate the crime (12,000 words)
|
||||
2d1. (4,000 words) "The detective starts gathering clues, interviewing witnesses, and uncovering initial evidence."
|
||||
2d2. (4,000 words) "The detective analyzes the collected evidence and begins to form theories about the crime."
|
||||
2d3. (4,000 words) "The detective narrows down the list of suspects based on their findings and continues the investigation."
|
||||
|
||||
Act Two (32,000 words):
|
||||
3a. Introduce new clues and red herrings (8,000 words)
|
||||
3a1. (2,000 words) "Present a new piece of evidence that deepens the mystery and misleads the reader."
|
||||
3a2. (2,000 words) "Introduce another clue that seems to contradict earlier findings, adding more complexity to the case."
|
||||
3a3. (2,000 words) "Reveal a red herring that casts doubt on one of the suspects and confuses the investigation."
|
||||
3a4. (2,000 words) "Introduce an unexpected piece of evidence that changes the direction of the investigation."
|
||||
3b. Develop subplots (8,000 words)
|
||||
3b1. (4,000 words) "Advance the first subplot and show its impact on the characters and main plot."
|
||||
3b2. (4,000 words) "Advance the second subplot and reveal how it intertwines with the main plot."
|
||||
|
||||
3c. Investigate the suspects (8,000 words)
|
||||
3c1. (2,000 words) "The detective interrogates the first suspect, uncovering their secrets, motives, and alibis."
|
||||
3c2. (2,000 words) "The detective interrogates the second suspect, uncovering their secrets, motives, and alibis."
|
||||
3c3. (2,000 words) "The detective interrogates the third suspect, uncovering their secrets, motives, and alibis."
|
||||
3c4. (2,000 words) "The detective interrogates the fourth suspect, uncovering their secrets, motives, and alibis."
|
||||
|
||||
3d. Plot twist (4,000 words)
|
||||
3d1. (4,000 words) "Introduce a major twist that changes the direction of the investigation and surprises the reader, forcing the detective to reconsider their approach."
|
||||
|
||||
3e. Deepen the investigation (4,000 words)
|
||||
3e1. (4,000 words) "The detective follows new leads and makes connections between the clues, gradually getting closer to the truth."
|
||||
|
||||
Act Three (20,000 words):
|
||||
4a. Climax (8,000 words)
|
||||
4a1. (4,000 words) "The detective confronts the culprit in a tense and action-packed scene, revealing the truth behind the crime."
|
||||
4a2. (4,000 words) "Detail the aftermath of the confrontation, showing the detective's resourcefulness and determination in the face of danger."
|
||||
4b. Resolution of subplots (6,000 words)
|
||||
4b1. (3,000 words) "Resolve the first subplot, revealing the outcomes for the characters involved and the impact on the main plot."
|
||||
4b2. (3,000 words) "Resolve the second subplot, tying up loose ends and showing how it affected the overall story."
|
||||
|
||||
4c. Wrap up the investigation (4,000 words)
|
||||
4c1. (4,000 words) "The detective ties up any loose ends and explains any remaining unanswered questions, ensuring a satisfying resolution for the reader."
|
||||
|
||||
4d. Closing scene (2,000 words)
|
||||
4d1. (2,000 words) "Provide a satisfying conclusion to the story, hinting at the future for the detective and other characters, leaving the reader eager for more."
|
||||
Reference in New Issue
Block a user