drpedia_lite 0.0.15 → 0.0.17

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 758923cda6fc485ec02c03a9dee81baffe8cf7f7
4
- data.tar.gz: 1e66a4b19bcc53feaf3ed7efa58249d2a9fe471e
3
+ metadata.gz: 51e7158346deab187496ef69e2b3dc15f4548052
4
+ data.tar.gz: cdd12a2d3acdd4f10c6c11cec175dc0b2d18b6fb
5
5
  SHA512:
6
- metadata.gz: 9987024fdc3f8e9730a7598317114f9b5214973259da6f6ecb6ab23fbb9c00efd0897f3a873064d40b979cee139b1c2e3cf4fb850b6ff4def2f3b8af3f10bd20
7
- data.tar.gz: 426edef0543a6f6c0f7d38a37161183e197e7b58baa99626417d025bd0a4f4770348de8478aed9b49016120a9f07340f3c989c10a774b384f6cb2419537cbc37
6
+ metadata.gz: e675a87c44df5136e5ffa056790277667f6044788a84450d2cfb0f8b5238f555d10fa945dd15cdd35d81f361d1ad4d54fe6975e6261e69812e51a4ae22e4bdb4
7
+ data.tar.gz: 20a0b45ec287010fb26153462e3920073eb28c138ce72e88caa848ffed5b0fed5e77484b10f8f8ca939e608dc82bec46843550636a99c26b57f57be4ddee154a
data/lib/Builder.rb CHANGED
@@ -9,6 +9,7 @@ class Builder
9
9
  Validator.new skill_list: raw_reader.skill_list,
10
10
  skill_group: raw_reader.skill_group,
11
11
  skill_cat: raw_reader.skill_cat,
12
+ advanced_cat: raw_reader.advanced_cat,
12
13
  strains: raw_reader.strains,
13
14
  professions: raw_reader.professions,
14
15
  strain_stats: raw_reader.strain_stats,
@@ -20,6 +21,7 @@ class Builder
20
21
  File.open(File.join(base_output_path, 'professions.json'), 'w') { |f| f.write raw_reader.professions.to_a.to_json }
21
22
  File.open(File.join(base_output_path, 'strain_restriction.json'), 'w') { |f| f.write raw_reader.strain_restrictions.to_json }
22
23
  File.open(File.join(base_output_path, 'skill_cat.json'), 'w') { |f| f.write raw_reader.skill_cat.to_json }
24
+ File.open(File.join(base_output_path, 'advanced_cat.json'), 'w') { |f| f.write raw_reader.advanced_cat.to_json }
23
25
  File.open(File.join(base_output_path, 'skill_group.json'), 'w') { |f| f.write raw_reader.skill_group.to_json }
24
26
  File.open(File.join(base_output_path, 'skill_list.json'), 'w') { |f| f.write raw_reader.skill_list.to_json }
25
27
  File.open(File.join(base_output_path, 'strain_stats.json'), 'w') { |f| f.write raw_reader.strain_stats.to_json }
data/lib/RawReader.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  require 'set'
2
2
 
3
3
  class RawReader
4
- attr_reader :skill_list, :skill_cat, :skill_group,
4
+ attr_reader :skill_list, :skill_cat, :skill_group, :advanced_cat,
5
5
  :strains, :strain_restrictions, :strain_stats, :strain_specs,
6
6
  :professions, :profession_concentrations, :profession_advanced
7
7
 
@@ -11,7 +11,8 @@ class RawReader
11
11
  :strain_disadv => { pattern: /== Innate Skill Prerequisite ==/, next: :innate_preq },
12
12
  :innate_preq => { pattern: /== Profession Concentration ==/, next: :prof_concent },
13
13
  :prof_concent => { pattern: /== Advanced Profession ==/, next: :adv_prof },
14
- :adv_prof => { pattern: /== Strain Profession Restriction ==/, next: :strain_rtrs },
14
+ :adv_prof => { pattern: /== Advanced Profession Skills ==/, next: :adv_skills },
15
+ :adv_skills => { pattern: /== Strain Profession Restriction ==/, next: :strain_rtrs },
15
16
  :strain_rtrs => { pattern: /== Strain Stats ==/, next: :strain_stats },
16
17
  :strain_stats => { pattern: /== Strain Specific Skills ==/, next: :strain_specs },
17
18
  :strain_specs => { pattern: /== Open Skill ==/, next: :open },
