random-words 1.0.5 → 1.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (186) hide show
  1. checksums.yaml +4 -4
  2. data/.rspec_status +166 -39
  3. data/.rubocop.yml +4 -0
  4. data/.rubocop_todo.yml +313 -0
  5. data/CHANGELOG.md +67 -0
  6. data/Gemfile +15 -12
  7. data/Gemfile.lock +46 -26
  8. data/README.md +208 -15
  9. data/bin/randw +258 -92
  10. data/lib/random-words/array.rb +71 -0
  11. data/lib/random-words/config.rb +254 -0
  12. data/lib/random-words/generator.rb +257 -94
  13. data/lib/random-words/hash.rb +16 -0
  14. data/lib/random-words/html2markdown.rb +205 -0
  15. data/lib/random-words/lorem-markdown.rb +397 -0
  16. data/lib/random-words/number-to-word.rb +139 -0
  17. data/lib/random-words/source.rb +106 -0
  18. data/lib/random-words/string.rb +224 -45
  19. data/lib/random-words/table-cleanup.rb +210 -0
  20. data/lib/random-words/version.rb +1 -1
  21. data/lib/random-words/words/1984/adjectives.txt +103 -0
  22. data/lib/random-words/words/1984/adverbs.txt +92 -0
  23. data/lib/random-words/words/1984/articles-plural.txt +10 -0
  24. data/lib/random-words/words/1984/articles-singular.txt +10 -0
  25. data/lib/random-words/words/1984/clauses.txt +79 -0
  26. data/lib/random-words/words/1984/config.yml +4 -0
  27. data/lib/random-words/words/1984/conjunctions-coordinating.txt +20 -0
  28. data/lib/random-words/words/1984/conjunctions-subordinate.txt +29 -0
  29. data/lib/random-words/words/1984/names.txt +12 -0
  30. data/lib/random-words/words/1984/nouns-plural.txt +89 -0
  31. data/lib/random-words/words/1984/nouns-singular.txt +74 -0
  32. data/lib/random-words/words/1984/numbers.yml +5 -0
  33. data/lib/random-words/words/1984/phrases.txt +16 -0
  34. data/lib/random-words/words/1984/prepositions.txt +89 -0
  35. data/lib/random-words/words/1984/terminators.txt +16 -0
  36. data/lib/random-words/words/1984/verbs-passive.txt +83 -0
  37. data/lib/random-words/words/1984/verbs-plural.txt +91 -0
  38. data/lib/random-words/words/1984/verbs-singular.txt +110 -0
  39. data/lib/random-words/words/alice/adjectives.txt +80 -0
  40. data/lib/random-words/words/alice/adverbs.txt +87 -0
  41. data/lib/random-words/words/alice/articles-plural.txt +10 -0
  42. data/lib/random-words/words/alice/articles-singular.txt +10 -0
  43. data/lib/random-words/words/alice/clauses.txt +81 -0
  44. data/lib/random-words/words/alice/config.yml +4 -0
  45. data/lib/random-words/words/alice/conjunctions-coordinating.txt +20 -0
  46. data/lib/random-words/words/alice/conjunctions-subordinate.txt +29 -0
  47. data/lib/random-words/words/alice/names.txt +10 -0
  48. data/lib/random-words/words/alice/nouns-plural.txt +95 -0
  49. data/lib/random-words/words/alice/nouns-singular.txt +82 -0
  50. data/lib/random-words/words/alice/numbers.yml +5 -0
  51. data/lib/random-words/words/alice/phrases.txt +16 -0
  52. data/lib/random-words/words/alice/prepositions.txt +45 -0
  53. data/lib/random-words/words/alice/terminators.txt +16 -0
  54. data/lib/random-words/words/alice/verbs-passive.txt +495 -0
  55. data/lib/random-words/words/alice/verbs-plural.txt +115 -0
  56. data/lib/random-words/words/alice/verbs-singular.txt +97 -0
  57. data/lib/random-words/words/bacon/clauses.txt +592 -592
  58. data/lib/random-words/words/bacon/config.yml +4 -0
  59. data/lib/random-words/words/bacon/conjunctions-coordinating.txt +20 -0
  60. data/lib/random-words/words/bacon/names.txt +54 -0
  61. data/lib/random-words/words/bacon/numbers.yml +5 -0
  62. data/lib/random-words/words/bacon/phrases.txt +20 -0
  63. data/lib/random-words/words/bacon/prepositions.txt +45 -0
  64. data/lib/random-words/words/bacon/terminators.txt +16 -0
  65. data/lib/random-words/words/corporate/config.yml +4 -0
  66. data/lib/random-words/words/corporate/conjunctions-coordinating.txt +20 -0
  67. data/lib/random-words/words/corporate/names.txt +74 -0
  68. data/lib/random-words/words/corporate/numbers.yml +5 -0
  69. data/lib/random-words/words/corporate/phrases.txt +29 -0
  70. data/lib/random-words/words/corporate/prepositions.txt +45 -0
  71. data/lib/random-words/words/corporate/terminators.txt +16 -0
  72. data/lib/random-words/words/doctor/adjectives.txt +92 -0
  73. data/lib/random-words/words/doctor/adverbs.txt +92 -0
  74. data/lib/random-words/words/doctor/articles-plural.txt +10 -0
  75. data/lib/random-words/words/doctor/articles-singular.txt +10 -0
  76. data/lib/random-words/words/doctor/clauses.txt +83 -0
  77. data/lib/random-words/words/doctor/config.yml +10 -0
  78. data/lib/random-words/words/doctor/conjunctions-coordinating.txt +20 -0
  79. data/lib/random-words/words/doctor/conjunctions-subordinate.txt +29 -0
  80. data/lib/random-words/words/doctor/names.txt +74 -0
  81. data/lib/random-words/words/doctor/nouns-plural.txt +84 -0
  82. data/lib/random-words/words/doctor/nouns-singular.txt +84 -0
  83. data/lib/random-words/words/doctor/numbers.yml +5 -0
  84. data/lib/random-words/words/doctor/phrases.txt +29 -0
  85. data/lib/random-words/words/doctor/prepositions.txt +45 -0
  86. data/lib/random-words/words/doctor/terminators.txt +16 -0
  87. data/lib/random-words/words/doctor/verbs-passive.txt +83 -0
  88. data/lib/random-words/words/doctor/verbs-plural.txt +88 -0
  89. data/lib/random-words/words/doctor/verbs-singular.txt +83 -0
  90. data/lib/random-words/words/english/clauses.txt +592 -592
  91. data/lib/random-words/words/english/config.yml +4 -0
  92. data/lib/random-words/words/english/conjunctions-coordinating.txt +20 -0
  93. data/lib/random-words/words/english/names.txt +74 -0
  94. data/lib/random-words/words/english/numbers.yml +5 -0
  95. data/lib/random-words/words/english/phrases.txt +29 -0
  96. data/lib/random-words/words/english/prepositions.txt +45 -0
  97. data/lib/random-words/words/english/terminators.txt +16 -0
  98. data/lib/random-words/words/english/verbs-plural.txt +1 -0
  99. data/lib/random-words/words/english/verbs-singular.txt +1 -0
  100. data/lib/random-words/words/foulmouth/adjectives.txt +89 -0
  101. data/lib/random-words/words/foulmouth/adverbs.txt +97 -0
  102. data/lib/random-words/words/foulmouth/articles-plural.txt +12 -0
  103. data/lib/random-words/words/foulmouth/articles-singular.txt +11 -0
  104. data/lib/random-words/words/foulmouth/clauses.txt +74 -0
  105. data/lib/random-words/words/foulmouth/config.yml +4 -0
  106. data/lib/random-words/words/foulmouth/conjunctions-coordinating.txt +20 -0
  107. data/lib/random-words/words/foulmouth/conjunctions-subordinate.txt +29 -0
  108. data/lib/random-words/words/foulmouth/names.txt +81 -0
  109. data/lib/random-words/words/foulmouth/nouns-plural.txt +96 -0
  110. data/lib/random-words/words/foulmouth/nouns-singular.txt +99 -0
  111. data/lib/random-words/words/foulmouth/numbers.yml +5 -0
  112. data/lib/random-words/words/foulmouth/phrases.txt +30 -0
  113. data/lib/random-words/words/foulmouth/prepositions.txt +35 -0
  114. data/lib/random-words/words/foulmouth/terminators.txt +16 -0
  115. data/lib/random-words/words/foulmouth/verbs-passive.txt +143 -0
  116. data/lib/random-words/words/foulmouth/verbs-plural.txt +91 -0
  117. data/lib/random-words/words/foulmouth/verbs-singular.txt +104 -0
  118. data/lib/random-words/words/hipster/adjectives.txt +100 -0
  119. data/lib/random-words/words/hipster/adverbs.txt +89 -0
  120. data/lib/random-words/words/hipster/articles-plural.txt +10 -0
  121. data/lib/random-words/words/hipster/articles-singular.txt +10 -0
  122. data/lib/random-words/words/hipster/clauses.txt +180 -0
  123. data/lib/random-words/words/hipster/config.yml +4 -0
  124. data/lib/random-words/words/hipster/conjunctions-coordinating.txt +20 -0
  125. data/lib/random-words/words/hipster/conjunctions-subordinate.txt +29 -0
  126. data/lib/random-words/words/hipster/names.txt +73 -0
  127. data/lib/random-words/words/hipster/nouns-plural.txt +96 -0
  128. data/lib/random-words/words/hipster/nouns-singular.txt +100 -0
  129. data/lib/random-words/words/hipster/numbers.yml +5 -0
  130. data/lib/random-words/words/hipster/phrases.txt +21 -0
  131. data/lib/random-words/words/hipster/prepositions.txt +45 -0
  132. data/lib/random-words/words/hipster/terminators.txt +16 -0
  133. data/lib/random-words/words/hipster/verbs-passive.txt +88 -0
  134. data/lib/random-words/words/hipster/verbs-plural.txt +106 -0
  135. data/lib/random-words/words/hipster/verbs-singular.txt +114 -0
  136. data/lib/random-words/words/latin/config.yml +4 -0
  137. data/lib/random-words/words/latin/conjunctions-coordinating.txt +15 -0
  138. data/lib/random-words/words/latin/names.txt +93 -0
  139. data/lib/random-words/words/latin/numbers.yml +5 -0
  140. data/lib/random-words/words/latin/phrases.txt +16 -0
  141. data/lib/random-words/words/latin/prepositions.txt +18 -0
  142. data/lib/random-words/words/latin/terminators.txt +16 -0
  143. data/lib/random-words/words/spanish/adjectives.txt +81 -0
  144. data/lib/random-words/words/spanish/adverbs.txt +87 -0
  145. data/lib/random-words/words/spanish/articles-plural.txt +4 -0
  146. data/lib/random-words/words/spanish/articles-singular.txt +4 -0
  147. data/lib/random-words/words/spanish/clauses.txt +74 -0
  148. data/lib/random-words/words/spanish/config.yml +4 -0
  149. data/lib/random-words/words/spanish/conjunctions-coordinating.txt +8 -0
  150. data/lib/random-words/words/spanish/conjunctions-subordinate.txt +16 -0
  151. data/lib/random-words/words/spanish/names.txt +61 -0
  152. data/lib/random-words/words/spanish/nouns-plural.txt +92 -0
  153. data/lib/random-words/words/spanish/nouns-singular.txt +125 -0
  154. data/lib/random-words/words/spanish/numbers.yml +5 -0
  155. data/lib/random-words/words/spanish/phrases.txt +31 -0
  156. data/lib/random-words/words/spanish/prepositions.txt +31 -0
  157. data/lib/random-words/words/spanish/terminators.txt +17 -0
  158. data/lib/random-words/words/spanish/verbs-passive.txt +495 -0
  159. data/lib/random-words/words/spanish/verbs-plural.txt +326 -0
  160. data/lib/random-words/words/spanish/verbs-singular.txt +351 -0
  161. data/lib/random-words/words/veggie/adjectives.txt +111 -0
  162. data/lib/random-words/words/veggie/adverbs.txt +81 -0
  163. data/lib/random-words/words/veggie/articles-plural.txt +10 -0
  164. data/lib/random-words/words/veggie/articles-singular.txt +10 -0
  165. data/lib/random-words/words/veggie/clauses.txt +57 -0
  166. data/lib/random-words/words/veggie/config.yml +4 -0
  167. data/lib/random-words/words/veggie/conjunctions-coordinating.txt +20 -0
  168. data/lib/random-words/words/veggie/conjunctions-subordinate.txt +29 -0
  169. data/lib/random-words/words/veggie/names.txt +93 -0
  170. data/lib/random-words/words/veggie/nouns-plural.txt +78 -0
  171. data/lib/random-words/words/veggie/nouns-singular.txt +105 -0
  172. data/lib/random-words/words/veggie/numbers.yml +5 -0
  173. data/lib/random-words/words/veggie/phrases.txt +20 -0
  174. data/lib/random-words/words/veggie/prepositions.txt +45 -0
  175. data/lib/random-words/words/veggie/terminators.txt +16 -0
  176. data/lib/random-words/words/veggie/verbs-passive.txt +56 -0
  177. data/lib/random-words/words/veggie/verbs-plural.txt +79 -0
  178. data/lib/random-words/words/veggie/verbs-singular.txt +79 -0
  179. data/lib/random-words.rb +28 -0
  180. data/random-words.gemspec +3 -1
  181. data/src/_README.md +208 -15
  182. metadata +181 -9
  183. data/lib/random-words/words/bacon/numbers.txt +0 -21
  184. data/lib/random-words/words/corporate/numbers.txt +0 -21
  185. data/lib/random-words/words/english/numbers.txt +0 -21
  186. data/lib/random-words/words/latin/numbers.txt +0 -21
