gloomhaven 0.1.0 → 1.0.0
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/Gemfile.lock +1 -1
- data/README.md +66 -17
- data/config/cards.yml +240 -25
- data/config/characters.yml +214 -0
- data/config/perks.yml +555 -0
- data/lib/gloomhaven/card.rb +19 -26
- data/lib/gloomhaven/deck.rb +7 -7
- data/lib/gloomhaven/perk.rb +32 -0
- data/lib/gloomhaven/player.rb +52 -0
- data/lib/gloomhaven/version.rb +1 -1
- data/lib/gloomhaven.rb +11 -1
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6d14db66eb90122e3ef7393a10f9df67a9f2fec7aa484f621c5553fa0e22c3a2
|
4
|
+
data.tar.gz: a4ba1ac7c6a34e1ba8007377a4499dd928d5620aa3cf010bfd389cb9348552a2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: af98374991123f3fea18d49058df6a64272513af1e0dc53a3c3311f2a168c80a8b72f97267c3ce9228773c806988b74729c9e71effb9f8c589c0b3fd6500c074
|
7
|
+
data.tar.gz: ddd0c2ba52b197572fffe7ef8d437d2a4e0140637e8e26f607e26c234fb0cbc5d72929db385d342b121fb3de13ef214514272d73850e4e720b7c9983b76f7cb3
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,8 +1,6 @@
|
|
1
1
|
# Gloomhaven
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
3
|
+
Ruby gem for generating Gloomhaven characters and ability decks.
|
6
4
|
|
7
5
|
## Installation
|
8
6
|
|
@@ -22,19 +20,70 @@ Or install it yourself as:
|
|
22
20
|
|
23
21
|
## Usage
|
24
22
|
|
25
|
-
|
26
|
-
|
27
|
-
## Development
|
28
|
-
|
29
|
-
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
|
-
|
31
|
-
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
23
|
+
### Basic useage
|
32
24
|
|
33
|
-
|
25
|
+
#### Deck
|
26
|
+
Create a `Gloomhaven::Deck` `@deck` object to create a standard 20-`Gloomhaven::Card` modifier deck.
|
34
27
|
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
28
|
+
```
|
29
|
+
require 'gloomhaven'
|
30
|
+
|
31
|
+
@deck = Gloomhaven::Deck.new
|
32
|
+
=> #<Gloomhaven::Deck>
|
33
|
+
|
34
|
+
# shuffle the deck to start
|
35
|
+
@deck.shuffle!
|
36
|
+
|
37
|
+
@deck.cards.count
|
38
|
+
=> 20
|
39
|
+
|
40
|
+
# draw some cards
|
41
|
+
@deck.draw
|
42
|
+
=> #<Gloomhaven::Card @name="Attack +1", @attack=1, @crit=false, @miss=false, @rolling=false, @shuffle=false>
|
43
|
+
|
44
|
+
# check the deck size, it's decreased
|
45
|
+
@deck.cards.count
|
46
|
+
=> 19
|
47
|
+
|
48
|
+
# Let's bless and curse the deck
|
49
|
+
@deck.bless!
|
50
|
+
@deck.curse!
|
51
|
+
|
52
|
+
# confirm we added two new cards
|
53
|
+
@deck.cards.count
|
54
|
+
=> 21
|
55
|
+
|
56
|
+
# let's shuffle the deck again and return the first card we drew
|
57
|
+
@deck.shuffle!
|
58
|
+
|
59
|
+
# final count of a shuffled deck w/ 1 bless, 1 curse
|
60
|
+
@deck.cards.size
|
61
|
+
=> 22
|
62
|
+
|
63
|
+
# and let's look at the cards
|
64
|
+
@deck.cards.to_a
|
65
|
+
[
|
66
|
+
#<Gloomhaven::Card @name="Attack +0", @attack=0, @crit=false, @miss=false, @rolling=false, @shuffle=false>,
|
67
|
+
#<Gloomhaven::Card @name="Attack -2", @attack=-2, @crit=false, @miss=false, @rolling=false, @shuffle=false>,
|
68
|
+
#<Gloomhaven::Card @name="Attack +1", @attack=1, @crit=false, @miss=false, @rolling=false, @shuffle=false>,
|
69
|
+
#<Gloomhaven::Card @name="Bless", @attack=0, @crit=true, @miss=false, @rolling=false, @shuffle=false>,
|
70
|
+
#<Gloomhaven::Card @name="Curse", @attack=0, @crit=false, @miss=true, @rolling=false, @shuffle=false>,
|
71
|
+
#<Gloomhaven::Card @name="Attack +2", @attack=2, @crit=false, @miss=false, @rolling=false, @shuffle=false>,
|
72
|
+
#<Gloomhaven::Card @name="Attack +0", @attack=0, @crit=false, @miss=false, @rolling=false, @shuffle=false>,
|
73
|
+
#<Gloomhaven::Card @name="Attack +0", @attack=0, @crit=false, @miss=false, @rolling=false, @shuffle=false>,
|
74
|
+
#<Gloomhaven::Card @name="Attack -1", @attack=-1, @crit=false, @miss=false, @rolling=false, @shuffle=false>,
|
75
|
+
#<Gloomhaven::Card @name="Attack +0", @attack=0, @crit=false, @miss=false, @rolling=false, @shuffle=false>,
|
76
|
+
#<Gloomhaven::Card @name="Attack -1", @attack=-1, @crit=false, @miss=false, @rolling=false, @shuffle=false>,
|
77
|
+
#<Gloomhaven::Card @name="Attack -1", @attack=-1, @crit=false, @miss=false, @rolling=false, @shuffle=false>,
|
78
|
+
#<Gloomhaven::Card @name="Attack +0", @attack=0, @crit=false, @miss=false, @rolling=false, @shuffle=false>,
|
79
|
+
#<Gloomhaven::Card @name="Attack -1", @attack=-1, @crit=false, @miss=false, @rolling=false, @shuffle=false>,
|
80
|
+
#<Gloomhaven::Card @name="Attack +1", @attack=1, @crit=false, @miss=false, @rolling=false, @shuffle=false>,
|
81
|
+
#<Gloomhaven::Card @name="Attack -1", @attack=-1, @crit=false, @miss=false, @rolling=false, @shuffle=false>,
|
82
|
+
#<Gloomhaven::Card @name="Null", @attack=0, @crit=false, @miss=true, @rolling=false, @shuffle=true>,
|
83
|
+
#<Gloomhaven::Card @name="Attack +0", @attack=0, @crit=false, @miss=false, @rolling=false, @shuffle=false>,
|
84
|
+
#<Gloomhaven::Card @name="Attack +1", @attack=1, @crit=false, @miss=false, @rolling=false, @shuffle=false>,
|
85
|
+
#<Gloomhaven::Card @name="2x", @attack=0, @crit=true, @miss=false, @rolling=false, @shuffle=true>,
|
86
|
+
#<Gloomhaven::Card @name="Attack +1", @attack=1, @crit=false, @miss=false, @rolling=false, @shuffle=false>,
|
87
|
+
#<Gloomhaven::Card @name="Attack +1", @attack=1, @crit=false, @miss=false, @rolling=false, @shuffle=false>
|
88
|
+
]
|
89
|
+
```
|
data/config/cards.yml
CHANGED
@@ -1,43 +1,258 @@
|
|
1
1
|
---
|
2
|
-
|
2
|
+
-
|
3
|
+
name: '2x'
|
4
|
+
attack: 0
|
5
|
+
crit: true
|
6
|
+
shuffle: true
|
7
|
+
starting_count: 1
|
8
|
+
-
|
3
9
|
name: 'Attack +0'
|
4
10
|
attack: 0
|
5
11
|
starting_count: 6
|
6
|
-
|
12
|
+
-
|
13
|
+
name: 'Attack +0 Add Target'
|
14
|
+
attack: 0
|
15
|
+
add_target: true
|
16
|
+
-
|
17
|
+
name: 'Attack +0 Air'
|
18
|
+
attack: 0
|
19
|
+
air: true
|
20
|
+
-
|
21
|
+
name: 'Attack +0 Curse'
|
22
|
+
attack: 0
|
23
|
+
curse: true
|
24
|
+
-
|
25
|
+
name: 'Attack +0 Fire'
|
26
|
+
attack: 0
|
27
|
+
fire: true
|
28
|
+
-
|
29
|
+
name: 'Attack +0 Ice'
|
30
|
+
attack: 0
|
31
|
+
ice: true
|
32
|
+
-
|
33
|
+
name: 'Attack +0 Nature'
|
34
|
+
attack: 0
|
35
|
+
nature: true
|
36
|
+
-
|
37
|
+
name: 'Attack +0 Refresh item'
|
38
|
+
attack: 0
|
39
|
+
refresh_item: true
|
40
|
+
-
|
41
|
+
name: 'Attack +0 Stun'
|
42
|
+
attack: 0
|
43
|
+
stun: true
|
44
|
+
-
|
7
45
|
name: 'Attack +1'
|
8
46
|
attack: 1
|
9
47
|
starting_count: 5
|
10
|
-
|
11
|
-
name: 'Attack
|
12
|
-
attack:
|
13
|
-
|
14
|
-
|
48
|
+
-
|
49
|
+
name: 'Attack +1 Air'
|
50
|
+
attack: 1
|
51
|
+
air: true
|
52
|
+
-
|
53
|
+
name: 'Attack +1 Dark'
|
54
|
+
attack: 1
|
55
|
+
dark: true
|
56
|
+
-
|
57
|
+
name: 'Attack +1 Disarm'
|
58
|
+
attack: 1
|
59
|
+
disarm: true
|
60
|
+
-
|
61
|
+
name: 'Attack +1 Heal +2'
|
62
|
+
attack: 2
|
63
|
+
heal: 2
|
64
|
+
-
|
65
|
+
name: 'Attack +1 Immobilize'
|
66
|
+
attack: 1
|
67
|
+
immobilize: true
|
68
|
+
-
|
69
|
+
name: 'Attack +1 Invisible'
|
70
|
+
attack: 1
|
71
|
+
invisible: true
|
72
|
+
-
|
73
|
+
name: 'Attack +1 Poison'
|
74
|
+
attack: 1
|
75
|
+
poison: true
|
76
|
+
-
|
77
|
+
name: 'Attack +1 Push 1'
|
78
|
+
attack: 1
|
79
|
+
push: 1
|
80
|
+
-
|
81
|
+
name: 'Attack +1 Shield 1'
|
82
|
+
attack: 1
|
83
|
+
shield: 1
|
84
|
+
-
|
85
|
+
name: 'Attack +1 Wound'
|
86
|
+
attack: 1
|
87
|
+
wound: true
|
88
|
+
-
|
15
89
|
name: 'Attack +2'
|
16
90
|
attack: 2
|
17
91
|
starting_count: 1
|
18
|
-
|
92
|
+
-
|
93
|
+
name: 'Attack +2 Fire'
|
94
|
+
attack: 2
|
95
|
+
fire: true
|
96
|
+
-
|
97
|
+
name: 'Attack +2 Ice'
|
98
|
+
attack: 2
|
99
|
+
ice: true
|
100
|
+
-
|
101
|
+
name: 'Attack +2 Muddle'
|
102
|
+
attack: 2
|
103
|
+
muddle: true
|
104
|
+
-
|
105
|
+
name: 'Attack +2 Poison'
|
106
|
+
attack: 2
|
107
|
+
poison: true
|
108
|
+
-
|
109
|
+
name: 'Attack +2 Wound'
|
110
|
+
attack: 2
|
111
|
+
wound: true
|
112
|
+
-
|
113
|
+
name: 'Attack +3'
|
114
|
+
attack: 3
|
115
|
+
-
|
116
|
+
name: 'Attack +3 Muddle'
|
117
|
+
attack: 3
|
118
|
+
muddle: true
|
119
|
+
-
|
120
|
+
name: 'Attack +4'
|
121
|
+
attack: 4
|
122
|
+
-
|
123
|
+
name: 'Attack -1'
|
124
|
+
attack: -1
|
125
|
+
starting_count: 5
|
126
|
+
-
|
127
|
+
name: 'Attack -1 Dark'
|
128
|
+
attack: -1
|
129
|
+
dark: true
|
130
|
+
-
|
19
131
|
name: 'Attack -2'
|
20
132
|
attack: -2
|
21
133
|
starting_count: 1
|
22
|
-
|
23
|
-
name: '
|
24
|
-
attack: 0
|
25
|
-
starting_count: 1
|
26
|
-
shuffle: true
|
27
|
-
miss: true
|
28
|
-
7: &crit_hit
|
29
|
-
name: '2x'
|
134
|
+
-
|
135
|
+
name: 'Bless'
|
30
136
|
attack: 0
|
31
|
-
starting_count: 1
|
32
|
-
shuffle: true
|
33
137
|
crit: true
|
34
|
-
8:
|
35
|
-
<<: *crit_miss
|
36
|
-
name: 'Curse'
|
37
138
|
shuffle: false
|
38
139
|
starting_count: 0
|
39
|
-
|
40
|
-
|
41
|
-
|
140
|
+
-
|
141
|
+
name: 'Curse'
|
142
|
+
attack: 0
|
143
|
+
miss: true
|
42
144
|
shuffle: false
|
43
|
-
starting_count: 0
|
145
|
+
starting_count: 0
|
146
|
+
-
|
147
|
+
name: 'Null'
|
148
|
+
attack: 0
|
149
|
+
miss: true
|
150
|
+
shuffle: true
|
151
|
+
starting_count: 1
|
152
|
+
-
|
153
|
+
name: 'Rolling Add Target'
|
154
|
+
attack: 0
|
155
|
+
add_target: true
|
156
|
+
rolling: true
|
157
|
+
-
|
158
|
+
name: 'Rolling Air'
|
159
|
+
air: true
|
160
|
+
rolling: true
|
161
|
+
-
|
162
|
+
name: 'Rolling Attack +1'
|
163
|
+
attack: 1
|
164
|
+
rolling: true
|
165
|
+
-
|
166
|
+
name: 'Rolling Attack +1 Disarm'
|
167
|
+
attack: 1
|
168
|
+
disarm: true
|
169
|
+
rolling: true
|
170
|
+
-
|
171
|
+
name: 'Rolling Attack +2'
|
172
|
+
attack: 2
|
173
|
+
rolling: true
|
174
|
+
-
|
175
|
+
name: 'Rolling Curse'
|
176
|
+
curse: true
|
177
|
+
rolling: true
|
178
|
+
-
|
179
|
+
name: 'Rolling Dark'
|
180
|
+
dark: true
|
181
|
+
rolling: true
|
182
|
+
-
|
183
|
+
name: 'Rolling Disarm'
|
184
|
+
attack: 0
|
185
|
+
disarm: true
|
186
|
+
rolling: true
|
187
|
+
-
|
188
|
+
name: 'Rolling Fire'
|
189
|
+
fire: true
|
190
|
+
rolling: true
|
191
|
+
-
|
192
|
+
name: 'Rolling Heal +1'
|
193
|
+
heal: 1
|
194
|
+
rolling: true
|
195
|
+
-
|
196
|
+
name: 'Rolling Heal +3'
|
197
|
+
heal: 3
|
198
|
+
rolling: true
|
199
|
+
-
|
200
|
+
name: 'Rolling Ice'
|
201
|
+
ice: true
|
202
|
+
rolling: true
|
203
|
+
-
|
204
|
+
name: 'Rolling Immobilize'
|
205
|
+
immobilize: true
|
206
|
+
rolling: true
|
207
|
+
-
|
208
|
+
name: 'Rolling Invisible'
|
209
|
+
invisible: true
|
210
|
+
rolling: true
|
211
|
+
-
|
212
|
+
name: 'Rolling Light'
|
213
|
+
light: true
|
214
|
+
rolling: true
|
215
|
+
-
|
216
|
+
name: 'Rolling Muddle'
|
217
|
+
attack: 0
|
218
|
+
muddle: true
|
219
|
+
rolling: true
|
220
|
+
-
|
221
|
+
name: 'Rolling Nature'
|
222
|
+
nature: true
|
223
|
+
rolling: true
|
224
|
+
-
|
225
|
+
name: 'Rolling Pierce 3'
|
226
|
+
attack: 0
|
227
|
+
pierce: 3
|
228
|
+
rolling: true
|
229
|
+
-
|
230
|
+
name: 'Rolling Poison'
|
231
|
+
poison: true
|
232
|
+
rolling: true
|
233
|
+
-
|
234
|
+
name: 'Rolling Pull 1'
|
235
|
+
pull: 1
|
236
|
+
rolling: true
|
237
|
+
-
|
238
|
+
name: 'Rolling Push 1'
|
239
|
+
attack: 0
|
240
|
+
push: 1
|
241
|
+
rolling: true
|
242
|
+
-
|
243
|
+
name: 'Rolling Push 2'
|
244
|
+
push: 2
|
245
|
+
rolling: true
|
246
|
+
-
|
247
|
+
name: 'Rolling Shield 1, self'
|
248
|
+
rolling: true
|
249
|
+
shield: 1
|
250
|
+
-
|
251
|
+
name: 'Rolling Stun'
|
252
|
+
attack: 0
|
253
|
+
rolling: true
|
254
|
+
stun: true
|
255
|
+
-
|
256
|
+
name: 'Rolling Wound'
|
257
|
+
rolling: true
|
258
|
+
wound: true
|
@@ -0,0 +1,214 @@
|
|
1
|
+
---
|
2
|
+
beast_tyrant:
|
3
|
+
perks:
|
4
|
+
remove_two_minus_one_cards: 1
|
5
|
+
replace_one_minus_one_card_with_one_plus_one_card: 3
|
6
|
+
replace_one_plus_zero_card_with_one_plus_two_card: 2
|
7
|
+
add_one_plus_one_wound_card: 2
|
8
|
+
add_one_plus_one_immobilize_card: 2
|
9
|
+
add_two_rolling_heal_plus_one_cards: 3
|
10
|
+
add_two_rolling_nature_cards: 1
|
11
|
+
ignore_negative_scenario_effects: 1
|
12
|
+
berserker:
|
13
|
+
perks:
|
14
|
+
remove_two_minus_one_cards: 1
|
15
|
+
remove_four_plus_zero_cards: 1
|
16
|
+
replace_one_minus_one_card_with_one_plus_one_card: 2
|
17
|
+
replace_one_plus_zero_card_with_one_rolling_plus_two_card: 2
|
18
|
+
add_two_rolling_wound_cards: 2
|
19
|
+
add_one_rolling_stun_card: 2
|
20
|
+
add_one_rolling_plus_one_disarm_card: 1
|
21
|
+
add_two_rolling_heal_plus_one_cards: 1
|
22
|
+
add_one_plus_two_fire_card: 2
|
23
|
+
ignore_negative_item_effects: 1
|
24
|
+
brute:
|
25
|
+
perks:
|
26
|
+
remove_two_minus_one_cards: 1
|
27
|
+
replace_one_minus_one_card_with_one_plus_one_card: 1
|
28
|
+
add_two_plus_one_cards: 2
|
29
|
+
add_one_plus_three_card: 1
|
30
|
+
add_three_rolling_push_one_cards: 2
|
31
|
+
add_two_rolling_pierce_three_cards: 1
|
32
|
+
add_one_rolling_stun_card: 2
|
33
|
+
add_one_rolling_disarm_card_and_one_rolling_muddle_card: 1
|
34
|
+
add_one_rolling_add_target_card: 2
|
35
|
+
add_one_plus_one_shield_one_self_card: 1
|
36
|
+
ignore_negative_item_effects_and_add_one_plus_one_card: 1
|
37
|
+
cragheart:
|
38
|
+
perks:
|
39
|
+
remove_four_plus_zero_cards: 1
|
40
|
+
replace_one_minus_one_card_with_one_plus_one_card: 3
|
41
|
+
add_one_minus_two_card_and_two_plus_two_cards: 1
|
42
|
+
add_one_plus_one_immobilize_card: 2
|
43
|
+
add_one_plus_two_muddle_card: 2
|
44
|
+
add_two_rolling_push_two_cards: 1
|
45
|
+
add_two_rolling_nature_cards: 2
|
46
|
+
add_two_rolling_air_cards: 1
|
47
|
+
ignore_negative_item_effects: 1
|
48
|
+
ignore_negative_scenario_effects: 1
|
49
|
+
doomstalker:
|
50
|
+
perks:
|
51
|
+
remove_two_minus_one_cards: 2
|
52
|
+
replace_two_plus_zero_cards_with_two_plus_one_cards: 3
|
53
|
+
add_two_rolling_plus_one_cards: 2
|
54
|
+
add_one_plus_two_muddle_card: 1
|
55
|
+
add_one_plus_one_poison_card: 1
|
56
|
+
add_one_plus_one_wound_card: 1
|
57
|
+
add_one_plus_one_immobilize_card: 1
|
58
|
+
add_one_plus_zero_stun_card: 1
|
59
|
+
add_one_rolling_add_target_card: 2
|
60
|
+
ignore_negative_scenario_effects: 1
|
61
|
+
elementalist:
|
62
|
+
perks:
|
63
|
+
remove_two_minus_one_cards: 2
|
64
|
+
replace_one_minus_one_card_with_one_plus_one_card: 1
|
65
|
+
replace_one_plus_zero_card_with_one_plus_two_card: 2
|
66
|
+
add_three_plus_zero_fire_cards: 1
|
67
|
+
add_three_plus_zero_ice_cards: 1
|
68
|
+
add_three_plus_zero_air_cards: 1
|
69
|
+
add_three_plus_zero_nature_cards: 1
|
70
|
+
replace_two_plus_zero_cards_with_one_plus_zero_fire_and_one_plus_zero_nature_card: 1
|
71
|
+
replace_two_plus_zero_cards_with_one_plus_zero_ice_and_one_plus_zero_air_card: 1
|
72
|
+
add_two_plus_one_push_one_cards: 1
|
73
|
+
add_one_plus_one_wound_card: 1
|
74
|
+
add_one_plus_zero_stun_card: 1
|
75
|
+
add_one_plus_zero_add_target_card: 1
|
76
|
+
mindthief:
|
77
|
+
perks:
|
78
|
+
remove_two_minus_one_cards: 2
|
79
|
+
remove_four_plus_zero_cards: 1
|
80
|
+
replace_two_plus_one_cards_with_two_plus_two_cards: 1
|
81
|
+
replace_one_minus_two_card_with_one_plus_zero_card: 1
|
82
|
+
add_one_plus_two_ice_card: 2
|
83
|
+
add_two_rolling_plus_one_cards: 2
|
84
|
+
add_three_rolling_pull_one_cards: 1
|
85
|
+
add_three_rolling_muddle_cards: 1
|
86
|
+
add_two_rolling_immobilize_cards: 1
|
87
|
+
add_one_rolling_stun_card: 1
|
88
|
+
add_one_rolling_disarm_card_and_one_rolling_muddle_card: 1
|
89
|
+
ignore_negative_scenario_effects: 1
|
90
|
+
nightshroud:
|
91
|
+
perks:
|
92
|
+
remove_two_minus_one_cards: 2
|
93
|
+
remove_four_plus_zero_cards: 1
|
94
|
+
add_one_minus_one_dark_card: 2
|
95
|
+
replace_one_minus_one_dark_card_with_one_plus_one_dark_card: 2
|
96
|
+
add_one_plus_one_invisible_card: 2
|
97
|
+
add_three_rolling_muddle_cards: 2
|
98
|
+
add_two_rolling_heal_plus_one_cards: 1
|
99
|
+
add_two_rolling_curse_cards: 2
|
100
|
+
add_one_rolling_add_target_card: 1
|
101
|
+
ignore_negative_scenario_effects_and_add_two_plus_one_cards: 1
|
102
|
+
plagueherald:
|
103
|
+
perks:
|
104
|
+
replace_one_minus_two_card_with_one_plus_zero_card: 1
|
105
|
+
replace_one_minus_one_card_with_one_plus_one_card: 2
|
106
|
+
replace_one_plus_zero_card_with_one_plus_two_card: 2
|
107
|
+
add_two_plus_one_cards: 1
|
108
|
+
add_one_plus_one_air_card: 3
|
109
|
+
add_three_rolling_poison_cards: 1
|
110
|
+
add_two_rolling_curse_cards: 1
|
111
|
+
add_two_rolling_immobilize_cards: 1
|
112
|
+
add_one_rolling_stun_card: 2
|
113
|
+
ignore_negative_scenario_effects_and_add_one_plus_one_card: 1
|
114
|
+
quartermaster:
|
115
|
+
perks:
|
116
|
+
remove_two_minus_one_cards: 2
|
117
|
+
remove_four_plus_zero_cards: 1
|
118
|
+
replace_one_plus_zero_card_with_one_plus_two_card: 2
|
119
|
+
add_two_rolling_plus_one_cards: 2
|
120
|
+
add_three_rolling_muddle_cards: 1
|
121
|
+
add_two_rolling_pierce_three_cards: 1
|
122
|
+
add_one_rolling_stun_card: 1
|
123
|
+
add_one_rolling_add_target_card: 1
|
124
|
+
add_one_plus_zero_refresh_an_item_card: 3
|
125
|
+
ignore_negative_item_effects_and_add_two_plus_one_cards: 1
|
126
|
+
sawbones:
|
127
|
+
perks:
|
128
|
+
remove_two_minus_one_cards: 2
|
129
|
+
remove_four_plus_zero_cards: 1
|
130
|
+
replace_one_plus_zero_card_with_one_plus_two_card: 2
|
131
|
+
add_one_rolling_plus_two_card: 2
|
132
|
+
add_one_plus_one_immobilize_card: 2
|
133
|
+
add_two_rolling_wound_cards: 2
|
134
|
+
add_one_rolling_stun_card: 1
|
135
|
+
add_one_rolling_heal_plus_three_card: 2
|
136
|
+
add_one_plus_zero_refresh_an_item_card: 1
|
137
|
+
scoundrel:
|
138
|
+
perks:
|
139
|
+
remove_two_minus_one_cards: 2
|
140
|
+
remove_four_plus_zero_cards: 1
|
141
|
+
replace_one_minus_two_card_with_one_plus_zero_card: 1
|
142
|
+
replace_one_minus_one_card_with_one_plus_one_card: 1
|
143
|
+
replace_one_plus_zero_card_with_one_plus_two_card: 2
|
144
|
+
add_two_rolling_plus_one_cards: 2
|
145
|
+
add_two_rolling_pierce_three_cards: 1
|
146
|
+
add_two_rolling_poison_cards: 2
|
147
|
+
add_two_rolling_muddle_cards: 1
|
148
|
+
add_one_rolling_invisible_card: 1
|
149
|
+
ignore_negative_scenario_effects: 1
|
150
|
+
soothsinger:
|
151
|
+
perks:
|
152
|
+
remove_two_minus_one_cards: 2
|
153
|
+
remove_one_minus_two_card: 1
|
154
|
+
replace_two_plus_one_cards_with_one_plus_four_card: 2
|
155
|
+
replace_one_plus_zero_card_with_one_plus_one_immobilize_card: 1
|
156
|
+
replace_one_plus_zero_card_with_one_plus_one_disarm_card: 1
|
157
|
+
replace_one_plus_zero_card_with_one_plus_two_wound_card: 1
|
158
|
+
replace_one_plus_zero_card_with_one_plus_two_poison_card: 1
|
159
|
+
replace_one_plus_zero_card_with_one_plus_two_poison_card: 1
|
160
|
+
replace_one_plus_zero_card_with_one_plus_three_muddle_card: 1
|
161
|
+
replace_one_minus_one_card_with_one_plus_zero_stun_card: 1
|
162
|
+
add_three_rolling_plus_one_cards: 1
|
163
|
+
add_two_rolling_curse_cards: 2
|
164
|
+
spellweaver:
|
165
|
+
perks:
|
166
|
+
remove_four_plus_zero_cards: 1
|
167
|
+
replace_one_minus_one_card_with_one_plus_one_card: 2
|
168
|
+
add_two_plus_one_cards: 2
|
169
|
+
add_one_plus_zero_stun_card: 1
|
170
|
+
add_one_plus_one_wound_card: 1
|
171
|
+
add_one_plus_one_immobilize_card: 1
|
172
|
+
add_one_plus_one_curse_card: 1
|
173
|
+
add_one_plus_two_fire_card: 2
|
174
|
+
add_one_plus_two_ice_card: 2
|
175
|
+
add_one_rolling_nature_and_one_rolling_air_card: 1
|
176
|
+
add_one_rolling_light_and_one_rolling_dark_card: 1
|
177
|
+
summoner:
|
178
|
+
perks:
|
179
|
+
remove_two_minus_one_cards: 1
|
180
|
+
replace_one_minus_two_card_with_one_plus_zero_card: 1
|
181
|
+
replace_one_minus_one_card_with_one_plus_one_card: 3
|
182
|
+
add_one_plus_two_card: 2
|
183
|
+
add_two_rolling_wound_cards: 1
|
184
|
+
add_two_rolling_poison_cards: 1
|
185
|
+
add_two_rolling_heal_plus_one_cards: 3
|
186
|
+
add_one_rolling_fire_and_one_rolling_air_card: 1
|
187
|
+
add_one_rolling_dark_and_one_rolling_nature_card: 1
|
188
|
+
ignore_negative_scenario_effects_and_add_two_plus_one_cards: 1
|
189
|
+
sunkeeper:
|
190
|
+
perks:
|
191
|
+
remove_two_minus_one_cards: 2
|
192
|
+
remove_four_plus_zero_cards: 1
|
193
|
+
replace_one_minus_two_card_with_one_plus_zero_card: 1
|
194
|
+
replace_one_plus_zero_card_with_one_plus_two_card: 1
|
195
|
+
add_two_rolling_plus_one_cards: 2
|
196
|
+
add_two_rolling_heal_plus_one_cards: 2
|
197
|
+
add_one_rolling_stun_card: 1
|
198
|
+
add_two_rolling_light_cards: 2
|
199
|
+
add_two_rolling_shield_1_self_cards: 1
|
200
|
+
ignore_negative_item_effects_and_add_two_plus_one_cards: 1
|
201
|
+
ignore_negative_scenario_effects: 1
|
202
|
+
tinkerer:
|
203
|
+
perks:
|
204
|
+
remove_two_minus_one_cards: 2
|
205
|
+
replace_one_minus_two_card_with_one_plus_zero_card: 1
|
206
|
+
add_two_plus_one_cards: 1
|
207
|
+
add_one_plus_three_card: 1
|
208
|
+
add_two_rolling_fire_cards: 1
|
209
|
+
add_three_rolling_muddle_cards: 1
|
210
|
+
add_one_plus_one_wound_card: 2
|
211
|
+
add_one_plus_one_immobilize_card: 2
|
212
|
+
add_one_plus_one_heal_plus_two_card: 2
|
213
|
+
add_one_plus_zero_add_target_card: 1
|
214
|
+
ignore_negative_scenario_effects: 1
|