Skip to content

Commit 05ff751

Browse files
committed
Adds a couple new destructable objects.
1 parent 19486cc commit 05ff751

File tree

1 file changed

+27
-7
lines changed

1 file changed

+27
-7
lines changed

sc2reader/data/base.py

Lines changed: 27 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -669,24 +669,44 @@ class LongRock9(Destructable):
669669
class MengshStatue3(Destructable):
670670
code = 0x11b01
671671

672+
class MengshStatue4(Destructable):
673+
code = 0x11c01
674+
672675
class WolfStatue(Destructable):
673676
code = 0x11d01
674677

678+
class WolfStatue2(Destructable):
679+
code = 0x11e01
680+
681+
class WolfStatue3(Destructable):
682+
code = 0x11f01
683+
684+
class UnknownDestructable(Destructable):
685+
code = 0xd001
686+
675687
class Beacon(Destructable):
676688
code = 0xdb01
677689
name = "Beacon (Protoss Large)"
678-
class Beacon2(Destructable):
679-
code = 0xdd01
680-
name = "Beacon (Terran Large)"
681-
class Beacon3(Destructable):
682-
code = 0xdf01
683-
name = "Beacon (Zerg Large)"
690+
684691
class Beacon4(Destructable):
685692
code = 0xdc01
686693
name = "Beacon (Protoss Small)"
694+
695+
class Beacon2(Destructable):
696+
code = 0xdd01
697+
name = "Beacon (Terran Large)"
698+
687699
class Beacon5 (Destructable):
688700
code = 0xde01
689701
name = "Beacon (Terran Small)"
702+
703+
class Beacon3(Destructable):
704+
code = 0xdf01
705+
name = "Beacon (Zerg Large)"
706+
690707
class Beacon6(Destructable):
691708
code = 0xe001
692-
name = "Beacon (Zerg Small)"
709+
name = "Beacon (Zerg Small)"
710+
711+
class Automaton2000(Critter):
712+
code = 0xed01

0 commit comments

Comments
 (0)