@@ -0,0 +1,4 @@
1
+ ---
2
+ name: english
3
+ description: English words
4
+ triggers: [english]
@@ -0,0 +1,20 @@
1
+ and
2
+ but
3
+ or
4
+ nor
5
+ for
6
+ so
7
+ yet
8
+ although
9
+ because
10
+ since
11
+ unless
12
+ while
13
+ whereas
14
+ if
15
+ even though
16
+ as
17
+ before
18
+ after
19
+ until
20
+ whether
@@ -0,0 +1,74 @@
1
+ John
2
+ Jane
3
+ Mary
4
+ Michael
5
+ Sarah
6
+ David
7
+ Emily
8
+ James
9
+ Jessica
10
+ Robert
11
+ Linda
12
+ William
13
+ Patricia
14
+ Brett
15
+ Ashley
16
+ Matthew
17
+ Jennifer
18
+ Yasmin
19
+
20
+ Smith
21
+ Johnson
22
+ Williams
23
+ Brown
24
+ Jones
25
+ Garcia
26
+ Miller
27
+ Davis
28
+ Rodriguez
29
+ Martinez
30
+ Hernandez
31
+ Lopez
32
+ Gonzalez
33
+ Wilson
34
+ Anderson
35
+ Taylor
36
+ Thomas
37
+ Moore
38
+ Jackson
39
+ Martin
40
+ Lee
41
+ Perez
42
+ Thompson
43
+ White
44
+ Harris
45
+ Sanchez
46
+ Clark
47
+ Ramirez
48
+ Lewis
49
+ Robinson
50
+ Walker
51
+ Young
52
+ Allen
53
+ King
54
+ Wright
55
+ Scott
56
+ Torres
57
+ Nguyen
58
+ Hill
59
+ Flores
60
+ Green
61
+ Adams
62
+ Nelson
63
+ Baker
64
+ Hall
65
+ Rivera
66
+ Campbell
67
+ Mitchell
68
+ Carter
69
+ Roberts
70
+ Gomez
71
+ Phillips
72
+ Evans
73
+ Turner
74
+ Diaz
@@ -0,0 +1,5 @@
1
+ ---
2
+ digits: zero one two three four five six seven eight nine
3
+ teens: ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen
4
+ tens: twenty thirty forty fifty sixty seventy eighty ninety
5
+ places: one ten hundred thousand million billion trillion
@@ -0,0 +1,29 @@
1
+ a blessing in disguise
2
+ bite the bullet
3
+ break the ice
4
+ burning the midnight oil
5
+ caught between a rock and a hard place
6
+ cutting corners
7
+ every cloud has a silver lining
8
+ hit the nail on the head
9
+ in the heat of the moment
10
+ jumping on the bandwagon
11
+ keep your chin up
12
+ let the cat out of the bag
13
+ on cloud nine
14
+ out of the blue
15
+ piece of cake
16
+ pulling someone's leg
17
+ see eye to eye
18
+ sitting on the fence
19
+ spill the beans
20
+ the ball is in your court
21
+ the best of both worlds
22
+ the early bird catches the worm
23
+ through thick and thin
24
+ turn a blind eye
25
+ under the weather
26
+ walking on eggshells
27
+ when pigs fly
28
+ you can't judge a book by its cover
29
+ your guess is as good as mine
@@ -0,0 +1,45 @@
1
+ about
2
+ above
3
+ across
4
+ after
5
+ against
6
+ along
7
+ among
8
+ around
9
+ at
10
+ before
11
+ behind
12
+ below
13
+ beneath
14
+ beside
15
+ between
16
+ beyond
17
+ by
18
+ despite
19
+ down
20
+ during
21
+ except
22
+ for
23
+ from
24
+ in
25
+ inside
26
+ into
27
+ like
28
+ near
29
+ of
30
+ off
31
+ on
32
+ onto
33
+ out
34
+ outside
35
+ over
36
+ through
37
+ to
38
+ toward
39
+ under
40
+ until
41
+ up
42
+ upon
43
+ with
44
+ within
45
+ without
@@ -0,0 +1,16 @@
1
+ ,.
2
+ ,.
3
+ ,.
4
+ ,.
5
+ ,.
6
+ ,.
7
+ ,?
8
+ ,?
9
+ ,?
10
+ ,!
11
+ ,!
12
+ ,!
13
+
14
+ ",."
15
+ ',.'
16
+ (,.)
@@ -5,6 +5,7 @@ agree
5
5
  allow
