drpedia_lite 0.0.8 → 0.0.9
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 +4 -4
- data/lib/Builder.rb +3 -0
- data/lib/RawReader.rb +38 -9
- data/lib/Validator.rb +3 -2
- data/lib/input/input.txt +194 -81
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3051b6902a697edb2902ab63091951a235efa13a
|
|
4
|
+
data.tar.gz: 45ed72ee891c32a0249ce3b98592c56e776f3017
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 82a53bb9fe74239ad7d21419e3959b1fa01dfc2a24100c36b90ab126e5ffdeda01dbf197d7cf0ab575c917ee85b58126f165199b6d99d142940b899913841b6c
|
|
7
|
+
data.tar.gz: fb54d3a5b203ac29718e69a1ebc8dbfa3a07140326d7204651b729b8977d477d60b8a69df068d4e9c873417ba72ebf308366786e55de70e7794082b4d71a41e3
|
data/lib/Builder.rb
CHANGED
|
@@ -7,13 +7,16 @@ class Builder
|
|
|
7
7
|
def self.build input:, base_output_path:
|
|
8
8
|
raw_reader = RawReader.new filepath: input
|
|
9
9
|
Validator.new skill_list: raw_reader.skill_list,
|
|
10
|
+
skill_group: raw_reader.skill_group,
|
|
10
11
|
skill_cat: raw_reader.skill_cat,
|
|
11
12
|
strains: raw_reader.strains,
|
|
12
13
|
professions: raw_reader.professions
|
|
13
14
|
|
|
14
15
|
File.open(File.join(base_output_path, 'strains.json'), 'w') { |f| f.write raw_reader.strains.to_a.to_json }
|
|
15
16
|
File.open(File.join(base_output_path, 'professions.json'), 'w') { |f| f.write raw_reader.professions.to_a.to_json }
|
|
17
|
+
File.open(File.join(base_output_path, 'strain_restriction.json'), 'w') { |f| f.write raw_reader.strain_restrictions.to_json }
|
|
16
18
|
File.open(File.join(base_output_path, 'skill_cat.json'), 'w') { |f| f.write raw_reader.skill_cat.to_json }
|
|
19
|
+
File.open(File.join(base_output_path, 'skill_group.json'), 'w') { |f| f.write raw_reader.skill_group.to_json }
|
|
17
20
|
File.open(File.join(base_output_path, 'skill_list.json'), 'w') { |f| f.write raw_reader.skill_list.to_json }
|
|
18
21
|
end
|
|
19
22
|
end
|
data/lib/RawReader.rb
CHANGED
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
require 'set'
|
|
2
2
|
|
|
3
3
|
class RawReader
|
|
4
|
-
attr_reader :skill_list, :skill_cat, :strains, :professions
|
|
4
|
+
attr_reader :skill_list, :skill_cat, :strains, :professions, :strain_restrictions, :skill_group
|
|
5
5
|
STATE_TRANSITION = {
|
|
6
|
-
:undef => { pattern: /== Advantage Skill ==/,
|
|
7
|
-
:innate => { pattern: /== Innate Skill Prerequisite ==/,
|
|
8
|
-
:innate_preq => { pattern: /==
|
|
9
|
-
:
|
|
10
|
-
:
|
|
11
|
-
:
|
|
6
|
+
:undef => { pattern: /== Advantage Skill ==/, next: :innate },
|
|
7
|
+
:innate => { pattern: /== Innate Skill Prerequisite ==/, next: :innate_preq },
|
|
8
|
+
:innate_preq => { pattern: /== Strain Profession Restriction ==/, next: :strain_rtrs },
|
|
9
|
+
:strain_rtrs => { pattern: /== Open Skill ==/, next: :open },
|
|
10
|
+
:open => { pattern: /==/, next: :profession },
|
|
11
|
+
:profession => { pattern: /== Skill Group ==/, next: :skill_group },
|
|
12
|
+
:skill_group => { pattern: /== Skill List ==/, next: :list },
|
|
13
|
+
:list => { pattern: /./, next: :list }
|
|
12
14
|
}
|
|
13
15
|
|
|
14
16
|
def initialize filepath:
|
|
@@ -16,6 +18,8 @@ class RawReader
|
|
|
16
18
|
@skill_list = Hash.new
|
|
17
19
|
@skill_cat = Hash.new
|
|
18
20
|
@strains = Set.new
|
|
21
|
+
@strain_restrictions = Hash.new
|
|
22
|
+
@skill_group = Hash.new
|
|
19
23
|
@professions = Set.new
|
|
20
24
|
|
|
21
25
|
begin
|
|
@@ -76,8 +80,10 @@ private
|
|
|
76
80
|
case state
|
|
77
81
|
when :innate then process_innate_skills line: line
|
|
78
82
|
when :innate_preq then process_innate_preqs line: line
|
|
83
|
+
when :strain_rtrs then process_strain_restrictions line: line
|
|
79
84
|
when :open then process_open_skills line: line
|
|
80
85
|
when :profession then process_profession_skills line: line, profession: profession
|
|
86
|
+
when :skill_group then process_skill_group line: line
|
|
81
87
|
when :list then process_list_skills line: line
|
|
82
88
|
end
|
|
83
89
|
end
|
|
@@ -100,6 +106,24 @@ private
|
|
|
100
106
|
@skill_cat[skill][:innate_preq][strain] = preqs
|
|
101
107
|
end
|
|
102
108
|
|
|
109
|
+
def process_strain_restrictions line:
|
|
110
|
+
clusters = line.split(/:/)
|
|
111
|
+
strain = clusters[0].strip.to_sym
|
|
112
|
+
|
|
113
|
+
if !@strains.include?(strain)
|
|
114
|
+
raise KeyError, "Can't add profession restriction to non-excisting strain: #{strain}"
|
|
115
|
+
end
|
|
116
|
+
|
|
117
|
+
@strain_restrictions[strain] ||= Hash.new
|
|
118
|
+
clusters[1].split(/,/).each do |x|
|
|
119
|
+
@strain_restrictions[strain][x.strip.to_sym] = true
|
|
120
|
+
end
|
|
121
|
+
end
|
|
122
|
+
|
|
123
|
+
def process_skill_group line:
|
|
124
|
+
@skill_group[line.strip.to_sym] = Hash.new
|
|
125
|
+
end
|
|
126
|
+
|
|
103
127
|
def process_open_skills line:
|
|
104
128
|
line =~ /([\w\s\-\']+)(\d+)/
|
|
105
129
|
skill = $1.strip.to_sym
|
|
@@ -139,13 +163,18 @@ private
|
|
|
139
163
|
|
|
140
164
|
def process_list_skills line:
|
|
141
165
|
skill_code = line[0..1]
|
|
142
|
-
|
|
166
|
+
skill_clusters = line[3..-1].split(/\,/)
|
|
167
|
+
skill_name = skill_clusters[0].strip.to_sym
|
|
168
|
+
|
|
143
169
|
@skill_list[skill_name] = skill_code
|
|
170
|
+
if skill_clusters[1]
|
|
171
|
+
@skill_group[skill_clusters[1].strip.to_sym][skill_name] = true
|
|
172
|
+
end
|
|
144
173
|
end
|
|
145
174
|
|
|
146
175
|
def smart_insert strain: nil, skills: nil, open_skills: nil, profession_skills: nil
|
|
147
176
|
if strain and skills
|
|
148
|
-
strains.add strain
|
|
177
|
+
@strains.add strain
|
|
149
178
|
skills.each do |_skill|
|
|
150
179
|
next if _skill.strip.length == 0
|
|
151
180
|
skill = _skill.strip.to_sym
|
data/lib/Validator.rb
CHANGED
|
@@ -2,8 +2,9 @@ require 'test/unit/assertions'
|
|
|
2
2
|
|
|
3
3
|
class Validator
|
|
4
4
|
include Test::Unit::Assertions
|
|
5
|
-
def initialize skill_list:, skill_cat:, strains:, professions:
|
|
5
|
+
def initialize skill_list:, skill_group:, skill_cat:, strains:, professions:
|
|
6
6
|
@skill_list = skill_list
|
|
7
|
+
@skill_group = skill_group
|
|
7
8
|
@skill_cat = skill_cat
|
|
8
9
|
@strains = strains
|
|
9
10
|
@professions = professions
|
|
@@ -50,7 +51,7 @@ private
|
|
|
50
51
|
end
|
|
51
52
|
|
|
52
53
|
def is_in_list? _x
|
|
53
|
-
if @skill_list[_x] == nil
|
|
54
|
+
if @skill_list[_x] == nil && @skill_group[_x] == nil
|
|
54
55
|
puts "mismatched skill: #{_x}"
|
|
55
56
|
return false
|
|
56
57
|
end
|
data/lib/input/input.txt
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
== Advantage Skill ==
|
|
2
2
|
Baywalkers: Analyze Creature, Double-Tap, First Aide, Instruct, Literacy, Parry
|
|
3
3
|
Diesel Jocks: Balance, Bolt Action, Forging the Future, Patch Job, Trade Ties, Melee Weapon - Standard
|
|
4
|
-
Full Dead: Big Dig, Check Quality, Income, Lie, Literacy, Torture
|
|
4
|
+
Full Dead: Big Dig, Check Quality, Income I, Income II, Income III, Income IV, Income V, Lie, Literacy, Torture
|
|
5
5
|
Genjian: Analyze Creature, Bow, Brawling, Lore - Mon Histories, Melee Weapon - Standard, Sailing, Throwing
|
|
6
6
|
Iron Slaves: Brawling, Carry, Escape Bonds, Iron Fists, Refuse, Rescue, Scrounge
|
|
7
7
|
Lascarians: Alert, Blind Fighting, Chase, Chop, Force Barricade, Melee Weapon - Small, Scrounge, Take Down
|
|
8
8
|
Mericans: Bolt Action, Brawling, Melee Weapon - Large, Melee Weapon - Two Handed, Throwing, Throwing - Javelins
|
|
9
9
|
Nation of Accensor: Building Tomorrow, Challenge, Faith Healing, First Aide, Mind Resistance, Patch Job
|
|
10
10
|
Natural Ones: Cure Toxins, Melee Weapon - Large, Melee Weapon - Small, Melee Weapon - Standard, Melee Weapon - Two Handed, Throwing, Throwing - Javelins
|
|
11
|
-
Pure Blood: Backstab, Bolt Action, Charisma, Cheat, Check Value, Income, Literacy
|
|
11
|
+
Pure Blood: Backstab, Bolt Action, Charisma, Cheat, Check Value, Income I, Income II, Income III, Income IV, Income V, Literacy
|
|
12
12
|
Reclaimers: Balance, Carry, Charge, Melee Weapon - Standard, Hunter's Mark, Avoid
|
|
13
13
|
The Red Star: Avoid, Barricade, Bomb Awareness, Brewing, Fearful Glare, Frightening Force, Melee Weapon - Large
|
|
14
14
|
Remnants:
|
|
@@ -16,7 +16,7 @@ Retrogrades: Barricade, Cover of Night, Disguise, Escape Bonds, Feign Death, Mel
|
|
|
16
16
|
Rovers: Bartender's Tongue, Check Your Sleeves, Head Shrink, Melee Weapon - Small, Refuse, Scrounge
|
|
17
17
|
Saltwise: Sailing, Fishing, Lore - Animals - Aquatic, Melee Weapon - Small, Guild Membership, Lie, Escape Bonds
|
|
18
18
|
Semper Mort: Brawling, Charisma, Chase, Iron Fists, Nerve Punch, Tie Binds
|
|
19
|
-
Solestros: Income, Deep Pockets, Literacy, Charisma, Balance, Melee Weapon - Standard, Refuse
|
|
19
|
+
Solestros: Income I, Income II, Income III, Income IV, Income V, Deep Pockets, Literacy, Charisma, Balance, Melee Weapon - Standard, Refuse
|
|
20
20
|
Unborn of Teixiptla: Melee Weapon - Two Handed, Psionic Skill - Basic, Throwing - Javelins
|
|
21
21
|
Vegasians: Backstab, Black Market Connections, Cheat, Entertain, Lie, Literacy
|
|
22
22
|
Yorker: Barricade, Bomb Awareness, Chase, Entertain, Interfere, Melee Weapon - Standard
|
|
@@ -24,6 +24,9 @@ Yorker: Barricade, Bomb Awareness, Chase, Entertain, Interfere, Melee Weapon - S
|
|
|
24
24
|
== Innate Skill Prerequisite ==
|
|
25
25
|
Iron Slaves: Iron Fists: Brawling
|
|
26
26
|
|
|
27
|
+
== Strain Profession Restriction ==
|
|
28
|
+
Mericans: Martial Artist, Spy
|
|
29
|
+
|
|
27
30
|
== Open Skill ==
|
|
28
31
|
Avoid 9
|
|
29
32
|
Barricade 9
|
|
@@ -72,7 +75,11 @@ Charisma 3
|
|
|
72
75
|
Check Quality 3
|
|
73
76
|
Check Value 3
|
|
74
77
|
Feign Death 6
|
|
75
|
-
Income 3
|
|
78
|
+
Income I 3
|
|
79
|
+
Income II 3 Income I
|
|
80
|
+
Income III 3 Income II
|
|
81
|
+
Income IV 3 Income III
|
|
82
|
+
Income V 3 Income IV
|
|
76
83
|
Instruct 3 Teach
|
|
77
84
|
Melee Weapon - Standard 3
|
|
78
85
|
Pistol Whip 3
|
|
@@ -102,7 +109,11 @@ Charisma 6
|
|
|
102
109
|
Disguise Contents 3 Healthy Feast
|
|
103
110
|
Educated 3 Literacy
|
|
104
111
|
Healthy Feast 3 Prepare Meal
|
|
105
|
-
Income 3
|
|
112
|
+
Income I 3
|
|
113
|
+
Income II 3 Income I
|
|
114
|
+
Income III 3 Income II
|
|
115
|
+
Income IV 3 Income III
|
|
116
|
+
Income V 3 Income IV
|
|
106
117
|
Instruct 3 Teach
|
|
107
118
|
Literacy 3
|
|
108
119
|
Nail 3 Throwing
|
|
@@ -121,7 +132,11 @@ Brewing 6 Analyze Compound
|
|
|
121
132
|
Check Quality 3
|
|
122
133
|
Cure Toxins 3
|
|
123
134
|
Educated 6 Literacy
|
|
124
|
-
Income 3
|
|
135
|
+
Income I 3
|
|
136
|
+
Income II 3 Income I
|
|
137
|
+
Income III 3 Income II
|
|
138
|
+
Income IV 3 Income III
|
|
139
|
+
Income V 3 Income IV
|
|
125
140
|
Literacy 3
|
|
126
141
|
Melee Weapon - Large 3
|
|
127
142
|
Melee Weapon - Standard 3
|
|
@@ -135,7 +150,11 @@ Cure Toxins 6 Literacy
|
|
|
135
150
|
Educated 6 Literacy
|
|
136
151
|
First Aide 3
|
|
137
152
|
Fix Limb 3
|
|
138
|
-
Income 3
|
|
153
|
+
Income I 3
|
|
154
|
+
Income II 3 Income I
|
|
155
|
+
Income III 3 Income II
|
|
156
|
+
Income IV 3 Income III
|
|
157
|
+
Income V 3 Income IV
|
|
139
158
|
Literacy 3
|
|
140
159
|
Mangle Limb 3
|
|
141
160
|
Medical Assistance 6 Literacy
|
|
@@ -152,7 +171,11 @@ Chop 6
|
|
|
152
171
|
Florentine 6
|
|
153
172
|
Force Barricade 3
|
|
154
173
|
Forging the Future 6
|
|
155
|
-
Income 3
|
|
174
|
+
Income I 3
|
|
175
|
+
Income II 3 Income I
|
|
176
|
+
Income III 3 Income II
|
|
177
|
+
Income IV 3 Income III
|
|
178
|
+
Income V 3 Income IV
|
|
156
179
|
Literacy 3
|
|
157
180
|
Melee Weapon - Small 3
|
|
158
181
|
Patch Job 3
|
|
@@ -171,7 +194,11 @@ Check Value 3
|
|
|
171
194
|
Disarming Blow 6 Melee Weapon - Small | Melee Weapon - Standard | Melee Weapon - Large | Melee Weapon - Two Handed
|
|
172
195
|
Entertain 6
|
|
173
196
|
Head Shrink 6 Entertain
|
|
174
|
-
Income 3
|
|
197
|
+
Income I 3
|
|
198
|
+
Income II 3 Income I
|
|
199
|
+
Income III 3 Income II
|
|
200
|
+
Income IV 3 Income III
|
|
201
|
+
Income V 3 Income IV
|
|
175
202
|
Lie 3
|
|
176
203
|
Melee Weapon - Standard 3
|
|
177
204
|
Refuse 3
|
|
@@ -187,7 +214,11 @@ Carry 3
|
|
|
187
214
|
Chase 3
|
|
188
215
|
Crop Tending 3
|
|
189
216
|
First Aide 3
|
|
190
|
-
Income 3 Crop Tending
|
|
217
|
+
Income I 3 Crop Tending
|
|
218
|
+
Income II 3 Income I
|
|
219
|
+
Income III 3 Income II
|
|
220
|
+
Income IV 3 Income III
|
|
221
|
+
Income V 3 Income IV
|
|
191
222
|
Melee Weapon - Standard 3
|
|
192
223
|
Take Down 6 Brawling
|
|
193
224
|
Throwing 3
|
|
@@ -264,7 +295,11 @@ Building Tomorrow 6
|
|
|
264
295
|
Check Quality 3
|
|
265
296
|
Check Value 3
|
|
266
297
|
Fade In A Crowd 3
|
|
267
|
-
Income 6
|
|
298
|
+
Income I 6
|
|
299
|
+
Income II 6 Income I
|
|
300
|
+
Income III 6 Income II
|
|
301
|
+
Income IV 6 Income III
|
|
302
|
+
Income V 6 Income IV
|
|
268
303
|
Patch Job 3
|
|
269
304
|
Rescue 3
|
|
270
305
|
SCIENCE! 6 Patch Job
|
|
@@ -311,7 +346,11 @@ Black Market Connections 6
|
|
|
311
346
|
Bomb Awareness 6 Literacy
|
|
312
347
|
Building Tomorrow 6
|
|
313
348
|
First Aide 3
|
|
314
|
-
Income 6
|
|
349
|
+
Income I 6
|
|
350
|
+
Income II 6 Income I
|
|
351
|
+
Income III 6 Income II
|
|
352
|
+
Income IV 6 Income III
|
|
353
|
+
Income V 6 Income IV
|
|
315
354
|
Literacy 3
|
|
316
355
|
Melee Weapon - Two Handed 3
|
|
317
356
|
Mind Resistance 6
|
|
@@ -350,7 +389,11 @@ Check Value 6
|
|
|
350
389
|
Check Your Sleeves 3
|
|
351
390
|
Disguise 6
|
|
352
391
|
Fade In A Crowd 3
|
|
353
|
-
Income 3
|
|
392
|
+
Income I 3
|
|
393
|
+
Income II 3 Income I
|
|
394
|
+
Income III 3 Income II
|
|
395
|
+
Income IV 3 Income III
|
|
396
|
+
Income V 3 Income IV
|
|
354
397
|
Lie 3
|
|
355
398
|
|
|
356
399
|
== Officer ==
|
|
@@ -383,8 +426,12 @@ Escape 3
|
|
|
383
426
|
Escape Bonds 3
|
|
384
427
|
Literacy 3
|
|
385
428
|
Melee Weapon - Small 3
|
|
386
|
-
Income 3
|
|
387
|
-
|
|
429
|
+
Income I 3
|
|
430
|
+
Income II 3 Income I
|
|
431
|
+
Income III 3 Income II
|
|
432
|
+
Income IV 3 Income III
|
|
433
|
+
Income V 3 Income IV
|
|
434
|
+
Lie 6 Income I
|
|
388
435
|
|
|
389
436
|
== Priest ==
|
|
390
437
|
Avoid 3
|
|
@@ -428,7 +475,11 @@ Charisma 6
|
|
|
428
475
|
Educated 3 Literacy
|
|
429
476
|
Escape 6
|
|
430
477
|
Fade In A Crowd 3
|
|
431
|
-
Income 3
|
|
478
|
+
Income I 3
|
|
479
|
+
Income II 3 Income I
|
|
480
|
+
Income III 3 Income II
|
|
481
|
+
Income IV 3 Income III
|
|
482
|
+
Income V 3 Income IV
|
|
432
483
|
Instruct 3
|
|
433
484
|
Literacy 3
|
|
434
485
|
Mind Resistance 3 Educated
|
|
@@ -460,7 +511,11 @@ Check Your Sleeves 6
|
|
|
460
511
|
Deep Pockets 6
|
|
461
512
|
Entertain 6 Charisma
|
|
462
513
|
First Aide 3
|
|
463
|
-
Income 6
|
|
514
|
+
Income I 6
|
|
515
|
+
Income II 6 Income I
|
|
516
|
+
Income III 6 Income II
|
|
517
|
+
Income IV 6 Income III
|
|
518
|
+
Income V 6 Income IV
|
|
464
519
|
Literacy 3
|
|
465
520
|
Medical Assistance 6 First Aide
|
|
466
521
|
Melee Weapon - Small 3
|
|
@@ -474,7 +529,11 @@ Brawling 3
|
|
|
474
529
|
Challenge 6
|
|
475
530
|
Charge 3
|
|
476
531
|
First Aide 3
|
|
477
|
-
Income 3
|
|
532
|
+
Income I 3
|
|
533
|
+
Income II 3 Income I
|
|
534
|
+
Income III 3 Income II
|
|
535
|
+
Income IV 3 Income III
|
|
536
|
+
Income V 3 Income IV
|
|
478
537
|
Iron Fists 6 Brawling
|
|
479
538
|
Knockout 6 Take Down
|
|
480
539
|
Nerve Punch 3
|
|
@@ -494,7 +553,11 @@ Cheat 3
|
|
|
494
553
|
Check Value 3
|
|
495
554
|
Chop 3
|
|
496
555
|
Disguise 3
|
|
497
|
-
Income 3
|
|
556
|
+
Income I 3
|
|
557
|
+
Income II 3 Income I
|
|
558
|
+
Income III 3 Income II
|
|
559
|
+
Income IV 3 Income III
|
|
560
|
+
Income V 3 Income IV
|
|
498
561
|
Mangle Limb 6 Melee Weapon - Standard
|
|
499
562
|
Melee Weapon - Standard 3
|
|
500
563
|
Scatter Shot 6 Bolt Action
|
|
@@ -509,7 +572,11 @@ Check Status 3
|
|
|
509
572
|
Cure Toxins 3
|
|
510
573
|
First Aide 3
|
|
511
574
|
Guild Membership 9 Black Market Connections & Interrogate
|
|
512
|
-
Income 3
|
|
575
|
+
Income I 3
|
|
576
|
+
Income II 3 Income I
|
|
577
|
+
Income III 3 Income II
|
|
578
|
+
Income IV 3 Income III
|
|
579
|
+
Income V 3 Income IV
|
|
513
580
|
Interfere 3 Rescue
|
|
514
581
|
Interrogate 6 Melee Weapon - Small
|
|
515
582
|
Literacy 3
|
|
@@ -595,7 +662,11 @@ Escape Bonds 3
|
|
|
595
662
|
Fade In A Crowd 6
|
|
596
663
|
Feign Death 3
|
|
597
664
|
Guild Membership 6 Unlock & Lie
|
|
598
|
-
Income 3
|
|
665
|
+
Income I 3
|
|
666
|
+
Income II 3 Income I
|
|
667
|
+
Income III 3 Income II
|
|
668
|
+
Income IV 3 Income III
|
|
669
|
+
Income V 3 Income IV
|
|
599
670
|
Lie 3
|
|
600
671
|
Scrounge 6
|
|
601
672
|
Unlock 3
|
|
@@ -658,13 +729,24 @@ Educated 3 Literacy
|
|
|
658
729
|
Improved Armor/Shield 6 Educated
|
|
659
730
|
Improved Pistol/Bow 6 Educated
|
|
660
731
|
Improved Weapon 6 Educated
|
|
661
|
-
Income 3
|
|
732
|
+
Income I 3
|
|
733
|
+
Income II 3 Income I
|
|
734
|
+
Income III 3 Income II
|
|
735
|
+
Income IV 3 Income III
|
|
736
|
+
Income V 3 Income IV
|
|
662
737
|
Literacy 3
|
|
663
738
|
Master Craftsman 6 Improved Armor/Shield & Improved Pistol/Bow & Improved Weapon
|
|
664
739
|
Patch Job 3
|
|
665
740
|
Repair 3
|
|
666
741
|
SCIENCE! 6 Educated
|
|
667
742
|
|
|
743
|
+
== Skill Group ==
|
|
744
|
+
Lore
|
|
745
|
+
Psionic Skill - Basic
|
|
746
|
+
Psionic Skill - Intermediate
|
|
747
|
+
Psionic Skill - Advanced
|
|
748
|
+
Income
|
|
749
|
+
|
|
668
750
|
== Skill List ==
|
|
669
751
|
AA Alert
|
|
670
752
|
AB Analyze Compound
|
|
@@ -743,7 +825,11 @@ CV Hunter's Mark
|
|
|
743
825
|
CW Improved Armor/Shield
|
|
744
826
|
CX Improved Pistol/Bow
|
|
745
827
|
CY Improved Weapon
|
|
746
|
-
CZ Income
|
|
828
|
+
CZ Income I, Income
|
|
829
|
+
PA Income II, Income
|
|
830
|
+
PB Income III, Income
|
|
831
|
+
PC Income IV, Income
|
|
832
|
+
PD Income V, Income
|
|
747
833
|
DA Instruct
|
|
748
834
|
DB Interfere
|
|
749
835
|
DC Interrogate
|
|
@@ -752,61 +838,60 @@ DE Knock Down
|
|
|
752
838
|
DF Knockout
|
|
753
839
|
DG Lie
|
|
754
840
|
DH Literacy
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
FK Lore - Strain - Yorker
|
|
841
|
+
DJ Lore - Local Area, Lore
|
|
842
|
+
DK Lore - Animals - Aquatic, Lore
|
|
843
|
+
DL Lore - Animals - Aviary, Lore
|
|
844
|
+
DM Lore - Animals - Mutated, Lore
|
|
845
|
+
DN Lore - Animals - Subterranean, Lore
|
|
846
|
+
DO Lore - Animals - Terra Firma, Lore
|
|
847
|
+
DP Lore - Faith - Church of Darwin, Lore
|
|
848
|
+
DQ Lore - Faith - Cult of Fallow Hopes, Lore
|
|
849
|
+
DR Lore - Faith - Final Knight, Lore
|
|
850
|
+
DS Lore - Faith - Light of Hedon, Lore
|
|
851
|
+
DT Lore - Faith - Minor Cults and Sects, Lore
|
|
852
|
+
DU Lore - Faith - Nuclear Family, Lore
|
|
853
|
+
DV Lore - Faith - Sainthood of Ashes, Lore
|
|
854
|
+
DW Lore - Faith - Telling Visions, Lore
|
|
855
|
+
DX Lore - Faith - Tribes of the Seasons, Lore
|
|
856
|
+
DY Lore - Grave Mind, Lore
|
|
857
|
+
DZ Lore - History - Cinema and Entertainment Television, Lore
|
|
858
|
+
EA Lore - History - Fictional Literature, Lore
|
|
859
|
+
EB Lore - History - Music, Lore
|
|
860
|
+
EC Lore - Medical - Diseases and Plagues, Lore
|
|
861
|
+
ED Lore - Medical - Grave Mind Infection, Lore
|
|
862
|
+
EE Lore - Medical - Grave Robber Processesv
|
|
863
|
+
EF Lore - Metallurgy, Lore
|
|
864
|
+
EG Lore - Mining, Lore
|
|
865
|
+
EH Lore - Mon Histories, Lore
|
|
866
|
+
EI Lore - Nature - Herbs, Lore
|
|
867
|
+
EJ Lore - Nature - Minerals and Refined Materials, Lore
|
|
868
|
+
EK Lore - Pre-Fall History Ancient, Lore
|
|
869
|
+
EL Lore - Pre-Fall History Cultural, Lore
|
|
870
|
+
EM Lore - Pre-Fall History Modern, Lore
|
|
871
|
+
EN Lore - Pre-Fall History Religion, Lore
|
|
872
|
+
EO Lore - Meditation, Lore
|
|
873
|
+
EP Lore - Raider, Lore
|
|
874
|
+
EQ Lore - Slaver Communities, Lore
|
|
875
|
+
ER Lore - Strain - Nation of Accensor, Lore
|
|
876
|
+
ES Lore - Strain - Baywalker, Lore
|
|
877
|
+
ET Lore - Strain - Diesel Jock, Lore
|
|
878
|
+
EU Lore - Strain - Full Dead, Lore
|
|
879
|
+
EV Lore - Strain - Genjian, Lore
|
|
880
|
+
EW Lore - Strain - Iron Slave, Lore
|
|
881
|
+
EX Lore - Strain - Lascarian, Lore
|
|
882
|
+
EY Lore - Strain - Merican, Lore
|
|
883
|
+
EZ Lore - Strain - Natural One, Lore
|
|
884
|
+
FA Lore - Strain - Pure Blood, Lore
|
|
885
|
+
FB Lore - Strain - Reclaimers, Lore
|
|
886
|
+
FC Lore - Strain - Red Star, Lore
|
|
887
|
+
FD Lore - Strain - Remnant, Lore
|
|
888
|
+
FE Lore - Strain - Retrograde, Lore
|
|
889
|
+
FF Lore - Strain - Rover, Lore
|
|
890
|
+
FG Lore - Strain - Salt Wise, Lore
|
|
891
|
+
FH Lore - Strain - Solestros, Lore
|
|
892
|
+
FI Lore - Strain - Unborn of Teixiptla, Lore
|
|
893
|
+
FJ Lore - Strain - Vegasians, Lore
|
|
894
|
+
FK Lore - Strain - Yorker, Lore
|
|
810
895
|
FL Lore - Tech - Combustion Power
|
|
811
896
|
FM Lore - Tech - Natural Power
|
|
812
897
|
FN Lore - Tech - Nuclear Power
|
|
@@ -837,9 +922,37 @@ GL Pick Pockets
|
|
|
837
922
|
GM Pistol Whip
|
|
838
923
|
GN Prepare Meal
|
|
839
924
|
GO Pray for Justice
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
925
|
+
PE Jolt, Psionic Skill - Basic
|
|
926
|
+
PF Limited Telekinesis, Psionic Skill - Basic
|
|
927
|
+
PG Memory Lapse, Psionic Skill - Basic
|
|
928
|
+
PH Mind Push, Psionic Skill - Basic
|
|
929
|
+
PI Nightmare, Psionic Skill - Basic
|
|
930
|
+
PJ Paralysis, Psionic Skill - Basic
|
|
931
|
+
PK Pyro, Psionic Skill - Basic
|
|
932
|
+
PL Seeing Double, Psionic Skill - Basic
|
|
933
|
+
PM Slowed Steps, Psionic Skill - Basic
|
|
934
|
+
PN Toys in the Attic, Psionic Skill - Basic
|
|
935
|
+
PO Tranquility, Psionic Skill - Basic
|
|
936
|
+
PQ Trickster’s Mind, Psionic Skill - Basic
|
|
937
|
+
PR Berserker Mind, Psionic Skill - Intermediate
|
|
938
|
+
PS Body Lock, Psionic Skill - Intermediate
|
|
939
|
+
PT Body of Mind, Psionic Skill - Intermediate
|
|
940
|
+
PU Body Puppet, Psionic Skill - Intermediate
|
|
941
|
+
PV Echoes, Psionic Skill - Intermediate
|
|
942
|
+
PW Engulf, Psionic Skill - Intermediate
|
|
943
|
+
PX Living Death, Psionic Skill - Intermediate
|
|
944
|
+
PY Major Telekinesis, Psionic Skill - Intermediate
|
|
945
|
+
PZ Propulsion, Psionic Skill - Intermediate
|
|
946
|
+
QA Psionic Surgeon, Psionic Skill - Intermediate
|
|
947
|
+
QB Sense of Sins, Psionic Skill - Intermediate
|
|
948
|
+
QC Whisper Walk, Psionic Skill - Intermediate
|
|
949
|
+
QD Maelstrom, Psionic Skill - Advanced
|
|
950
|
+
QE Mental Armor, Psionic Skill - Advanced
|
|
951
|
+
QF Mental Glossary, Psionic Skill - Advanced
|
|
952
|
+
QG Mind of a Killer, Psionic Skill - Advanced
|
|
953
|
+
QH Mind Shield, Psionic Skill - Advanced
|
|
954
|
+
QI Psychic Cleanse, Psionic Skill - Advanced
|
|
955
|
+
QJ Sundered Mind, Psionic Skill - Advanced
|
|
843
956
|
GS Refuse
|
|
844
957
|
GT Repair
|
|
845
958
|
GU Rescue
|
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.
|
|
4
|
+
version: 0.0.9
|
|
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-11-
|
|
11
|
+
date: 2016-11-20 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
|