@@ -25,6 +26,7 @@ class RawReader
25
26
  f = nil
26
27
  @skill_list = Hash.new
27
28
  @skill_cat = Hash.new
29
+ @advanced_cat = Hash.new
28
30
  @strains = Set.new
29
31
  @strain_restrictions = Hash.new
30
32
  @skill_group = Hash.new
@@ -48,6 +50,7 @@ class RawReader
48
50
  post_process_sets
49
51
 
50
52
  #ap @skill_cat
53
+ #ap @advanced_cat
51
54
  end
52
55
 
53
56
  private
@@ -76,7 +79,7 @@ private
76
79
  profession = extract_profession_name(line: line) || current_profession
77
80
  end
78
81
  return transition[:next], profession
79
- elsif current_state == :profession
82
+ elsif current_state == :profession || current_state == :adv_skills
80
83
  profession = extract_profession_name(line: line) || current_profession
81
84
  end
82
85
 
@@ -98,6 +101,7 @@ private
98
101
  when :innate_preq then process_innate_preqs line: line
99
102
  when :prof_concent then process_profession_concentration line: line
100
103
  when :adv_prof then process_advanced_professions line: line
104
+ when :adv_skills then process_profession_skills line: line, profession: profession, type: :advanced
101
105
  when :strain_rtrs then process_strain_restrictions line: line
102
106
  when :strain_stats then process_strain_stats line: line
103
107
  when :strain_specs then process_strain_specs line: line
@@ -206,15 +210,19 @@ private
206
210
  smart_insert open_skills: { skill: skill, cost: cost }
207
211
  end
208
212
 