6
6
  analyze
7
7
  approach
8
+ are
8
9
  arrive
9
10
  assist
10
11
  attract
@@ -105,6 +105,7 @@ informs
105
105
  inspects
106
106
  installs
107
107
  instructs
108
+ is
108
109
  jumps
109
110
  keeps
110
111
  kicks
@@ -0,0 +1,89 @@
1
+ abusive
2
+ amazing
3
+ arrogant
4
+ ass-faced
5
+ asshole
6
+ bitchy
7
+ bitter
8
+ blowhard
9
+ brash
10
+ butt ugly
11
+ butt-faced
12
+ cheap
13
+ clumsy
14
+ cocky
15
+ corrupt
16
+ crude
17
+ cynical
18
+ deceitful
19
+ dirty
20
+ disdainful
21
+ disgusting
22
+ douchey
23
+ dumb
24
+ dumb as fuck
25
+ egotistical
26
+ foul
27
+ frivolous
28
+ fucked
29
+ fucked up
30
+ fucking
31
+ glorious
32
+ greasy
33
+ greedy
34
+ gross
35
+ hardcore
36
+ hurtful
37
+ impolite
38
+ inconsiderate
39
+ indecent
40
+ inglorious
41
+ insensitive
42
+ irritating
43
+ jaded
44
+ lame
45
+ lazy
46
+ lewd
47
+ lousy
48
+ massive
49
+ mean
50
+ messy
51
+ naked
52
+ nasty
53
+ needy
54
+ nude
55
+ obnoxious
56
+ offensive
57
+ overbearing
58
+ overblown
59
+ perverted
60
+ petty
61
+ pompous
62
+ rude
63
+ salty
64
+ sassy
65
+ scummy
66
+ selfish
67
+ shitty
68
+ sleazy
69
+ sloppy
70
+ slutty
71
+ sneaky
72
+ sordid
73
+ stupid
74
+ tacky
75
+ tainted
76
+ tasteless
77
+ teasing
78
+ toxic
79
+ trashy
80
+ ugly
81
+ unbelievable
82
+ unfucking-believably
83
+ unpleasant
84
+ vulgar
85
+ wasteful
86
+ weird
87
+ wild
88
+ worthless
89
+ wretched
@@ -0,0 +1,97 @@
1
+ absolutely
2
+ angrily
3
+ badly
4
+ barely
5
+ beautifully
6
+ bitterly
7
+ boldly
8
+ brutally
9
+ carelessly
10
+ cheaply
11
+ clearly
12
+ clumsily
13
+ coldly
14
+ completely
15
+ confidently
16
+ crazily
17
+ cruelly
18
+ desperately
19
+ easily
20
+ endlessly
21
+ excessively
22
+ extremely
23
+ foolishly
24
+ freely
25
+ fucking
26
+ generously
27
+ gently
28
+ gloriously
29
+ gracefully
30
+ graciously
31
+ harshly
32
+ hastily
33
+ heavily
34
+ horribly
35
+ hostilely
36
+ humbly
37
+ improperly
38
+ incredibly
39
+ insultingly
40
+ intensely
41
+ irritably
42
+ judgmentally
43
+ justifiably
44
+ lazily
45
+ loudly
46
+ madly
47
+ magnanimously
48
+ meanly
49
+ mercifully
50
+ unmercifully
51
+ messily
52
+ miserably
53
+ morally
54
+ nakedly
55
+ naughtily
56
+ nearly
57
+ obviously
58
+ offensively
59
+ openly
60
+ painfully
61
+ passionately
62
+ perfectly
63
+ poorly
64
+ positively
65
+ powerfully
66
+ proudly
67
+ quietly
68
+ randomly
69
+ recklessly
70
+ reluctantly
71
+ ruthlessly
72
+ sadly
73
+ selfishly
74
+ shamelessly
75
+ sharply
76
+ shittily
77
+ silently
78
+ sincerely
79
+ stupidly
80
+ suddenly
81
+ superficially
82
+ surprisingly
83
+ tactlessly
84
+ tediously
85
+ terribly
86
+ thoughtlessly
87
+ tirelessly
88
+ unapologetically
89
+ unbelievably
90
+ unexpectedly
91
+ unfortunately
92
+ unpleasantly
93
+ unreasonably
94
+ violently
95
+ weirdly
96
+ wildly
97
+ worse
@@ -0,0 +1,12 @@
1
+ all
2
+ either
3
+ few
4
+ many
5
+ several
6
+ some
7
+ these
8
+ those
9
+ three
10
+ two
11
+ a fuckton of
12
+ a shitload of
@@ -0,0 +1,11 @@
1
+ a
2
+ an
3
+ the
4
+ each
5
+ every
6
+ neither
7
+ any
8
+ one
9
+ this
10
+ that
11
+ a hell of a
@@ -0,0 +1,74 @@
1
+ i can't believe you did that you crazy bastard
2
+ don't be such a lazy ass and get moving
3
+ who the hell do you think you are
4
+ this is the funniest shit i've ever seen
5
+ you're as useless as a screen door on a submarine
6
+ what the hell is wrong with you
7
+ i swear to god this is ridiculous
8
+ you're driving me up the wall you idiot
9
+ that idea is as dumb as a bag of rocks
10
+ get your shit together before i lose it
11
+ i wouldn't trust you to babysit a goldfish
12
+ you're about as sharp as a marble
13
+ i can't even with you right now
14
+ that's the worst excuse i've ever heard
15
+ you're like a broken pencil pointless
16
+ you have the charm of a wet mop
17
+ stop being a drama queen for once
18
+ you're full of shit but i love it
19
+ this is a complete clusterfuck of a situation
20
+ you dance like nobody's watching and i wish they weren't
21
+ you're not the brightest crayon in the box
22
+ I'd explain it to you but I'm out of puppets
23
+ you're one sandwich short of a picnic
24
+ that's the dumbest thing i've ever heard you genius
25
+ I'm not arguing I'm just explaining why you're wrong
26
+ you're about as useful as a chocolate teapot
27
+ it's like talking to a brick wall with you
28
+ you're a few fries short of a happy meal
29
+ if brains were dynamite you wouldn't have enough to blow your nose
30
+ I'd call you a tool but that implies you're actually useful
31
+ you're the reason god created the middle finger
32
+ this is just a shit show waiting to happen
33
+ you're a legend in your own mind my friend
34
+ you couldn't pour water out of a boot if the instructions were on the heel
35
+ stop acting like a spoiled brat and grow up
36
+ this is a total trainwreck of a plan
37
+ you're as welcome as a skunk at a lawn party
38
+ I'm not saying you're stupid but you have bad luck with brains
39
+ you're about as bright as a black hole
40
+ that's a real slap in the face you know
41
+ you're like a cloud when you disappear it's a beautiful day
42
+ you're a real piece of work aren't you
43
+ if you were any more dense you'd be a black hole
44
+ this is a disaster wrapped in a catastrophe
45
+ you're like a software update nobody wants to deal with
46
+ your face would make a train take a dirt road
47
+ I'd agree with you but then we'd both be wrong
48
+ you're the king of bad decisions my dude
49
+ you've got the personality of a damp rag
50
+ you're a few cards short of a full deck
51
+ this is a perfect example of how not to do it
52
+ you're about as exciting as watching paint dry
53
+ I'd call you a clown but that's an insult to clowns
54
+ you're as popular as a skunk at a barbecue
55
+ you're the reason we can't have nice things
56
+ I'd say you're full of surprises but I'd be lying
57
+ you're a real gem just not the shiny kind
58
+ your sense of humor is like a black hole
59
+ you have the social skills of a rock
60
+ you're the poster child for why some animals eat their young
61
+ this is a complete shitshow and you know it
62
+ you're like a software bug that never gets fixed
63
+ if only common sense were a superpower
64
+ you're like a tornado full of bad ideas
65
+ you're a shining example of how not to live life
66
+ you have the charm of a brick
67
+ I'd love to see you try to dig your way out of this one
68
+ you're not the worst but you definitely make the list
69
+ you're a real piece of work aren't you
70
+ this is a circus and you're the main attraction
71
+ you've got the grace of a bull in a china shop
72
+ if ignorance is bliss you must be the happiest person alive
73
+ you're like a human version of a participation trophy
74
+ you're the reason the gene pool needs a lifeguard
@@ -0,0 +1,4 @@
1
+ ---
2
+ name: foulmouth
3
+ description: Naughty words
4
+ triggers: [foulmouth, swear, curse, fuck]
@@ -0,0 +1,20 @@
1
+ and
2
+ but
3
+ or
4
+ nor
5
+ for
6
+ so
7
+ yet
8
+ although
9
+ because
10
+ since
11
+ unless
12
+ while
13
+ whereas
14
+ if
15
+ even though
16
+ as
17
+ before
18
+ after
19
+ until
20
+ whether
@@ -0,0 +1,29 @@
1
+ although
2
+ as
3
+ as far as
4
+ as if
5
+ as long as
6
+ as much as
7
+ as though
8
+ because
9
+ before
10
+ even if
11
+ even though
12
+ if
13
+ in case
14
+ in order that
15
+ once
16
+ provided that
17
+ rather than
18
+ since
19
+ so that
20
+ than
21
+ that
22
+ though
23
+ until
24
+ when
25
+ whenever
26
+ where
27
+ wherever
28
+ whether
29
+ while
@@ -0,0 +1,81 @@
1
+ Bastard
2
+ Bitchface
3
+ Craphead
4
+ Douchebag
5
+ Fartknocker
6
+ Freakshow
7
+ Jackass
8
+ Jerkface
9
+ Knucklehead
10
+ Lardass
11
+ Muffinhead
12
+ Numbnuts
13
+ Pisspot
14
+ Poohead
15
+ Scumbag
16
+ Shitface
17
+ Snotnose
18
+ Turdblossom
19
+ Twatwaffle
20
+ Wankstain
21
+ Asshat
22
+ Bumfuzzler
23
+ Cocksplat
24
+ Dingleberry
25
+ Funkybutt
26
+ Gooberbutt
27
+ Humpalot
28
+ Jizzwhizz
29
+ Meatwad
30
+ Porkchop
31
+ Sluttykins
32
+
33
+ Bumfuzzled
34
+ Crappington
35
+ Dingleberry
36
+ Fartknocker
37
+ Flapdoodle
38
+ Fudgepacker
39
+ Goochman
40
+ Jerkface
41
+ Knobslobber
42
+ Lickspittle
43
+ Numbnuts
44
+ Peepeehead
45
+ Poopington
46
+ Porkbutt
47
+ Screwyou
48
+ Snotrocket
49
+ Stinkbottom
50
+ Turdblossom
51
+ Wankel
52
+ Weiner
53
+ Willynilly
54
+ Wombatfart
55
+ Yuckmouth
56
+ Bollocks
57
+ Crapshoot
58
+ Doodledandy
59
+ Farticus
60
+ Humpalot
61
+ Jizzlesworth
62
+ Noodlenoggin
63
+
64
+ Benny McButtface
65
+ Daisy Fartle
66
+ Eddie McCrapper
67
+ Fanny McStinkypants
68
+ Kiki Poopington
69
+ Lola McRude
70
+ Marty McDingle
71
+ Nina McSass
72
+ Winny McWiener
73
+ Nelly McNoodle
74
+ Tina Wobblebottom
75
+ Ursula McFart
76
+ Vicky McGiggles
77
+ Wally McWinkle
78
+ Xander Pooch
79
+ Bobby McNutt
80
+ Shitty McShitface
81
+ Fucking Fuck