Skip to content

Commit e9eff85

Browse files
committed
Fix #54 add possible charge ability id to data.
1 parent 9433144 commit e9eff85

File tree

4 files changed

+20
-0
lines changed

4 files changed

+20
-0
lines changed

sc2reader/data/build16561.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,11 @@ class Probe(Worker):
337337
0x0: 'Cybernetics Core',
338338
}
339339

340+
class Zealot(Moveable, Attacker):
341+
abilities = {
342+
0x0: 'Charge (??)'
343+
}
344+
340345
class Stalker(Moveable, Attacker):
341346
abilities = {
342347
0x0: 'Blink',

sc2reader/data/build17326.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,11 @@ class Probe(Worker):
347347
0x025b16: 'Cybernetics Core',
348348
}
349349

350+
class Zealot(Moveable, Attacker):
351+
abilities = {
352+
0x0: 'Charge (??)'
353+
}
354+
350355
class Stalker(Moveable, Attacker):
351356
abilities = {
352357
0x030b10: 'Blink',

sc2reader/data/build18317.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,11 @@ class Probe(Worker):
337337
0x0: 'Cybernetics Core',
338338
}
339339

340+
class Zealot(Moveable, Attacker):
341+
abilities = {
342+
0x0: 'Charge (??)'
343+
}
344+
340345
class Stalker(Moveable, Attacker):
341346
abilities = {
342347
0x0: 'Blink',

sc2reader/data/build19595.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -425,6 +425,11 @@ class Probe(Worker):
425425
0x11cae: 'Cybernetics Core',
426426
}
427427

428+
class Zealot(Moveable, Attacker):
429+
abilities = {
430+
0x20040: 'Charge (??)'
431+
}
432+
428433
class Stalker(Moveable, Attacker):
429434
abilities = {
430435
0x14c20: 'Blink',

0 commit comments

Comments
 (0)