-
Notifications
You must be signed in to change notification settings - Fork 0
/
BMoviePossessions.py
140 lines (127 loc) · 4.25 KB
/
BMoviePossessions.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
#!/usr/bin/env python
from BMovieConstants import *
from WeightedTuple import WeightedTuple
#//**********************************************************************
#//
#// possessions - probably needs to be folded into other categories
#//
#//**********************************************************************
possessionWordLists = {
namePossessionHeroSingular : WeightedTuple( [
"Betrayal", 2,
"Bravery", 3,
"Choice", 1,
"Conquest", 3,
"Daughter", 1,
"Decision", 1,
"Fury", 2,
"Gun", 1,
"Guns", 1,
"Heroism", 3,
"Legacy", 1,
"Reign", 1,
"Revenge", 1,
"Righteousness", 1,
"Son", 1,
"Sacrifice", 1,
"Sword", 2,
"Triumph", 2,
"Victory", 2,
"Wife", 1,
"Wrath", 1,
] ),
namePossessionHeroPlural : WeightedTuple( [
"Children", 2,
"Choices", 1,
"Conquests", 3,
"Daughters", 2,
"Enemies", 3,
"Sons", 2,
"Swords", 1,
"Triumphs", 2,
] ),
namePossessionVillainSingular : WeightedTuple( [
"Choice", 1,
"Conquest", 3,
"Daughter", 1,
"Defeat", 2,
"Downfall", 2,
"Fury", 2,
"Gun", 1,
"Guns", 1,
"Invasion", 1,
"Legacy", 1,
"Reign", 1,
"Revenge", 2,
"Slave", 1,
"Son", 1,
"Sword", 2,
"Victim", 1,
"Villainy", 1,
"Wrath", 1,
] ),
namePossessionVillainPlural : WeightedTuple( [
"Children", 2,
"Conquests", 3,
"Daughters", 2,
"Enemies", 3,
"Slaves", 2,
"Sons", 2,
"Victims", 2,
"Wives", 2,
] ),
prepositionalPhraseSingularCommon : WeightedTuple( [
"Above", 1,
"Against", 1,
"Beneath", 1,
"Beyond", 2,
"In Search of", 2,
"In", 2,
"Inside", 1,
"On", 2,
] ),
prepositionalPhraseEvent : WeightedTuple( (
"After",
"Before",
"During"
) ),
prepositionalPhraseSingularProper : WeightedTuple( [
"Above", 1,
"Beneath", 1,
"Beyond", 2,
"In", 3,
"Inside", 1,
"Outside of", 1,
"On The Outskirts of", 1,
"Near", 2,
] ),
prepositionalPhrasePluralCommon : WeightedTuple( (
"Against", 1,
"Amidst", 1,
"Among", 1,
"Around", 1,
"At", 1,
"Beneath", 1,
"Beyond", 1,
"In Search of", 1,
"Inside", 1,
"Near", 1,
"Outside", 1,
"Underneath", 1,
) ),
prepositionalPhrasePluralProper : WeightedTuple( (
"Against", 1,
"Alone In", 1,
"Amidst", 1,
"Among", 1,
"Around", 1,
"At", 1,
"Beneath", 1,
"Beyond", 1,
"In Search of", 1,
"Inside", 1,
"Near", 1,
"Outside", 1,
"Underneath", 1,
) ),
}