prompt-lists 0.1.0 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/prompt_lists.rb +16 -5
- data/lists/genre/atompunk.yml +144 -0
- data/lists/genre/cyberpunk.yml +209 -0
- data/lists/genre/dark-fantasy.yml +132 -0
- data/lists/genre/horror.yml +126 -0
- data/lists/genre/sci-fi.yml +209 -0
- data/lists/holidays/halloween.yml +147 -0
- metadata +8 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 403f8c73fbfafe40d2589faa0690c08e4fe19002cf867ceea2b1245a4b8ccd4b
|
4
|
+
data.tar.gz: 2539e2ecd94cbf166bb8c490c2ad3425b3b93c68388be8edb7e7e4d720f45995
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d718dc305acb539576ecd34cdc3447ab9c2784e4108c23b7c27b880312bee1488fd72c9e00bac51ae5d45028e67f1ca73c1391601e4ccd3a7aa4cd46b4b4e012
|
7
|
+
data.tar.gz: d06bc34325fb1dc675598f8ed55dc588b5f467396f86788461a30f4ed1b99f59517d1a8ed0523af5a6077394e2781d83db1bda8aa2d677f3ce3b708b63bf2c46
|
data/Gemfile.lock
CHANGED
data/lib/prompt_lists.rb
CHANGED
@@ -1,9 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
-
|
3
2
|
require 'yaml'
|
4
3
|
|
5
4
|
module PromptLists
|
6
|
-
VERSION = '0.1.
|
5
|
+
VERSION = '0.1.2'
|
7
6
|
|
8
7
|
class List
|
9
8
|
attr_reader :id, :sublist_names
|
@@ -33,6 +32,7 @@ module PromptLists
|
|
33
32
|
class Sublist
|
34
33
|
attr_reader :id
|
35
34
|
attr_accessor :metadata, :items
|
35
|
+
|
36
36
|
def initialize(file_path)
|
37
37
|
@file_path = file_path
|
38
38
|
@id = File.basename(file_path, ".yml").gsub(/-/, "_").to_sym
|
@@ -49,14 +49,25 @@ module PromptLists
|
|
49
49
|
def all
|
50
50
|
Dir[File.expand_path("../lists/*", __dir__)].map do |list|
|
51
51
|
list_name = File.basename(list)
|
52
|
-
|
52
|
+
find(list_name)
|
53
53
|
end
|
54
54
|
end
|
55
55
|
|
56
56
|
def find(list_name)
|
57
|
-
|
58
|
-
|
57
|
+
@lists ||= {}
|
58
|
+
|
59
|
+
if list_name.to_s.include?('.')
|
60
|
+
main_list, sublist = list_name.to_s.split('.')
|
61
|
+
if list_exists?(main_list)
|
62
|
+
list = find(main_list)
|
63
|
+
sublist_sym = sublist&.gsub(/-/, '_')&.to_sym
|
64
|
+
return list.send(sublist_sym) if list.sublist_names.include?(sublist_sym)
|
65
|
+
end
|
66
|
+
elsif list_exists?(list_name)
|
67
|
+
@lists[list_name.to_sym] ||= List.new(list_name, load_sublists(list_name))
|
68
|
+
return @lists[list_name.to_sym]
|
59
69
|
end
|
70
|
+
nil
|
60
71
|
end
|
61
72
|
|
62
73
|
def method_missing(method_name, *args)
|
@@ -0,0 +1,144 @@
|
|
1
|
+
---
|
2
|
+
title: Cyberpunk genre
|
3
|
+
category: genre
|
4
|
+
---
|
5
|
+
|
6
|
+
aluminum
|
7
|
+
analogue computer
|
8
|
+
atomic
|
9
|
+
atomic age
|
10
|
+
atomic car
|
11
|
+
atomic city
|
12
|
+
atomic clock
|
13
|
+
atomic energy
|
14
|
+
atomic garden
|
15
|
+
atomic house
|
16
|
+
atomic locomotive
|
17
|
+
atomic palace
|
18
|
+
atomic plane
|
19
|
+
atomic power
|
20
|
+
atomic reactor
|
21
|
+
atomic rocket
|
22
|
+
automated kitchen
|
23
|
+
automation
|
24
|
+
bubble car
|
25
|
+
bubble dome
|
26
|
+
chrome
|
27
|
+
chrome finish
|
28
|
+
chrome trim
|
29
|
+
computerized
|
30
|
+
control panel
|
31
|
+
control room
|
32
|
+
cosmic rays
|
33
|
+
dashboard
|
34
|
+
dieselpunk
|
35
|
+
disc-shaped
|
36
|
+
earth satellite
|
37
|
+
electric eye
|
38
|
+
electronic brain
|
39
|
+
experimental
|
40
|
+
fallout shelter
|
41
|
+
finned car
|
42
|
+
flying car
|
43
|
+
flying saucer
|
44
|
+
futurama
|
45
|
+
futuristic
|
46
|
+
gamma rays
|
47
|
+
glass bubble
|
48
|
+
glass dome
|
49
|
+
hover car
|
50
|
+
hydroelectric
|
51
|
+
isotope
|
52
|
+
jet age
|
53
|
+
jet car
|
54
|
+
jet pack
|
55
|
+
jet plane
|
56
|
+
laboratory
|
57
|
+
magnetic field
|
58
|
+
mechanical brain
|
59
|
+
mechanized
|
60
|
+
metal finish
|
61
|
+
metal man
|
62
|
+
meteorological
|
63
|
+
modern
|
64
|
+
modernism
|
65
|
+
modernist
|
66
|
+
modular
|
67
|
+
moon base
|
68
|
+
moon colony
|
69
|
+
moon landing
|
70
|
+
moon mission
|
71
|
+
moon rocket
|
72
|
+
nuclear
|
73
|
+
nuclear age
|
74
|
+
nuclear energy
|
75
|
+
nuclear family
|
76
|
+
nuclear fusion
|
77
|
+
nuclear plant
|
78
|
+
nuclear power
|
79
|
+
nuclear reactor
|
80
|
+
nuclear rocket
|
81
|
+
nuclear submarine
|
82
|
+
observatory
|
83
|
+
optimistic future
|
84
|
+
orbit
|
85
|
+
orbital
|
86
|
+
push button
|
87
|
+
radar screen
|
88
|
+
radiant energy
|
89
|
+
radiation
|
90
|
+
radio signals
|
91
|
+
radioactive
|
92
|
+
radium
|
93
|
+
radon
|
94
|
+
ray gun
|
95
|
+
retro-future
|
96
|
+
retro-futuristic
|
97
|
+
robot
|
98
|
+
robot butler
|
99
|
+
robot maid
|
100
|
+
robot servant
|
101
|
+
robotic
|
102
|
+
rocket
|
103
|
+
rocket age
|
104
|
+
rocket base
|
105
|
+
rocket car
|
106
|
+
rocket city
|
107
|
+
rocket fuel
|
108
|
+
rocket house
|
109
|
+
rocket launch
|
110
|
+
rocket man
|
111
|
+
rocket pack
|
112
|
+
rocket port
|
113
|
+
rocket ship
|
114
|
+
rocket train
|
115
|
+
rocketeer
|
116
|
+
scientific
|
117
|
+
silver finish
|
118
|
+
space age
|
119
|
+
space car
|
120
|
+
space city
|
121
|
+
space colony
|
122
|
+
space elevator
|
123
|
+
space helmet
|
124
|
+
space house
|
125
|
+
space mission
|
126
|
+
space needle
|
127
|
+
space port
|
128
|
+
space race
|
129
|
+
space rocket
|
130
|
+
space station
|
131
|
+
space suit
|
132
|
+
spaceman
|
133
|
+
stainless steel
|
134
|
+
streamline
|
135
|
+
streamlined
|
136
|
+
technological
|
137
|
+
test pilot
|
138
|
+
uranium
|
139
|
+
utopian
|
140
|
+
vacuum tube
|
141
|
+
weather control
|
142
|
+
wonder material
|
143
|
+
world of tomorrow
|
144
|
+
zeerust
|
@@ -0,0 +1,209 @@
|
|
1
|
+
---
|
2
|
+
title: Cyberpunk genre
|
3
|
+
category: genre
|
4
|
+
---
|
5
|
+
|
6
|
+
accelerant
|
7
|
+
access point
|
8
|
+
AI core
|
9
|
+
android
|
10
|
+
artificial intelligence
|
11
|
+
augmented reality
|
12
|
+
autodoc
|
13
|
+
autogun
|
14
|
+
automation
|
15
|
+
backup
|
16
|
+
bioengineering
|
17
|
+
biohack
|
18
|
+
bionic
|
19
|
+
biopunk
|
20
|
+
black ice
|
21
|
+
black market
|
22
|
+
blacklist
|
23
|
+
blade runner
|
24
|
+
blockchain
|
25
|
+
body mod
|
26
|
+
brain hack
|
27
|
+
brain-computer interface
|
28
|
+
chrome
|
29
|
+
chromed up
|
30
|
+
code junkie
|
31
|
+
corporate drone
|
32
|
+
corporate zone
|
33
|
+
cortex bomb
|
34
|
+
cyber
|
35
|
+
cyber arms
|
36
|
+
cyber café
|
37
|
+
cyber deck
|
38
|
+
cyber doc
|
39
|
+
cyber eyes
|
40
|
+
cyber implant
|
41
|
+
cyber jack
|
42
|
+
cyber limb
|
43
|
+
cyber link
|
44
|
+
cyber lock
|
45
|
+
cyber matrix
|
46
|
+
cyber monk
|
47
|
+
cyber punk
|
48
|
+
cyber rat
|
49
|
+
cyber space
|
50
|
+
cyber suite
|
51
|
+
cyber war
|
52
|
+
cyber zone
|
53
|
+
cyberarm
|
54
|
+
cyberbrain
|
55
|
+
cybercrime
|
56
|
+
cyberdeck
|
57
|
+
cyberdog
|
58
|
+
cybereyes
|
59
|
+
cyberface
|
60
|
+
cyberhack
|
61
|
+
cyberhaven
|
62
|
+
cyberjack
|
63
|
+
cyberleg
|
64
|
+
cyberlink
|
65
|
+
cyberlock
|
66
|
+
cybermind
|
67
|
+
cybernetic
|
68
|
+
cybernetics
|
69
|
+
cybernetica
|
70
|
+
cyberpunk
|
71
|
+
cyberspace
|
72
|
+
cybertech
|
73
|
+
cyberware
|
74
|
+
cyberworld
|
75
|
+
darknet
|
76
|
+
data broker
|
77
|
+
data core
|
78
|
+
data ghost
|
79
|
+
data haven
|
80
|
+
data jack
|
81
|
+
data mine
|
82
|
+
data pirate
|
83
|
+
data runner
|
84
|
+
data slave
|
85
|
+
data spike
|
86
|
+
data stream
|
87
|
+
data thief
|
88
|
+
dataflow
|
89
|
+
datajack
|
90
|
+
datastream
|
91
|
+
deepweb
|
92
|
+
digital ghost
|
93
|
+
dive bar
|
94
|
+
docking port
|
95
|
+
downtown
|
96
|
+
drone
|
97
|
+
edge runner
|
98
|
+
electronic warfare
|
99
|
+
encryption
|
100
|
+
energy blade
|
101
|
+
energy weapon
|
102
|
+
enhanced vision
|
103
|
+
extremis
|
104
|
+
firewall
|
105
|
+
flying car
|
106
|
+
future noir
|
107
|
+
future shock
|
108
|
+
future tech
|
109
|
+
futurescape
|
110
|
+
gear head
|
111
|
+
ghost in machine
|
112
|
+
Gibson
|
113
|
+
glitch
|
114
|
+
grid
|
115
|
+
hack
|
116
|
+
hacker
|
117
|
+
hacktivist
|
118
|
+
hardline
|
119
|
+
hardware
|
120
|
+
headjack
|
121
|
+
high tech
|
122
|
+
hologram
|
123
|
+
holomap
|
124
|
+
holoscreen
|
125
|
+
holovid
|
126
|
+
ice breaker
|
127
|
+
implant
|
128
|
+
information broker
|
129
|
+
interface
|
130
|
+
jack in
|
131
|
+
laser sight
|
132
|
+
LED
|
133
|
+
living metal
|
134
|
+
mainframe
|
135
|
+
matrix
|
136
|
+
meatspace
|
137
|
+
mechanic
|
138
|
+
mega block
|
139
|
+
mega building
|
140
|
+
mega city
|
141
|
+
mega corp
|
142
|
+
megacorp
|
143
|
+
memory implant
|
144
|
+
nano
|
145
|
+
nanite
|
146
|
+
nanobot
|
147
|
+
nanotech
|
148
|
+
near future
|
149
|
+
neon
|
150
|
+
net dive
|
151
|
+
net runner
|
152
|
+
netizen
|
153
|
+
network
|
154
|
+
neural
|
155
|
+
neural implant
|
156
|
+
neural interface
|
157
|
+
neural link
|
158
|
+
neural network
|
159
|
+
neural port
|
160
|
+
neuromancer
|
161
|
+
netrunner
|
162
|
+
night city
|
163
|
+
noir
|
164
|
+
off grid
|
165
|
+
power armor
|
166
|
+
proxy
|
167
|
+
punk
|
168
|
+
razor girl
|
169
|
+
replicant
|
170
|
+
robot
|
171
|
+
runner
|
172
|
+
sci-fi noir
|
173
|
+
security system
|
174
|
+
sim sense
|
175
|
+
simulation
|
176
|
+
sinless
|
177
|
+
skeletal muscle
|
178
|
+
sky rise
|
179
|
+
slick
|
180
|
+
smart
|
181
|
+
smart gun
|
182
|
+
smart link
|
183
|
+
software
|
184
|
+
stealth tech
|
185
|
+
street doc
|
186
|
+
street meat
|
187
|
+
street rat
|
188
|
+
street sam
|
189
|
+
street tech
|
190
|
+
sync
|
191
|
+
synth
|
192
|
+
synthetic
|
193
|
+
system check
|
194
|
+
tech
|
195
|
+
tech noir
|
196
|
+
tech wear
|
197
|
+
techie
|
198
|
+
technician
|
199
|
+
technology
|
200
|
+
terminal
|
201
|
+
uplink
|
202
|
+
urban sprawl
|
203
|
+
virtual reality
|
204
|
+
virus
|
205
|
+
war droid
|
206
|
+
wetware
|
207
|
+
wired
|
208
|
+
wireless
|
209
|
+
zen
|
@@ -0,0 +1,132 @@
|
|
1
|
+
---
|
2
|
+
title: Dark fantasy genre
|
3
|
+
category: genre
|
4
|
+
---
|
5
|
+
|
6
|
+
abomination
|
7
|
+
accursed blade
|
8
|
+
ancient evil
|
9
|
+
balefire
|
10
|
+
banished prince
|
11
|
+
black altar
|
12
|
+
black castle
|
13
|
+
black magic
|
14
|
+
blood magic
|
15
|
+
blood pact
|
16
|
+
blood ritual
|
17
|
+
blood sacrifice
|
18
|
+
bone collector
|
19
|
+
bone throne
|
20
|
+
carrion
|
21
|
+
corrupted king
|
22
|
+
corrupted knight
|
23
|
+
corruption
|
24
|
+
crimson ritual
|
25
|
+
crow familiar
|
26
|
+
crown of thorns
|
27
|
+
dark covenant
|
28
|
+
dark familiar
|
29
|
+
dark forest
|
30
|
+
dark kingdom
|
31
|
+
dark lord
|
32
|
+
dark magic
|
33
|
+
dark paladin
|
34
|
+
dark prophecy
|
35
|
+
dark ritual
|
36
|
+
dark sorcerer
|
37
|
+
dark throne
|
38
|
+
darkblade
|
39
|
+
death knight
|
40
|
+
decaying kingdom
|
41
|
+
demon hunter
|
42
|
+
demon lord
|
43
|
+
demonic pact
|
44
|
+
demonic ritual
|
45
|
+
demonology
|
46
|
+
elder evil
|
47
|
+
eldritch
|
48
|
+
ethereal horror
|
49
|
+
fallen angel
|
50
|
+
fallen kingdom
|
51
|
+
fallen knight
|
52
|
+
fallen paladin
|
53
|
+
fallen priest
|
54
|
+
forbidden grimoire
|
55
|
+
forbidden magic
|
56
|
+
forbidden ritual
|
57
|
+
forgotten god
|
58
|
+
forsaken
|
59
|
+
frost demon
|
60
|
+
ghost knight
|
61
|
+
grim reaper
|
62
|
+
grotesque
|
63
|
+
hell hound
|
64
|
+
hellborn
|
65
|
+
hellfire
|
66
|
+
hemomancer
|
67
|
+
immortal evil
|
68
|
+
infernal
|
69
|
+
infernal beast
|
70
|
+
infernal contract
|
71
|
+
infernal realm
|
72
|
+
living shadow
|
73
|
+
lost soul
|
74
|
+
malevolent spirit
|
75
|
+
midnight court
|
76
|
+
necromancer
|
77
|
+
nightmare beast
|
78
|
+
nightmare realm
|
79
|
+
occult ritual
|
80
|
+
pale rider
|
81
|
+
pestilence
|
82
|
+
plague bearer
|
83
|
+
plague doctor
|
84
|
+
plague mask
|
85
|
+
poison magic
|
86
|
+
reaper
|
87
|
+
revenant knight
|
88
|
+
risen dead
|
89
|
+
ritual dagger
|
90
|
+
rune of darkness
|
91
|
+
rune of death
|
92
|
+
sacrificial altar
|
93
|
+
shadow assassin
|
94
|
+
shadow blade
|
95
|
+
shadow court
|
96
|
+
shadow king
|
97
|
+
shadow knight
|
98
|
+
shadow magic
|
99
|
+
shadow priest
|
100
|
+
shadow queen
|
101
|
+
shadow realm
|
102
|
+
shadow rider
|
103
|
+
shadow throne
|
104
|
+
shadowmancer
|
105
|
+
sin eater
|
106
|
+
skull throne
|
107
|
+
soul blade
|
108
|
+
soul collector
|
109
|
+
soul eater
|
110
|
+
soul hunter
|
111
|
+
soul reaper
|
112
|
+
soul stealer
|
113
|
+
soulbound
|
114
|
+
spectral blade
|
115
|
+
spectral knight
|
116
|
+
spectral warrior
|
117
|
+
tainted
|
118
|
+
twisted fairy
|
119
|
+
umbral
|
120
|
+
undead army
|
121
|
+
undead dragon
|
122
|
+
undead knight
|
123
|
+
unholy
|
124
|
+
vampire hunter
|
125
|
+
vampire lord
|
126
|
+
warlock king
|
127
|
+
wight
|
128
|
+
witch hunter
|
129
|
+
witch king
|
130
|
+
witch queen
|
131
|
+
wraith blade
|
132
|
+
wraith knight
|
@@ -0,0 +1,126 @@
|
|
1
|
+
---
|
2
|
+
title: Horror genre
|
3
|
+
category: genre
|
4
|
+
---
|
5
|
+
|
6
|
+
abandoned asylum
|
7
|
+
abyss
|
8
|
+
afterlife
|
9
|
+
ancient curse
|
10
|
+
apparition
|
11
|
+
asylum
|
12
|
+
attic
|
13
|
+
axe murderer
|
14
|
+
banshee
|
15
|
+
basement
|
16
|
+
blood moon
|
17
|
+
bloodstain
|
18
|
+
body snatcher
|
19
|
+
bone
|
20
|
+
buried alive
|
21
|
+
cadaver
|
22
|
+
candlelit ritual
|
23
|
+
casket
|
24
|
+
cemetery
|
25
|
+
chainsaw
|
26
|
+
clawed
|
27
|
+
coffin
|
28
|
+
cold spot
|
29
|
+
corpse
|
30
|
+
cosmic horror
|
31
|
+
coven
|
32
|
+
creature
|
33
|
+
crypt keeper
|
34
|
+
cursed
|
35
|
+
dark ritual
|
36
|
+
darkness
|
37
|
+
dead of night
|
38
|
+
decay
|
39
|
+
demon
|
40
|
+
demonic possession
|
41
|
+
doppelganger
|
42
|
+
empty cradle
|
43
|
+
evil spirit
|
44
|
+
exorcism
|
45
|
+
fearmonger
|
46
|
+
flesh
|
47
|
+
fog
|
48
|
+
forbidden ritual
|
49
|
+
ghost
|
50
|
+
ghost hunter
|
51
|
+
ghoul
|
52
|
+
grave
|
53
|
+
grave digger
|
54
|
+
graveyard
|
55
|
+
grimoire
|
56
|
+
haunted
|
57
|
+
haunted house
|
58
|
+
haunting
|
59
|
+
hellhound
|
60
|
+
horror
|
61
|
+
howling
|
62
|
+
insanity
|
63
|
+
jack o' lantern
|
64
|
+
liminal space
|
65
|
+
lunatic
|
66
|
+
madman
|
67
|
+
madness
|
68
|
+
malevolent
|
69
|
+
massacre
|
70
|
+
mausoleum
|
71
|
+
midnight
|
72
|
+
monster
|
73
|
+
mortuary
|
74
|
+
mummy
|
75
|
+
murderer
|
76
|
+
necromancy
|
77
|
+
nightmare
|
78
|
+
occult
|
79
|
+
otherworldly
|
80
|
+
ouija board
|
81
|
+
paranormal
|
82
|
+
pentagram
|
83
|
+
phantom
|
84
|
+
plague
|
85
|
+
poltergeist
|
86
|
+
possession
|
87
|
+
possessed doll
|
88
|
+
premonition
|
89
|
+
psychopath
|
90
|
+
putrid
|
91
|
+
reanimated
|
92
|
+
revenant
|
93
|
+
ritual
|
94
|
+
rotting
|
95
|
+
sanctuary
|
96
|
+
scream
|
97
|
+
seance
|
98
|
+
serial killer
|
99
|
+
shadow figure
|
100
|
+
shadow people
|
101
|
+
sinister
|
102
|
+
skeleton
|
103
|
+
skin walker
|
104
|
+
slasher
|
105
|
+
specter
|
106
|
+
spinal cord
|
107
|
+
spirit
|
108
|
+
spirit board
|
109
|
+
supernatural
|
110
|
+
terror
|
111
|
+
tombstone
|
112
|
+
torment
|
113
|
+
torture
|
114
|
+
trauma
|
115
|
+
undead
|
116
|
+
unnatural
|
117
|
+
vampire
|
118
|
+
victim
|
119
|
+
void
|
120
|
+
warped
|
121
|
+
wendigo
|
122
|
+
werewolf
|
123
|
+
witch
|
124
|
+
witchcraft
|
125
|
+
wraith
|
126
|
+
zombie
|
@@ -0,0 +1,209 @@
|
|
1
|
+
---
|
2
|
+
title: Science Fiction genre
|
3
|
+
category: genre
|
4
|
+
---
|
5
|
+
|
6
|
+
dvanced civilization
|
7
|
+
alien
|
8
|
+
alien artifact
|
9
|
+
alien civilization
|
10
|
+
alien intelligence
|
11
|
+
alien language
|
12
|
+
alien race
|
13
|
+
alien species
|
14
|
+
alien technology
|
15
|
+
android
|
16
|
+
antimatter
|
17
|
+
artificial gravity
|
18
|
+
artificial intelligence
|
19
|
+
asteroid
|
20
|
+
asteroid belt
|
21
|
+
asteroid mining
|
22
|
+
astronaut
|
23
|
+
astronomical
|
24
|
+
astronomy
|
25
|
+
atmosphere
|
26
|
+
beam weapon
|
27
|
+
black hole
|
28
|
+
bridge crew
|
29
|
+
colony
|
30
|
+
colony ship
|
31
|
+
combat droid
|
32
|
+
comet
|
33
|
+
command center
|
34
|
+
communications array
|
35
|
+
computer core
|
36
|
+
consciousness transfer
|
37
|
+
cosmic radiation
|
38
|
+
cosmonaut
|
39
|
+
cryogenics
|
40
|
+
cryopod
|
41
|
+
cryosleep
|
42
|
+
data core
|
43
|
+
deep space
|
44
|
+
dimensional
|
45
|
+
dimensional portal
|
46
|
+
distant galaxy
|
47
|
+
distant planet
|
48
|
+
docking bay
|
49
|
+
dyson sphere
|
50
|
+
earth orbit
|
51
|
+
energy shield
|
52
|
+
engine core
|
53
|
+
engine room
|
54
|
+
escape pod
|
55
|
+
event horizon
|
56
|
+
exobiology
|
57
|
+
exploration
|
58
|
+
explorer
|
59
|
+
faster than light
|
60
|
+
first contact
|
61
|
+
force field
|
62
|
+
future
|
63
|
+
future tech
|
64
|
+
galactic
|
65
|
+
galactic alliance
|
66
|
+
galactic civilization
|
67
|
+
galactic empire
|
68
|
+
galactic federation
|
69
|
+
galactic map
|
70
|
+
galactic republic
|
71
|
+
galactic war
|
72
|
+
galaxy
|
73
|
+
generation ship
|
74
|
+
genetic engineering
|
75
|
+
gravity
|
76
|
+
habitat dome
|
77
|
+
hangar bay
|
78
|
+
holodeck
|
79
|
+
hologram
|
80
|
+
humanoid
|
81
|
+
hyperspace
|
82
|
+
ice planet
|
83
|
+
infinity
|
84
|
+
interplanetary
|
85
|
+
interstellar
|
86
|
+
interstellar travel
|
87
|
+
jump drive
|
88
|
+
jupiter
|
89
|
+
laser
|
90
|
+
life support
|
91
|
+
light speed
|
92
|
+
lunar
|
93
|
+
lunar base
|
94
|
+
lunar colony
|
95
|
+
mars
|
96
|
+
mars colony
|
97
|
+
mechanoid
|
98
|
+
meteor
|
99
|
+
mission control
|
100
|
+
moon base
|
101
|
+
moon colony
|
102
|
+
nebula
|
103
|
+
neural interface
|
104
|
+
neural network
|
105
|
+
neutron star
|
106
|
+
new earth
|
107
|
+
nova
|
108
|
+
orbit
|
109
|
+
orbital station
|
110
|
+
particle beam
|
111
|
+
phaser
|
112
|
+
planetary
|
113
|
+
plasma
|
114
|
+
plasma cannon
|
115
|
+
plasma drive
|
116
|
+
plasma weapon
|
117
|
+
power core
|
118
|
+
probe
|
119
|
+
pulsar
|
120
|
+
quantum
|
121
|
+
quantum computer
|
122
|
+
quantum drive
|
123
|
+
quantum mechanics
|
124
|
+
quantum physics
|
125
|
+
radar
|
126
|
+
radiation
|
127
|
+
rocket
|
128
|
+
satellite
|
129
|
+
science
|
130
|
+
science vessel
|
131
|
+
scientific
|
132
|
+
scientifically
|
133
|
+
scientist
|
134
|
+
scout ship
|
135
|
+
ship
|
136
|
+
shuttle
|
137
|
+
solar
|
138
|
+
solar flare
|
139
|
+
solar system
|
140
|
+
space
|
141
|
+
space colony
|
142
|
+
space elevator
|
143
|
+
space exploration
|
144
|
+
space force
|
145
|
+
space marine
|
146
|
+
space mining
|
147
|
+
space opera
|
148
|
+
space pirate
|
149
|
+
space port
|
150
|
+
space ship
|
151
|
+
space station
|
152
|
+
space suit
|
153
|
+
space time
|
154
|
+
space travel
|
155
|
+
space vessel
|
156
|
+
spacefarer
|
157
|
+
spacecraft
|
158
|
+
spacedock
|
159
|
+
spaceport
|
160
|
+
spaceship
|
161
|
+
spacetime
|
162
|
+
star
|
163
|
+
star base
|
164
|
+
star chart
|
165
|
+
star cluster
|
166
|
+
star cruiser
|
167
|
+
star destroyer
|
168
|
+
star drive
|
169
|
+
star fleet
|
170
|
+
star gate
|
171
|
+
star map
|
172
|
+
star ship
|
173
|
+
star system
|
174
|
+
starbase
|
175
|
+
starchart
|
176
|
+
starcraft
|
177
|
+
stardrive
|
178
|
+
starfighter
|
179
|
+
starfleet
|
180
|
+
stargate
|
181
|
+
starlight
|
182
|
+
starmap
|
183
|
+
starport
|
184
|
+
starship
|
185
|
+
stellar
|
186
|
+
stellar cartography
|
187
|
+
stellar drift
|
188
|
+
subatomic
|
189
|
+
sublight
|
190
|
+
supernova
|
191
|
+
teleportation
|
192
|
+
terra
|
193
|
+
terraforming
|
194
|
+
terrestrial
|
195
|
+
time dilation
|
196
|
+
time machine
|
197
|
+
time travel
|
198
|
+
transporter
|
199
|
+
universal
|
200
|
+
universe
|
201
|
+
void
|
202
|
+
warp core
|
203
|
+
warp drive
|
204
|
+
warp engine
|
205
|
+
warp field
|
206
|
+
warp speed
|
207
|
+
warp technology
|
208
|
+
wormhole
|
209
|
+
zero gravity
|
@@ -0,0 +1,147 @@
|
|
1
|
+
---
|
2
|
+
title: Halloween
|
3
|
+
category: holidays
|
4
|
+
---
|
5
|
+
pumpkin
|
6
|
+
spooky ghost
|
7
|
+
black cat
|
8
|
+
witch's broom
|
9
|
+
cauldron
|
10
|
+
spider
|
11
|
+
spider web
|
12
|
+
skeleton
|
13
|
+
skeleton bones
|
14
|
+
zombie
|
15
|
+
zombie hand
|
16
|
+
vampire
|
17
|
+
werewolf
|
18
|
+
candy
|
19
|
+
candy corn
|
20
|
+
candy apple
|
21
|
+
trick-or-treat bag
|
22
|
+
full moon
|
23
|
+
bat
|
24
|
+
cobweb
|
25
|
+
tombstone
|
26
|
+
scary mask
|
27
|
+
witch hat
|
28
|
+
blood
|
29
|
+
blood splatter
|
30
|
+
blood drips
|
31
|
+
fog
|
32
|
+
jack-o'-lantern
|
33
|
+
spooky lighting
|
34
|
+
axe
|
35
|
+
crow
|
36
|
+
potion bottle
|
37
|
+
coffin
|
38
|
+
chains
|
39
|
+
clown costume
|
40
|
+
scary movie
|
41
|
+
candles
|
42
|
+
rats
|
43
|
+
glow sticks
|
44
|
+
haunted doll
|
45
|
+
crystal ball
|
46
|
+
witch's wand
|
47
|
+
gargoyle
|
48
|
+
scarecrow
|
49
|
+
voodoo doll
|
50
|
+
black raven
|
51
|
+
devil horns
|
52
|
+
eyeballs
|
53
|
+
witch's caldron
|
54
|
+
broomstick
|
55
|
+
knife
|
56
|
+
spooky tree
|
57
|
+
graveyard fence
|
58
|
+
tombstones
|
59
|
+
black cat
|
60
|
+
haunted mirror
|
61
|
+
snakes
|
62
|
+
brain
|
63
|
+
chains
|
64
|
+
window silhouettes
|
65
|
+
spell book
|
66
|
+
boarded windows
|
67
|
+
monster
|
68
|
+
crime scene
|
69
|
+
cemetery
|
70
|
+
body parts
|
71
|
+
strobe light
|
72
|
+
Frankenstein's monster
|
73
|
+
ghost bride
|
74
|
+
headless horseman
|
75
|
+
slasher villain
|
76
|
+
Mummy
|
77
|
+
swamp creature
|
78
|
+
phantom
|
79
|
+
banshee
|
80
|
+
demonic possession
|
81
|
+
poltergeist
|
82
|
+
grim reaper
|
83
|
+
demon
|
84
|
+
chainsaw killer
|
85
|
+
hockey mask
|
86
|
+
faceless entity
|
87
|
+
shadow person
|
88
|
+
wendigo
|
89
|
+
Creature from the Black Lagoon
|
90
|
+
Dracula's cape
|
91
|
+
kraken
|
92
|
+
chupacabra
|
93
|
+
lich king
|
94
|
+
eldrich horror
|
95
|
+
flesh golem
|
96
|
+
night crawler
|
97
|
+
phantom of the opera
|
98
|
+
doppelganger
|
99
|
+
skin walker
|
100
|
+
headless nun
|
101
|
+
red-eyed shadow
|
102
|
+
frost wraith
|
103
|
+
plague doctor
|
104
|
+
possessed doll
|
105
|
+
screaming banshee
|
106
|
+
dark fairy
|
107
|
+
blood wraith
|
108
|
+
night hag
|
109
|
+
faceless monk
|
110
|
+
whispering spirit
|
111
|
+
death worm
|
112
|
+
phantom ship
|
113
|
+
cursed artifact
|
114
|
+
ancient evil tome
|
115
|
+
reanimated corpse
|
116
|
+
screaming skull
|
117
|
+
dark dimension portal
|
118
|
+
soul eater
|
119
|
+
cursed music box
|
120
|
+
flesh-eating mist
|
121
|
+
bone collector
|
122
|
+
smoke demon
|
123
|
+
mirrored nightmare
|
124
|
+
time-stealing phantom
|
125
|
+
reality bender
|
126
|
+
dream harvester
|
127
|
+
memoryphage
|
128
|
+
quantum horror
|
129
|
+
psychic vampire
|
130
|
+
parasitic shadow
|
131
|
+
frost revenant
|
132
|
+
wailing wall
|
133
|
+
blood painter
|
134
|
+
echoing void
|
135
|
+
forgotten god
|
136
|
+
ribcage spider
|
137
|
+
melting face
|
138
|
+
thought eater
|
139
|
+
sin collector
|
140
|
+
bone architect
|
141
|
+
flesh sculptor
|
142
|
+
voice thief
|
143
|
+
memory weaver
|
144
|
+
death's mathematician
|
145
|
+
ancient digital entity
|
146
|
+
reality glitch
|
147
|
+
time-eating horror
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: prompt-lists
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dreaming Tulpa
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-10-
|
11
|
+
date: 2024-10-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pry
|
@@ -133,12 +133,18 @@ files:
|
|
133
133
|
- lists/food/cuisine.yml
|
134
134
|
- lists/food/fast.yml
|
135
135
|
- lists/food/fruit.yml
|
136
|
+
- lists/genre/atompunk.yml
|
137
|
+
- lists/genre/cyberpunk.yml
|
138
|
+
- lists/genre/dark-fantasy.yml
|
139
|
+
- lists/genre/horror.yml
|
140
|
+
- lists/genre/sci-fi.yml
|
136
141
|
- lists/geography/city.yml
|
137
142
|
- lists/geography/country.yml
|
138
143
|
- lists/geography/ethnic-group.yml
|
139
144
|
- lists/geography/language.yml
|
140
145
|
- lists/geography/nationality.yml
|
141
146
|
- lists/geography/territory.yml
|
147
|
+
- lists/holidays/halloween.yml
|
142
148
|
- lists/interaction/couple-negative.yml
|
143
149
|
- lists/interaction/couple.yml
|
144
150
|
- lists/interaction/crowd.yml
|