209
- def process_profession_skills line:, profession:
210
- line =~ /([\w\s\-\'\!\:\/]+)(\d+)(.*)/
213
+ def process_profession_skills line:, profession:, type: :basic
214
+ line =~ /([A-Za-z\s\-\'\!\:\/]+)(\d+)(.*)/
211
215
  return unless $1
212
216
 
213
217
  skill = $1.strip.to_sym
214
218
  cost = $2.to_i
215
219
  preq = process_preq_cluster cluster: ($3 || '')
216
220
 
217
- smart_insert profession_skills: { skill: skill, profession: profession, cost: cost, preq: preq }
221
+ smart_insert profession_skills: { skill: skill,
222
+ profession: profession,
223
+ cost: cost,
224
+ preq: preq },
225
+ type: type
218
226
  end
219
227
 
220
228
  def process_preq_cluster cluster:
@@ -246,7 +254,7 @@ private
246
254
  end
247
255
  end
248
256
 
249
- def smart_insert strain: nil, skills: nil, open_skills: nil, profession_skills: nil, disadvantage: false
257
+ def smart_insert strain: nil, skills: nil, open_skills: nil, profession_skills: nil, disadvantage: false, type: nil
250
258
  if strain and skills
251
259
  @strains.add strain
252
260
  skills.each do |_skill|
@@ -274,11 +282,20 @@ private
274
282
  preq = profession_skills[:preq]
275
283
  professions.add profession
276
284
 
277
- @skill_cat[skill] ||= Hash.new
278
- @skill_cat[skill][profession] = {
279
- cost: cost,
280
- preq: preq
281
- }
285
+ case type
286
+ when :basic
287
+ @skill_cat[skill] ||= Hash.new
288
+ @skill_cat[skill][profession] = {
289
+ cost: cost,
290
+ preq: preq
291
+ }
292
+ when :advanced
293
+ @advanced_cat[skill] ||= Hash.new
294
+ @advanced_cat[skill][profession] = {
295
+ cost: cost,
296
+ preq: preq
297
+ }
298
+ end
282
299
 
283
300
  end
284
301
  end
data/lib/Validator.rb CHANGED
@@ -5,6 +5,7 @@ class Validator
5
5
  def initialize skill_list:,
6
6
  skill_group:,
7
7
  skill_cat:,
8
+ advanced_cat:,
8
9
  strains:,
9
10
  professions:,
10
11
  strain_stats:,
@@ -14,6 +15,7 @@ class Validator
14
15
  @skill_list = skill_list
15
16
  @skill_group = skill_group
16
17
  @skill_cat = skill_cat
18
+ @advanced_cat = advanced_cat
17
19
  @strains = strains
18
20
  @professions = professions
19
21
  @strain_stats = strain_stats
@@ -22,11 +24,13 @@ class Validator
22
24
  @profession_advanced = profession_advanced
23
25
 
24
26
  validate_non_empty
25
- validate_skill_name_matches
27
+ validate_skill_name_matches cat: @skill_cat
28
+ validate_skill_name_matches cat: @advanced_cat
26
29
  validate_stats
27
30
  validate_strain_specs
28
31
  validate_profession_concentrations
29
32
  validate_profession_advanced
33
+ validate_non_duplicate_skill_codes
30
34
  end
31
35
 
32
36
  private
@@ -67,13 +71,13 @@ private
67
71
  end
68
72
  end
69
73
 
70
- def validate_skill_name_matches
74
+ def validate_skill_name_matches cat:
71
75
  mismatches = Array.new
72
- @skill_cat.each do |skill_name, sdata|
76
+ cat.each do |skill_name, sdata|
73
77
  if !is_in_list?(skill_name)
74
- puts "mismatch: #{skill_name}"
78
+ # puts "mismatch: #{skill_name}"
75
79
  mismatches << skill_name
76
- ap @skill_cat[skill_name]
80
+ # ap @skill_cat[skill_name]
77
81
  end
78
82
 
79
83
  sdata.each do |stype, stdata|
@@ -96,6 +100,20 @@ private
96
100
  end
97
101
  end
98
102
 
103
+ def validate_non_duplicate_skill_codes
104
+ existing_codes = Hash.new
105
+
106
+ @skill_list.each do |skill, code|
107
+ if existing_codes[code] == nil
108
+ existing_codes[code] = skill
109
+ else
110
+ puts "Duplicate skill code: #{code}"
111
+ puts " Previously claimed by: #{existing_codes[code]}"
112
+ puts " Ateempt to claim by: #{skill}"
113
+ end
114
+ end
115
+ end
116
+
99
117
  def is_in_list? _x
100
118
  if @skill_list[_x] == nil && @skill_group[_x] == nil
101
119
  puts "mismatched skill: #{_x}"
data/lib/input/input.txt CHANGED
@@ -46,152 +46,346 @@ Crafting and Production: Cook, Distiller, Engineer, Mad Scientist, Printer, Scav
46
46
 
47
47
  == Advanced Profession ==
48
48
  Apocatastian Templar:
49
- (and ((xp_sum 100)
50
- (stat_sum hp_or_mp 50)
51
- (p Priest)
52
- (p (Guard Officer))))
49
+ (and ((xp_sum 100)
50
+ (stat_sum hp_or_mp 50)
51
+ (p Priest)
52
+ (p (Guard Officer))))
53
53
 
54
54
  Avontuur:
55
- (and ((xp_sum 100)
56
- (stat_sum hp_or_mp 50)
57
- (p (Gambler Scavenger Teacher Jones))))
55
+ (and ((xp_sum 100)
56
+ (stat_sum hp_or_mp 50)
57
+ (p (Gambler Scavenger Teacher Jones))))
58
58
 
59
59
  Bone Breaker:
60
- (and ((xp_sum 100)
61
- (stat_sum hp_or_mp 50)
62
- (p (Thug Pugilist))))
60
+ (and ((xp_sum 100)
61
+ (stat_sum hp_or_mp 50)
62
+ (p (Thug Pugilist))))
63
63
 
64
64
  Entrepreneur:
65
- (and ((not (s "The Red Star"))
66
- (xp_sum 100)
67
- (stat_sum hp_or_mp 50)
68
- (p (Caravan Driver "Hook-Up" Merchant Publican))))
65
+ (and ((not (s "The Red Star"))
66
+ (xp_sum 100)
67
+ (stat_sum hp_or_mp 50)
68
+ (p (Caravan Driver "Hook-Up" Merchant Publican))))
69
69
 
70
70
  Free Radical:
71
- (and ((s Retrograde)
72
- (xp_sum 100)
73
- (stat_sum hp_or_mp 50)))
71
+ (and ((s Retrograde)
72
+ (xp_sum 100)
73
+ (stat_sum hp_or_mp 50)))
74
74
 
75
75
  G-Man:
76
- (and ((or ((s "Pure Blood")
77
- (k "Lore - Strain - Pure Blood")))
78
- (xp_sum 100)
79
- (stat_sum hp_or_mp 50)
80
- (k Literacy)
81
- (k "Lore - Pre-Fall History Modern")
82
- (k (Torture Interrogate))))
76
+ (and ((or ((s "Pure Blood")
77
+ (k "Lore - Strain - Pure Blood")))
78
+ (xp_sum 100)
79
+ (stat_sum hp_or_mp 50)
80
+ (k Literacy)
81
+ (k "Lore - Pre-Fall History Modern")
82
+ (k (Torture Interrogate))))
83
83
 
84
84
  Gear Head:
85
- (and ((xp_sum 100)
86
- (stat_sum hp_or_mp 50)
87
- ((or (p (Caravan Driver "Hook-Up" Merchant Engineer "Mad Scientist"))
88
- (s ("Diesel Jock" Rover))))
89
- (k ("Building Tomorrow" Brewing "Forging the Future"))))
85
+ (and ((xp_sum 100)
86
+ (stat_sum hp_or_mp 50)
87
+ ((or (p (Caravan Driver "Hook-Up" Merchant Engineer "Mad Scientist"))
88
+ (s ("Diesel Jock" Rover))))
89
+ (k ("Building Tomorrow" Brewing "Forging the Future"))))
90
90
 
91
91
  Grave Robber:
92
- (and ((xp_sum 100)
93
- (stat_sum hp_or_mp 50)
94
- (p (Doctor Sawbones))
95
- (p (Scavenger Thief Assassin Jones))))
92
+ (and ((xp_sum 100)
93
+ (stat_sum hp_or_mp 50)
94
+ (p (Doctor Sawbones))
95
+ (p (Scavenger Thief Assassin Jones))))
96
96
 
97
97
  Marksman:
98
- (and ((xp_sum 100)
99
- (stat_sum hp_or_mp 50)
100
- (p (Sniper "Gun Slinger"))))
98
+ (and ((xp_sum 100)
99
+ (stat_sum hp_or_mp 50)
100
+ (p (Sniper "Gun Slinger"))))
101
101
 
102
102
  Mercenary:
103
- (and ((xp_sum 100)
104
- (stat_sum hp_or_mp 50)
105
- (p (Soldier Guard Officer Hunter))))
103
+ (and ((xp_sum 100)
104
+ (stat_sum hp_or_mp 50)
105
+ (p (Soldier Guard Officer Hunter))))
106
106
 
107
107
  Merican Ba-das:
108
- (and ((xp_sum 100)
109
- (stat_sum hp 50)
110
- (s Merican)
111
- (p Priest)
112
- (p (Guard Officer "Gun Slinger" Hunter Primitive Pugilist Soldier Thug))))
108
+ (and ((xp_sum 100)
109
+ (stat_sum hp 50)
110
+ (s Merican)
111
+ (p Priest)
112
+ (p (Guard Officer "Gun Slinger" Hunter Primitive Pugilist Soldier Thug))))
113
113
 
114
114
  Mind Killer:
115
- (and ((xp_sum 200)
116
- (stat_sum hp_or_mp 50)
117
- (k "Mind Resistance")))
115
+ (and ((xp_sum 200)
116
+ (stat_sum hp_or_mp 50)
117
+ (k "Mind Resistance")))
118
118
 
119
119
  Monk:
120
- (and ((xp_sum 100)
121
- (stat_sum hp_or_mp 50)
122
- (p ("Martial Artist" Priest))))
120
+ (and ((xp_sum 100)
121
+ (stat_sum hp_or_mp 50)
122
+ (p ("Martial Artist" Priest))))
123
123
 
124
124
  Mountebank:
125
- (and ((xp_sum 100)
126
- (stat_sum mp 100)
127
- (p (Charlatan Gambler Merchant Politician))))
125
+ (and ((xp_sum 100)
126
+ (stat_sum mp 100)
127
+ (p (Charlatan Gambler Merchant Politician))))
128
128
 
129
129
  Nephilim:
130
- (and ((xp_sum 200)
131
- (stat_sum mp 50)
132
- (s ("Nation of Accensor" Remnant))))
130
+ (and ((xp_sum 200)
131
+ (stat_sum mp 50)
132
+ (s ("Nation of Accensor" Remnant))))
133
133
 
134
134
  Oni:
135
- (and ((xp_sum 100)
136
- (stat_sum hp_or_mp 50)
137
- (s "Red Star")
138
- (p Priest)
139
- (p (Guard Officer "Gun Slinger" Primitive Soldier))))
135
+ (and ((xp_sum 100)
136
+ (stat_sum hp_or_mp 50)
137
+ (s "Red Star")
138
+ (p Priest)
139
+ (p (Guard Officer "Gun Slinger" Primitive Soldier))))
140
140
 
141
141
  Overlord:
142
- (and ((xp_sum 100)
143
- (stat_sum hp_or_mp 50)
144
- (p (Assassin Doctor Gambler "Mad Scientist" "Ring Leader" Engineer))
145
- (p (Charlatan Entertainer Politician Priest Teacher))))
142
+ (and ((xp_sum 100)
143
+ (stat_sum hp_or_mp 50)
144
+ (p (Assassin Doctor Gambler "Mad Scientist" "Ring Leader" Engineer))
145
+ (p (Charlatan Entertainer Politician Priest Teacher))))
146
146
 
147
147
  Reaper:
148
- (and ((xp_sum 100)
149
- (p ("Gun Slinger" Hunter Primitive Soldier))))
148
+ (and ((xp_sum 100)
149
+ (p ("Gun Slinger" Hunter Primitive Soldier))))
150
150
 
151
151
  Sage:
152
- (and ((xp_sum 100)
153
- (stat_sum mp 50)
154
- (p (Jones Printer Teacher))
155
- (k (lore_type 4))))
152
+ (and ((xp_sum 100)
153
+ (stat_sum mp 50)
154
+ (p (Jones Printer Teacher))
155
+ (lore_type 4)))
156
+
156
157
  Saint:
157
- (and ((xp_sum 100)
158
- (or ((p (Cook Doctor Priest Teacher))
159
- (s "Nation of Accensor")))
160
- ((not (s "The Red Star")))))
158
+ (and ((xp_sum 100)
159
+ (or ((p (Cook Doctor Priest Teacher))
160
+ (s "Nation of Accensor")))
161
+ ((not (s "The Red Star")))))
161
162
 
162
163
  Shadow:
163
- (and ((xp_sum 200)
164
- (stat_sum hp_or_mp 50)
165
- (p (Assassin Thief Spy))))
164
+ (and ((xp_sum 200)
165
+ (stat_sum hp_or_mp 50)
166
+ (p (Assassin Thief Spy))))
166
167
 
167
168
  Shepherd of the Land:
168
- (and ((xp_sum 200)
169
- (stat_sum hp_or_mp 100)
170
- (p (Cook Brewer Teacher Entertainer Farmer Fishmonger))))
169
+ (and ((xp_sum 200)
170
+ (stat_sum hp_or_mp 100)
171
+ (p (Cook Brewer Teacher Entertainer Farmer Fishmonger))))
171
172
 
172
173
  Survivor:
173
- (and ((xp_sum 200)
174
- (stat_sum hp_and_mp 100)))
174
+ (and ((xp_sum 200)
175
+ (stat_sum hp_and_mp 100)))
175
176
 
176
177
  Techno Savant:
177
- (and ((xp_sum 100)
178
- (stat_sum hp_or_mp 50)
179
- (p ("Mad Scientist" Tinker Engineer))))
178
+ (and ((xp_sum 100)
179
+ (stat_sum hp_or_mp 50)
180
+ (p ("Mad Scientist" Tinker Engineer))))
180
181
 
181
182
  Thought Bender:
182
- (and ((xp_sum 100)
183
- (stat_sum mp 50)
184
- (p Psionist)
185
- (k (psionic_type advanced 2))))
183
+ (and ((xp_sum 100)
184
+ (stat_sum mp 50)
185
+ (p Psionist)
186
+ (psionic_type advanced 2)))
186
187
 
187
188
  Veteran:
188
- (and ((xp_sum 200)
189
- (k "Lore - Local Area")))
189
+ (and ((xp_sum 200)
190
+ (k "Lore - Local Area")))
190
191
 
191
192
  Villon:
192
- (and ((xp_sum 100)
193
- (p (Thief Assassin Spy))))
194
-
193
+ (and ((xp_sum 100)
194
+ (p (Thief Assassin Spy))))
195
+
196
+ == Advanced Profession Skills ==
197
+
198
+ == Apocatastian Templar ==
199
+ Shroud of Faith 10
200
+ Guardian of the Order 10
201
+ Pillar of Strength 10
202
+ The Lone Guard 10
203
+ Wrath of the Just 10
204
+
205
+ == Avontuur ==
206
+ Trademark Item 10
207
+ Dust and Bones 10 Trademark Item
208
+ Side Kick 10
209
+ Smuggler's Run 10 Trademark Item
210
+ Don't Monologue 10 Brawling
211
+
212
+ == Bone Breaker ==
213
+ Last Word 10
214
+ Echoing Pain 10
215
+ Strong Chin 10
216
+ Tougher Than Metal 10
217
+ Ring Out 10
218
+
219
+ == Entrepreneur ==
220
+ New Horizons 10
221
+ Bankrolling 10
222
+ Cornered Market 10
223
+ New Design 10
224
+ Mini-Mall 10
225
+
226
+ == Free Radical ==
227
+ Atom Smasher 10
228
+ Evolution 10
229
+ Healthy Green Glow 10
230
+ Jacob’s Broken Ladder 10
231
+ Share the Love 10 Evolution
232
+
233
+ == G-Man ==
234
+ Arrest Warrant 10 The Oath
235
+ Bound By Law 10 The Oath
236
+ Forensic Rituals 10 The Oath
237
+ The Oath 10
238
+ Trained Inquisitor 10 The Oath
239
+
240
+ == Gear Head ==
241
+ Eternal Forge 10
242
+ Internal Hearth 10
243
+ Hotrod Junkie 10
244
+ The Outside Chance 10
245
+ Servant of Iron 10
246
+
247
+ == Grave Robber ==
248
+ Trinkets of the Past 10
249
+ Replacement Parts 10
250
+ Gene Splicer: Lung Expansion 5
251
+ Gene Splicer: Thick Skin 5
252
+ Gene Splicer: Eau de Zombie 5
253
+ Gene Splicer: Ice Veins 5
254
+ Gene Splicer: Infectus Mordus 5
255
+ Last Dance 10
256
+
257
+ == Marksman ==
258
+ Magic Bullet 10
259
+ Bullet Dodger 10
260
+ Vital Fire 10
261
+ Gun-Fu 10
262
+ Ricochet 10 Gun-Fu
263
+
264
+ == Mercenary ==
265
+ Dispatch 10
266
+ Hired Muscle 10
267
+ In the Zone 10
268
+ Interceptor 10
269
+ Training Ground 10
270
+
271
+ == Merican Ba-Das ==
272
+ Rebel Yell 10
273
+ Cheeseburger and a Six Pack 10
274
+ Hail of Bullets 10
275
+ Walk It Off 10
276
+ Dumb Luck 10
277
+
278
+ == Mind Killer ==
279
+ Psionic Dissidence 10
280
+ Burning Call 10
281
+ Fearless is the Still Mind 10
282
+ The Culling Wall 10
283
+ One True Reality 10
284
+
285
+ == Monk ==
286
+ Hundred Fist Strike 10
287
+ Flesh of Iron 10
288
+ Silent Introspection 10
289
+ Shatter Strike 10 Brawling
290
+ Air Strike 10 Brawling
291
+
292
+ == Mountebank ==
293
+ Mob Mentality 10
294
+ Broken Mirrors 10
295
+ Gilded Daisy 10
296
+ Hung Jury 10
297
+ Windfall 10
298
+
299
+ == Nephilim ==
300
+ The Change 10
301
+ Avenging Angel 10 The Change
302
+ Wrath 10 The Change & Brawling
303
+ Broken Coils 10 The Change
304
+ Meaning of Death 10 The Change & Wrath
305
+
306
+ == Oni ==
307
+ Memories of Many 10 Memories of Many
308
+ Guardian Spirit 10 Memories of Many
309
+ Walking Reminder 10 Memories of Many
310
+ Shared Strength 10 Memories of Many
311
+ Red Menace 10 Memories of Many
312
+
313
+ == Overlord ==
314
+ Henchman 10
315
+ Lair of Solitude 10
316
+ Criminal Network 10
317
+ Deus ex Machina 10
318
+ Raise the Standard 10
319
+
320
+ == Reaper ==
321
+ Aura of Hate 10
322
+ Necessary Violence 10
323
+ Killing Zone 10
324
+ Dark Intentions 10
325
+ Sociopath Stalk 10
326
+
327
+ == Sage ==
328
+ House of Cards 10
329
+ Simple Deduction 10
330
+ Leap of Reason 10 Simple Deduction
331
+ Strategy 10
332
+ Pure Genius 10 Educated
333
+
334
+ == Saint ==
335
+ Inner Peace 10
336
+ Life Giver 10
337
+ Live Again 10
338
+ Miracle Worker 10
339
+ The Final Cause 10 Live Again
340
+
341
+ == Shadow ==
342
+ Unseen Hands 10
343
+ Lurking Threat 10
344
+ Inner Circle 10 Guild Member
345
+ Sandman 10
346
+ Never Here 10
347
+
348
+ == Shepherd of the Land ==
349
+ Breaking Point 10
350
+ Gossip Hound 10
351
+ Gracious Guest 10
352
+ Helping Hand 10
353
+ More To Give 10
354
+
355
+ == Survivor ==
356
+ Calloused Hands 10
357
+ Scarred Bones 10
358
+ Jaded World View 10
359
+ Iron Kidney 10
360
+ Pack Mule 10
361
+
362
+ == Techno Savant ==
363
+ Elementary! 10
364
+ Eureka! 10 Elementary!
365
+ Brilliant! 10
366
+ Genius! 10
367
+ Excelsior! 10 Elementary!
368
+
369
+ == Thought Bender ==
370
+ Shattered Psyche 10
371
+ Duality 10 Shattered Psyche
372
+ Grave Mind 10 Shattered Psyche
373
+ Mental Breakdown 10 Shattered Psyche
374
+ My Little Friend 10 Shattered Psyche
375
+
376
+ == Veteran ==
377
+ Been There Did That 10
378
+ Dirty Connections 10 Literacy
379
+ Knows A Guy 10
380
+ Owed Favors 10
381
+ Prior Enemies 10
382
+
383
+ == Villon ==
384
+ Protection Racket 10 Disguise
385
+ Nimble Fingers 10 Pick Pockets
386
+ Fence 10
387
+ Running Numbers 10
388
+ Well Shit 10
195
389
 
196
390
  == Strain Profession Restriction ==
197
391
  Baywalkers: Sawbones, Primitive, Thug
@@ -1201,3 +1395,168 @@ HN Unlock
1201
1395
  HO Vanish
1202
1396
  HP Weld
1203
1397
  HQ Wide Strike
1398
+ RA Shroud of Faith
1399
+ RB Guardian of the Order
1400
+ RC Pillar of Strength
1401
+ RD The Lone Guard
1402
+ RE Wrath of the Just
1403
+ RF Trademark Item
1404
+ RG Dust and Bones
1405
+ RH Trademark Item
1406
+ RI Side Kick
1407
+ RJ Smuggler's Run
1408
+ RK Trademark Item
1409
+ RL Don't Monologue
1410
+ RM Last Word
1411
+ RN Echoing Pain
1412
+ RO Strong Chin
1413
+ RP Tougher Than Metal
1414
+ RQ Ring Out
1415
+ RR New Horizons
1416
+ RS Bankrolling
1417
+ RT Cornered Market
1418
+ RU New Design
1419
+ RV Mini-Mall
1420
+ RW Atom Smasher
1421
+ RX Evolution
1422
+ RY Healthy Green Glow
1423
+ RZ s Broken Ladder
1424
+ SA Share the Love
1425
+ SB Evolution
1426
+ SC Arrest Warrant
1427
+ SD The Oath
1428
+ SE Bound By Law
1429
+ SF The Oath
1430
+ SG Forensic Rituals
1431
+ SH The Oath
1432
+ SI The Oath
1433
+ SJ Trained Inquisitor
1434
+ SK The Oath
1435
+ SL Eternal Forge
1436
+ SM Internal Hearth
1437
+ SN Hotrod Junkie
1438
+ SO The Outside Chance
1439
+ SP Servant of Iron
1440
+ SQ Trinkets of the Past
1441
+ SR Replacement Parts
1442
+ SS Gene Splicer: Lung Expansion
1443
+ ST Gene Splicer: Thick Skin
1444
+ SU Gene Splicer: Eau de Zombie
1445
+ SV Gene Splicer: Ice Veins
1446
+ SW Gene Splicer: Infectus Mordus
1447
+ SX Last Dance
1448
+ SY Magic Bullet
1449
+ SZ Bullet Dodger
1450
+ TA Vital Fire
1451
+ TB Gun-Fu
1452
+ TC Ricochet
1453
+ TD Gun-Fu
1454
+ TE Dispatch
1455
+ TF Hired Muscle
1456
+ TG In the Zone
1457
+ TH Interceptor
1458
+ TI Training Ground
1459
+ TJ Rebel Yell
1460
+ TK Cheeseburger and a Six Pack
1461
+ TL Hail of Bullets
1462
+ TM Walk It Off
1463
+ TN Dumb Luck
1464
+ TO Psionic Dissidence
1465
+ TP Burning Call
1466
+ TQ Fearless is the Still Mind
1467
+ TR The Culling Wall
1468
+ TS One True Reality
1469
+ TT Hundred Fist Strike
1470
+ TU Flesh of Iron
1471
+ TV Silent Introspection
1472
+ TW Shatter Strike
1473
+ TX Air Strike
1474
+ TY Mob Mentality
1475
+ TZ Broken Mirrors
1476
+ UA Gilded Daisy
1477
+ UB Hung Jury
1478
+ UC Windfall
1479
+ UD The Change
1480
+ UE Avenging Angel
1481
+ UF The Change
1482
+ UG Wrath
1483
+ UH The Change
1484
+ UI Broken Coils
1485
+ UJ The Change
1486
+ UK Meaning of Death
1487
+ UL The Change
1488
+ UM Wrath
1489
+ UN Memories of Many
1490
+ UO Memories of Many
1491
+ UP Guardian Spirit
1492
+ UQ Memories of Many
1493
+ UR Walking Reminder
1494
+ US Memories of Many
1495
+ UT Shared Strength
1496
+ UU Memories of Many
1497
+ UV Red Menace
1498
+ UW Memories of Many
1499
+ UX Henchman
1500
+ UY Lair of Solitude
1501
+ UZ Criminal Network
1502
+ VA Deus ex Machina
1503
+ VB Raise the Standard
1504
+ VC Aura of Hate
1505
+ VD Necessary Violence
1506
+ VE Killing Zone
1507
+ VF Dark Intentions
1508
+ VG Sociopath Stalk
1509
+ VH House of Cards
1510
+ VI Simple Deduction
1511
+ VJ Leap of Reason
1512
+ VK Simple Deduction
1513
+ VL Strategy
1514
+ VM Pure Genius
1515
+ VN Inner Peace
1516
+ VO Life Giver
1517
+ VP Live Again
1518
+ VQ Miracle Worker
1519
+ VR The Final Cause
1520
+ VS Live Again
1521
+ VT Unseen Hands
1522
+ VU Lurking Threat
1523
+ VV Inner Circle
1524
+ VW Guild Member
1525
+ VX Sandman
1526
+ VY Never Here
1527
+ VZ Breaking Point
1528
+ WA Gossip Hound
1529
+ WB Gracious Guest
1530
+ WC Helping Hand
1531
+ WD More To Give
1532
+ WE Calloused Hands
1533
+ WF Scarred Bones
1534
+ WG Jaded World View
1535
+ WH Iron Kidney
1536
+ WI Pack Mule
1537
+ WJ Elementary!
1538
+ WK Eureka!
1539
+ WL Elementary!
1540
+ WM Brilliant!
1541
+ WN Genius!
1542
+ WO Excelsior!
1543
+ WP Elementary!
1544
+ WQ Shattered Psyche
1545
+ WR Duality
1546
+ WS Shattered Psyche
1547
+ WT Grave Mind
1548
+ WU Shattered Psyche
1549
+ WV Mental Breakdown
1550
+ WW Shattered Psyche
1551
+ WX My Little Friend
1552
+ WY Shattered Psyche
1553
+ WZ Been There Did That
1554
+ XA Dirty Connections
1555
+ XB Knows A Guy
1556
+ XC Owed Favors
1557
+ XD Prior Enemies
1558
+ XE Protection Racket
1559
+ XF Nimble Fingers
1560
+ XG Fence
1561
+ XH Running Numbers
1562
+ XI Well Shit
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: drpedia_lite
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.15
4
+ version: 0.0.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gloria Budiman
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-12-08 00:00:00.000000000 Z
11
+ date: 2016-12-21 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Extracts skills, strains, profession, and requirement trees into JSON
14
14
  email: wahyu.g@gmail.com
@@ -22,7 +22,7 @@ files:
22
22
  - lib/drpedia_lite.rb
23
23
  - lib/input/input.txt
24
24
  - lib/test.rb
25
- homepage: https://drpedia.herokuapp.com
25
+ homepage: https://drpediabeta.herokuapp.com
26
26
  licenses:
27
27
  - MIT
28
28
  metadata: {}