sc2ai 0.6.2 → 0.7.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/data/data.json +1 -1
- data/data/data_readable.json +185 -144
- data/data/stableid.json +4392 -942
- data/data/versions.json +16 -0
- data/docker_build/Dockerfile.ruby +1 -1
- data/lib/sc2ai/api/ability_id.rb +14 -745
- data/lib/sc2ai/api/buff_id.rb +8 -1
- data/lib/sc2ai/api/data.rb +0 -6
- data/lib/sc2ai/api/tech_tree_data.rb +30 -32
- data/lib/sc2ai/api/unit_type_id.rb +58 -6
- data/lib/sc2ai/api/upgrade_id.rb +7 -188
- data/lib/sc2ai/cli/cli.rb +5 -1
- data/lib/sc2ai/cli/ladderzip.rb +1 -1
- data/lib/sc2ai/local_play/client.rb +14 -3
- data/lib/sc2ai/player/geo.rb +77 -2
- data/lib/sc2ai/player/units.rb +19 -0
- data/lib/sc2ai/protocol/extensions/unit.rb +22 -23
- data/lib/sc2ai/unit_group/filter_ext.rb +13 -2
- data/lib/sc2ai/version.rb +1 -1
- data/lib/templates/new/run_example_match.rb.tt +1 -1
- data/sig/sc2ai.rbs +128 -858
- metadata +36 -21
data/sig/sc2ai.rbs
CHANGED
@@ -1012,6 +1012,11 @@ module Sc2
|
|
1012
1012
|
# Checks whether you have the resources to
|
1013
1013
|
def can_afford_upgrade?: (untyped upgrade_id) -> bool
|
1014
1014
|
|
1015
|
+
# Checks whether you have met the tech requirements for building a specific unit type
|
1016
|
+
#
|
1017
|
+
# _@param_ `unit_type_id`
|
1018
|
+
def tech_requirement_met?: (Integer unit_type_id) -> bool
|
1019
|
+
|
1015
1020
|
# Returns whether Query Available Ability is true for unit and tag
|
1016
1021
|
# Queries API if necessary. Uses batching in the background.
|
1017
1022
|
#
|
@@ -1142,6 +1147,11 @@ module Sc2
|
|
1142
1147
|
# Checks whether you have the resources to
|
1143
1148
|
def can_afford_upgrade?: (untyped upgrade_id) -> bool
|
1144
1149
|
|
1150
|
+
# Checks whether you have met the tech requirements for building a specific unit type
|
1151
|
+
#
|
1152
|
+
# _@param_ `unit_type_id`
|
1153
|
+
def tech_requirement_met?: (Integer unit_type_id) -> bool
|
1154
|
+
|
1145
1155
|
# Returns whether Query Available Ability is true for unit and tag
|
1146
1156
|
# Queries API if necessary. Uses batching in the background.
|
1147
1157
|
#
|
@@ -1463,6 +1473,9 @@ module Sc2
|
|
1463
1473
|
# ```
|
1464
1474
|
def expansions: () -> ::Hash[Api::Point2D, UnitGroup]
|
1465
1475
|
|
1476
|
+
# Mineral walls. Defined once upon start of game, mostly based on layout.
|
1477
|
+
def mineral_walls: () -> Sc2::UnitGroup
|
1478
|
+
|
1466
1479
|
# Returns a list of 2d points for expansion build locations
|
1467
1480
|
# Does not contain mineral info, but the value can be checked against geo.expansions
|
1468
1481
|
#
|
@@ -1866,6 +1879,11 @@ module Sc2
|
|
1866
1879
|
# Checks whether you have the resources to
|
1867
1880
|
def can_afford_upgrade?: (untyped upgrade_id) -> bool
|
1868
1881
|
|
1882
|
+
# Checks whether you have met the tech requirements for building a specific unit type
|
1883
|
+
#
|
1884
|
+
# _@param_ `unit_type_id`
|
1885
|
+
def tech_requirement_met?: (Integer unit_type_id) -> bool
|
1886
|
+
|
1869
1887
|
# Returns whether Query Available Ability is true for unit and tag
|
1870
1888
|
# Queries API if necessary. Uses batching in the background.
|
1871
1889
|
#
|
@@ -2327,6 +2345,11 @@ module Sc2
|
|
2327
2345
|
# Checks whether you have the resources to
|
2328
2346
|
def can_afford_upgrade?: (untyped upgrade_id) -> bool
|
2329
2347
|
|
2348
|
+
# Checks whether you have met the tech requirements for building a specific unit type
|
2349
|
+
#
|
2350
|
+
# _@param_ `unit_type_id`
|
2351
|
+
def tech_requirement_met?: (Integer unit_type_id) -> bool
|
2352
|
+
|
2330
2353
|
# Returns whether Query Available Ability is true for unit and tag
|
2331
2354
|
# Queries API if necessary. Uses batching in the background.
|
2332
2355
|
#
|
@@ -3103,6 +3126,7 @@ module Sc2
|
|
3103
3126
|
TYPE_REACTOR: ::Array[Integer]
|
3104
3127
|
TYPE_BASES: ::Array[Integer]
|
3105
3128
|
TYPE_DETECTORS: ::Array[Integer]
|
3129
|
+
TYPE_WARPGATE_UNIT: ::Array[Integer]
|
3106
3130
|
|
3107
3131
|
# _@param_ `units` — default to be added.
|
3108
3132
|
#
|
@@ -3733,6 +3757,7 @@ module Sc2
|
|
3733
3757
|
TYPE_REACTOR: ::Array[Integer]
|
3734
3758
|
TYPE_BASES: ::Array[Integer]
|
3735
3759
|
TYPE_DETECTORS: ::Array[Integer]
|
3760
|
+
TYPE_WARPGATE_UNIT: ::Array[Integer]
|
3736
3761
|
|
3737
3762
|
# _@param_ `unit_group`
|
3738
3763
|
def initialize: (Sc2::UnitGroup unit_group) -> void
|
@@ -3920,8 +3945,22 @@ module Sc2
|
|
3920
3945
|
def command_string: () -> String
|
3921
3946
|
|
3922
3947
|
# Reads bundled versions.json
|
3948
|
+
# See tact archive or blizztrack for update config file
|
3949
|
+
# https://github.com/mdX7/tact_configs/blob/77ecc4176689ab6c50be342e1ad73127ffe358d7/tpr/sc2/config/08/b3/08b331b39d9fbe95c338ec370e63f2e2#L4
|
3950
|
+
# https://blizztrack.com/config/s2/bc/8453c2f1c98b955334c7284215429c36return
|
3923
3951
|
#
|
3924
3952
|
# _@return_ — JSON contents of versions.json
|
3953
|
+
#
|
3954
|
+
# ```ruby
|
3955
|
+
# {
|
3956
|
+
# "base-version": 92028, # <- from "build-name" [1..-1] = "B92028"
|
3957
|
+
# "data-hash": "2B7746A6706F919775EF1BADFC95EA1C", # <- from "root"
|
3958
|
+
# "fixed-hash": "163B1CDF46F09B621F6312CD6901228E", # <- from "build-fixed-hash"
|
3959
|
+
# "label": "5.0.13", # <- check game client
|
3960
|
+
# "replay-hash": "BE64E420B329BD2A7D10EEBC0039D6E5", # <- from "build-replay-hash"
|
3961
|
+
# "version": 92028 <- always same as base-version these days
|
3962
|
+
# },
|
3963
|
+
# ```
|
3925
3964
|
def versions_json: () -> ::Array[untyped]
|
3926
3965
|
|
3927
3966
|
# sord omit - no YARD return type given, using untyped
|
@@ -4521,7 +4560,7 @@ module Api
|
|
4521
4560
|
ACCELERATIONZONETEMPORALFIELD: untyped
|
4522
4561
|
ACCELERATIONZONEFLYINGTEMPORALFIELD: untyped
|
4523
4562
|
INHIBITORZONEFLYINGTEMPORALFIELD: untyped
|
4524
|
-
|
4563
|
+
DUMMYBUFF000: untyped
|
4525
4564
|
INHIBITORZONETEMPORALFIELD: untyped
|
4526
4565
|
CLOAKFIELD: untyped
|
4527
4566
|
RESONATINGGLAIVESPHASESHIFT: untyped
|
@@ -4531,6 +4570,13 @@ module Api
|
|
4531
4570
|
TAKENDAMAGE: untyped
|
4532
4571
|
RAVENSCRAMBLERMISSILECARRIER: untyped
|
4533
4572
|
BATTERYOVERCHARGE: untyped
|
4573
|
+
LOADOUTSPRAYTRACKER: untyped
|
4574
|
+
HYDRALISKFRENZY: untyped
|
4575
|
+
DUMMYBUFF002: untyped
|
4576
|
+
DUMMYBUFF001: untyped
|
4577
|
+
DUMMYBUFF003: untyped
|
4578
|
+
DUMMYBUFF004: untyped
|
4579
|
+
DUMMYBUFF005: untyped
|
4534
4580
|
|
4535
4581
|
# sord omit - no YARD return type given, using untyped
|
4536
4582
|
def self._250MMSTRIKECANNONS: () -> untyped
|
@@ -4720,36 +4766,27 @@ module Api
|
|
4720
4766
|
|
4721
4767
|
# Constant reference of Ability ids
|
4722
4768
|
module AbilityId
|
4723
|
-
NULL_NULL: untyped
|
4724
4769
|
SMART: untyped
|
4725
4770
|
TAUNT_TAUNT: untyped
|
4726
4771
|
STOP_STOP: untyped
|
4727
4772
|
STOP_HOLDFIRESPECIAL: untyped
|
4728
4773
|
STOP_CHEER: untyped
|
4729
4774
|
STOP_DANCE: untyped
|
4730
|
-
HOLDFIRE_STOPSPECIAL: untyped
|
4731
|
-
HOLDFIRE_HOLDFIRE: untyped
|
4732
4775
|
MOVE_MOVE: untyped
|
4733
4776
|
PATROL_PATROL: untyped
|
4734
4777
|
HOLDPOSITION_HOLD: untyped
|
4735
4778
|
SCAN_MOVE: untyped
|
4736
4779
|
MOVE_TURN: untyped
|
4737
|
-
BEACON_CANCEL: untyped
|
4738
|
-
BEACON_BEACONMOVE: untyped
|
4739
4780
|
ATTACK_ATTACK: untyped
|
4740
4781
|
ATTACK_ATTACKTOWARDS: untyped
|
4741
4782
|
ATTACK_ATTACKBARRAGE: untyped
|
4742
4783
|
EFFECT_SPRAY_TERRAN: untyped
|
4743
4784
|
EFFECT_SPRAY_ZERG: untyped
|
4744
4785
|
EFFECT_SPRAY_PROTOSS: untyped
|
4745
|
-
EFFECT_SALVAGE: untyped
|
4746
|
-
CORRUPTION_CORRUPTIONABILITY: untyped
|
4747
|
-
CORRUPTION_CANCEL: untyped
|
4748
4786
|
BEHAVIOR_HOLDFIREON_GHOST: untyped
|
4749
4787
|
BEHAVIOR_HOLDFIREOFF_GHOST: untyped
|
4750
4788
|
MORPHTOINFESTEDTERRAN_INFESTEDTERRANS: untyped
|
4751
4789
|
EXPLODE_EXPLODE: untyped
|
4752
|
-
RESEARCH_INTERCEPTORGRAVITONCATAPULT: untyped
|
4753
4790
|
FLEETBEACONRESEARCH_RESEARCHINTERCEPTORLAUNCHSPEEDUPGRADE: untyped
|
4754
4791
|
RESEARCH_PHOENIXANIONPULSECRYSTALS: untyped
|
4755
4792
|
FLEETBEACONRESEARCH_TEMPESTRANGEUPGRADE: untyped
|
@@ -4758,11 +4795,9 @@ module Api
|
|
4758
4795
|
FUNGALGROWTH_FUNGALGROWTH: untyped
|
4759
4796
|
GUARDIANSHIELD_GUARDIANSHIELD: untyped
|
4760
4797
|
EFFECT_REPAIR_MULE: untyped
|
4761
|
-
MORPHZERGLINGTOBANELING_BANELING: untyped
|
4762
4798
|
NEXUSTRAINMOTHERSHIP_MOTHERSHIP: untyped
|
4763
4799
|
FEEDBACK_FEEDBACK: untyped
|
4764
4800
|
EFFECT_MASSRECALL_STRATEGICRECALL: untyped
|
4765
|
-
PLACEPOINTDEFENSEDRONE_POINTDEFENSEDRONE: untyped
|
4766
4801
|
HALLUCINATION_ARCHON: untyped
|
4767
4802
|
HALLUCINATION_COLOSSUS: untyped
|
4768
4803
|
HALLUCINATION_HIGHTEMPLAR: untyped
|
@@ -4775,21 +4810,11 @@ module Api
|
|
4775
4810
|
HALLUCINATION_ZEALOT: untyped
|
4776
4811
|
HARVEST_GATHER_MULE: untyped
|
4777
4812
|
HARVEST_RETURN_MULE: untyped
|
4778
|
-
SEEKERMISSILE_HUNTERSEEKERMISSILE: untyped
|
4779
4813
|
CALLDOWNMULE_CALLDOWNMULE: untyped
|
4780
4814
|
GRAVITONBEAM_GRAVITONBEAM: untyped
|
4781
4815
|
CANCEL_GRAVITONBEAM: untyped
|
4782
4816
|
BUILDINPROGRESSNYDUSCANAL_CANCEL: untyped
|
4783
|
-
SIPHON_SIPHON: untyped
|
4784
|
-
SIPHON_CANCEL: untyped
|
4785
|
-
LEECH_LEECH: untyped
|
4786
4817
|
SPAWNCHANGELING_SPAWNCHANGELING: untyped
|
4787
|
-
DISGUISEASZEALOT_ZEALOT: untyped
|
4788
|
-
DISGUISEASMARINEWITHSHIELD_MARINE: untyped
|
4789
|
-
DISGUISEASMARINEWITHOUTSHIELD_MARINE: untyped
|
4790
|
-
DISGUISEASZERGLINGWITHWINGS_ZERGLING: untyped
|
4791
|
-
DISGUISEASZERGLINGWITHOUTWINGS_ZERGLING: untyped
|
4792
|
-
PHASESHIFT_PHASESHIFT: untyped
|
4793
4818
|
RALLY_BUILDING: untyped
|
4794
4819
|
RALLY_MORPHING_UNIT: untyped
|
4795
4820
|
RALLY_COMMANDCENTER: untyped
|
@@ -4800,17 +4825,13 @@ module Api
|
|
4800
4825
|
RESEARCH_TUNNELINGCLAWS: untyped
|
4801
4826
|
ROACHWARRENRESEARCH_ROACHSUPPLY: untyped
|
4802
4827
|
SAPSTRUCTURE_SAPSTRUCTURE: untyped
|
4803
|
-
INFESTEDTERRANS_INFESTEDTERRANS: untyped
|
4804
4828
|
NEURALPARASITE_NEURALPARASITE: untyped
|
4805
4829
|
CANCEL_NEURALPARASITE: untyped
|
4806
4830
|
EFFECT_INJECTLARVA: untyped
|
4807
4831
|
EFFECT_STIM_MARAUDER: untyped
|
4808
4832
|
SUPPLYDROP_SUPPLYDROP: untyped
|
4809
|
-
TEMPORALRIFT_TEMPORALRIFT: untyped
|
4810
|
-
EFFECT_CHRONOBOOST: untyped
|
4811
4833
|
RESEARCH_ANABOLICSYNTHESIS: untyped
|
4812
4834
|
RESEARCH_CHITINOUSPLATING: untyped
|
4813
|
-
WORMHOLETRANSIT_WORMHOLETRANSIT: untyped
|
4814
4835
|
HARVEST_GATHER_SCV: untyped
|
4815
4836
|
HARVEST_RETURN_SCV: untyped
|
4816
4837
|
HARVEST_GATHER_PROBE: untyped
|
@@ -4824,8 +4845,6 @@ module Api
|
|
4824
4845
|
CANCELSLOT_QUEUE5: untyped
|
4825
4846
|
CANCEL_QUEUECANCELTOSELECTION: untyped
|
4826
4847
|
CANCELSLOT_QUEUECANCELTOSELECTION: untyped
|
4827
|
-
QUE5LONGBLEND_CANCEL: untyped
|
4828
|
-
QUE5LONGBLEND_CANCELSLOT: untyped
|
4829
4848
|
CANCEL_QUEUEADDON: untyped
|
4830
4849
|
CANCELSLOT_ADDON: untyped
|
4831
4850
|
CANCEL_BUILDINPROGRESS: untyped
|
@@ -4845,12 +4864,9 @@ module Api
|
|
4845
4864
|
TERRANBUILD_ARMORY: untyped
|
4846
4865
|
TERRANBUILD_FUSIONCORE: untyped
|
4847
4866
|
HALT_TERRANBUILD: untyped
|
4848
|
-
RAVENBUILD_AUTOTURRET: untyped
|
4849
|
-
RAVENBUILD_CANCEL: untyped
|
4850
4867
|
EFFECT_STIM_MARINE: untyped
|
4851
4868
|
BEHAVIOR_CLOAKON_GHOST: untyped
|
4852
4869
|
BEHAVIOR_CLOAKOFF_GHOST: untyped
|
4853
|
-
SNIPE_SNIPE: untyped
|
4854
4870
|
MEDIVACHEAL_HEAL: untyped
|
4855
4871
|
SIEGEMODE_SIEGEMODE: untyped
|
4856
4872
|
UNSIEGE_UNSIEGE: untyped
|
@@ -4914,7 +4930,6 @@ module Api
|
|
4914
4930
|
ENGINEERINGBAYRESEARCH_TERRANINFANTRYARMORLEVEL1: untyped
|
4915
4931
|
ENGINEERINGBAYRESEARCH_TERRANINFANTRYARMORLEVEL2: untyped
|
4916
4932
|
ENGINEERINGBAYRESEARCH_TERRANINFANTRYARMORLEVEL3: untyped
|
4917
|
-
MERCCOMPOUNDRESEARCH_REAPERSPEED: untyped
|
4918
4933
|
BUILD_NUKE: untyped
|
4919
4934
|
BARRACKSTECHLABRESEARCH_STIMPACK: untyped
|
4920
4935
|
RESEARCH_COMBATSHIELD: untyped
|
@@ -4929,7 +4944,6 @@ module Api
|
|
4929
4944
|
RESEARCH_CYCLONELOCKONDAMAGE: untyped
|
4930
4945
|
FACTORYTECHLABRESEARCH_CYCLONERESEARCHHURRICANETHRUSTERS: untyped
|
4931
4946
|
RESEARCH_BANSHEECLOAKINGFIELD: untyped
|
4932
|
-
STARPORTTECHLABRESEARCH_RESEARCHMEDIVACENERGYUPGRADE: untyped
|
4933
4947
|
RESEARCH_RAVENCORVIDREACTOR: untyped
|
4934
4948
|
STARPORTTECHLABRESEARCH_RESEARCHSEEKERMISSILE: untyped
|
4935
4949
|
STARPORTTECHLABRESEARCH_RESEARCHDURABLEMATERIALS: untyped
|
@@ -4937,8 +4951,6 @@ module Api
|
|
4937
4951
|
STARPORTTECHLABRESEARCH_RESEARCHLIBERATORAGMODE: untyped
|
4938
4952
|
STARPORTTECHLABRESEARCH_RESEARCHRAPIDDEPLOYMENT: untyped
|
4939
4953
|
RESEARCH_RAVENRECALIBRATEDEXPLOSIVES: untyped
|
4940
|
-
RESEARCH_HIGHCAPACITYFUELTANKS: untyped
|
4941
|
-
RESEARCH_ADVANCEDBALLISTICS: untyped
|
4942
4954
|
STARPORTTECHLABRESEARCH_RAVENRESEARCHENHANCEDMUNITIONS: untyped
|
4943
4955
|
STARPORTTECHLABRESEARCH_RESEARCHRAVENINTERFERENCEMATRIX: untyped
|
4944
4956
|
RESEARCH_PERSONALCLOAKING: untyped
|
@@ -5055,7 +5067,7 @@ module Api
|
|
5055
5067
|
RESEARCH_ZERGLINGMETABOLICBOOST: untyped
|
5056
5068
|
RESEARCH_GROOVEDSPINES: untyped
|
5057
5069
|
RESEARCH_MUSCULARAUGMENTS: untyped
|
5058
|
-
|
5070
|
+
HYDRALISKDENRESEARCH_RESEARCHFRENZY: untyped
|
5059
5071
|
RESEARCH_ZERGFLYERATTACKLEVEL1: untyped
|
5060
5072
|
RESEARCH_ZERGFLYERATTACKLEVEL2: untyped
|
5061
5073
|
RESEARCH_ZERGFLYERATTACKLEVEL3: untyped
|
@@ -5092,10 +5104,6 @@ module Api
|
|
5092
5104
|
BURROWUP_ZERGLING: untyped
|
5093
5105
|
BURROWDOWN_INFESTORTERRAN: untyped
|
5094
5106
|
BURROWUP_INFESTORTERRAN: untyped
|
5095
|
-
REDSTONELAVACRITTERBURROW_BURROWDOWN: untyped
|
5096
|
-
REDSTONELAVACRITTERINJUREDBURROW_BURROWDOWN: untyped
|
5097
|
-
REDSTONELAVACRITTERUNBURROW_BURROWUP: untyped
|
5098
|
-
REDSTONELAVACRITTERINJUREDUNBURROW_BURROWUP: untyped
|
5099
5107
|
LOAD_OVERLORD: untyped
|
5100
5108
|
UNLOADALLAT_OVERLORD: untyped
|
5101
5109
|
UNLOADUNIT_OVERLORD: untyped
|
@@ -5161,10 +5169,7 @@ module Api
|
|
5161
5169
|
TWILIGHTCOUNCILRESEARCH_RESEARCHPSIONICAMPLIFIERS: untyped
|
5162
5170
|
TACNUKESTRIKE_NUKECALLDOWN: untyped
|
5163
5171
|
CANCEL_NUKE: untyped
|
5164
|
-
SALVAGEBUNKERREFUND_SALVAGE: untyped
|
5165
|
-
SALVAGEBUNKER_SALVAGE: untyped
|
5166
5172
|
EMP_EMP: untyped
|
5167
|
-
VORTEX_VORTEX: untyped
|
5168
5173
|
TRAINQUEEN_QUEEN: untyped
|
5169
5174
|
BURROWCREEPTUMORDOWN_BURROWDOWN: untyped
|
5170
5175
|
TRANSFUSION_TRANSFUSION: untyped
|
@@ -5177,8 +5182,6 @@ module Api
|
|
5177
5182
|
ATTACK_REDIRECT: untyped
|
5178
5183
|
EFFECT_STIM_MARINE_REDIRECT: untyped
|
5179
5184
|
EFFECT_STIM_MARAUDER_REDIRECT: untyped
|
5180
|
-
BURROWEDSTOP_STOPROACHBURROWED: untyped
|
5181
|
-
BURROWEDSTOP_HOLDFIRESPECIAL: untyped
|
5182
5185
|
STOP_REDIRECT: untyped
|
5183
5186
|
BEHAVIOR_GENERATECREEPON: untyped
|
5184
5187
|
BEHAVIOR_GENERATECREEPOFF: untyped
|
@@ -5202,14 +5205,11 @@ module Api
|
|
5202
5205
|
BUILDNYDUSCANAL_CANCEL: untyped
|
5203
5206
|
EFFECT_CHARGE: untyped
|
5204
5207
|
HERDINTERACT_HERD: untyped
|
5205
|
-
FRENZY_FRENZY: untyped
|
5206
5208
|
CONTAMINATE_CONTAMINATE: untyped
|
5207
|
-
INFESTEDTERRANSLAYEGG_INFESTEDTERRANS: untyped
|
5208
5209
|
CANCEL_QUEUEPASIVE: untyped
|
5209
5210
|
CANCELSLOT_QUEUEPASSIVE: untyped
|
5210
5211
|
CANCEL_QUEUEPASSIVECANCELTOSELECTION: untyped
|
5211
5212
|
CANCELSLOT_QUEUEPASSIVECANCELTOSELECTION: untyped
|
5212
|
-
MORPHTOGHOSTALTERNATE_MOVE: untyped
|
5213
5213
|
MORPHTOGHOSTNOVA_MOVE: untyped
|
5214
5214
|
DIGESTERCREEPSPRAY_DIGESTERCREEPSPRAY: untyped
|
5215
5215
|
MORPHTOCOLLAPSIBLETERRANTOWERDEBRIS_CANCEL: untyped
|
@@ -5217,78 +5217,25 @@ module Api
|
|
5217
5217
|
MORPHTOCOLLAPSIBLETERRANTOWERDEBRISRAMPRIGHT_CANCEL: untyped
|
5218
5218
|
MORPH_MOTHERSHIP: untyped
|
5219
5219
|
CANCEL_MORPHMOTHERSHIP: untyped
|
5220
|
-
MOTHERSHIPSTASIS_MOTHERSHIPSTASIS: untyped
|
5221
|
-
CANCEL_MOTHERSHIPSTASIS: untyped
|
5222
|
-
MOTHERSHIPCOREWEAPON_MOTHERSHIPSTASIS: untyped
|
5223
|
-
NEXUSTRAINMOTHERSHIPCORE_MOTHERSHIPCORE: untyped
|
5224
|
-
MOTHERSHIPCORETELEPORT_MOTHERSHIPCORETELEPORT: untyped
|
5225
|
-
SALVAGEDRONEREFUND_SALVAGE: untyped
|
5226
|
-
SALVAGEDRONE_SALVAGE: untyped
|
5227
|
-
SALVAGEZERGLINGREFUND_SALVAGE: untyped
|
5228
|
-
SALVAGEZERGLING_SALVAGE: untyped
|
5229
|
-
SALVAGEQUEENREFUND_SALVAGE: untyped
|
5230
|
-
SALVAGEQUEEN_SALVAGE: untyped
|
5231
|
-
SALVAGEROACHREFUND_SALVAGE: untyped
|
5232
|
-
SALVAGEROACH_SALVAGE: untyped
|
5233
|
-
SALVAGEBANELINGREFUND_SALVAGE: untyped
|
5234
|
-
SALVAGEBANELING_SALVAGE: untyped
|
5235
|
-
SALVAGEHYDRALISKREFUND_SALVAGE: untyped
|
5236
|
-
SALVAGEHYDRALISK_SALVAGE: untyped
|
5237
|
-
SALVAGEINFESTORREFUND_SALVAGE: untyped
|
5238
|
-
SALVAGEINFESTOR_SALVAGE: untyped
|
5239
|
-
SALVAGESWARMHOSTREFUND_SALVAGE: untyped
|
5240
|
-
SALVAGESWARMHOST_SALVAGE: untyped
|
5241
|
-
SALVAGEULTRALISKREFUND_SALVAGE: untyped
|
5242
|
-
SALVAGEULTRALISK_SALVAGE: untyped
|
5243
|
-
DIGESTERTRANSPORT_LOADDIGESTER: untyped
|
5244
|
-
SPECTRESHIELD_SPECTRESHIELD: untyped
|
5245
5220
|
XELNAGAHEALINGSHRINE_XELNAGAHEALINGSHRINE: untyped
|
5246
5221
|
NEXUSINVULNERABILITY_NEXUSINVULNERABILITY: untyped
|
5247
|
-
NEXUSPHASESHIFT_NEXUSPHASESHIFT: untyped
|
5248
|
-
SPAWNCHANGELINGTARGET_SPAWNCHANGELING: untyped
|
5249
|
-
QUEENLAND_QUEENLAND: untyped
|
5250
|
-
QUEENFLY_QUEENFLY: untyped
|
5251
|
-
ORACLECLOAKFIELD_ORACLECLOAKFIELD: untyped
|
5252
|
-
FLYERSHIELD_FLYERSHIELD: untyped
|
5253
|
-
LOCUSTTRAIN_SWARMHOST: untyped
|
5254
5222
|
EFFECT_MASSRECALL_MOTHERSHIPCORE: untyped
|
5255
|
-
SINGLERECALL_SINGLERECALL: untyped
|
5256
5223
|
MORPH_HELLION: untyped
|
5257
|
-
RESTORESHIELDS_RESTORESHIELDS: untyped
|
5258
|
-
SCRYER_SCRYER: untyped
|
5259
|
-
LEECHRESOURCES_CANCEL: untyped
|
5260
|
-
SNIPEDOT_SNIPEDOT: untyped
|
5261
|
-
SWARMHOSTSPAWNLOCUSTS_LOCUSTMP: untyped
|
5262
|
-
CLONE_CLONE: untyped
|
5263
|
-
BUILDINGSHIELD_BUILDINGSHIELD: untyped
|
5264
5224
|
MORPHTOCOLLAPSIBLEROCKTOWERDEBRIS_CANCEL: untyped
|
5265
5225
|
MORPH_HELLBAT: untyped
|
5266
|
-
BUILDINGSTASIS_BUILDINGSTASIS: untyped
|
5267
|
-
MAXIUMTHRUST_MAXIMUMTHRUST: untyped
|
5268
5226
|
BURROWDOWN_SWARMHOST: untyped
|
5269
5227
|
MORPHTOSWARMHOSTBURROWEDMP_CANCEL: untyped
|
5270
5228
|
BURROWUP_SWARMHOST: untyped
|
5271
|
-
SPAWNINFESTEDTERRAN_LOCUSTMP: untyped
|
5272
5229
|
ATTACKPROTOSSBUILDING_ATTACKBUILDING: untyped
|
5273
5230
|
ATTACKPROTOSSBUILDING_ATTACKTOWARDS: untyped
|
5274
5231
|
ATTACKPROTOSSBUILDING_ATTACKBARRAGE: untyped
|
5275
|
-
BURROWEDBANELINGSTOP_STOPROACHBURROWED: untyped
|
5276
|
-
BURROWEDBANELINGSTOP_HOLDFIRESPECIAL: untyped
|
5277
5232
|
STOP_BUILDING: untyped
|
5278
5233
|
STOPPROTOSSBUILDING_HOLDFIRE: untyped
|
5279
5234
|
STOPPROTOSSBUILDING_CHEER: untyped
|
5280
5235
|
STOPPROTOSSBUILDING_DANCE: untyped
|
5281
5236
|
BLINDINGCLOUD_BLINDINGCLOUD: untyped
|
5282
|
-
EYESTALK_EYESTALK: untyped
|
5283
|
-
EYESTALK_CANCEL: untyped
|
5284
5237
|
EFFECT_ABDUCT: untyped
|
5285
|
-
VIPERCONSUME_VIPERCONSUME: untyped
|
5286
|
-
VIPERCONSUMEMINERALS_VIPERCONSUME: untyped
|
5287
5238
|
VIPERCONSUMESTRUCTURE_VIPERCONSUME: untyped
|
5288
|
-
CANCEL_PROTOSSBUILDINGQUEUE: untyped
|
5289
|
-
PROTOSSBUILDINGQUEUE_CANCELSLOT: untyped
|
5290
|
-
QUE8_CANCEL: untyped
|
5291
|
-
QUE8_CANCELSLOT: untyped
|
5292
5239
|
TESTZERG_CANCEL: untyped
|
5293
5240
|
BEHAVIOR_BUILDINGATTACKON: untyped
|
5294
5241
|
BEHAVIOR_BUILDINGATTACKOFF: untyped
|
@@ -5303,179 +5250,53 @@ module Api
|
|
5303
5250
|
BURROWUP_WIDOWMINE: untyped
|
5304
5251
|
WIDOWMINEATTACK_WIDOWMINEATTACK: untyped
|
5305
5252
|
TORNADOMISSILE_TORNADOMISSILE: untyped
|
5306
|
-
MOTHERSHIPCOREENERGIZE_MOTHERSHIPCOREENERGIZE: untyped
|
5307
|
-
MOTHERSHIPCOREENERGIZE_CANCEL: untyped
|
5308
|
-
LURKERASPECTMPFROMHYDRALISKBURROWED_LURKERMPFROMHYDRALISKBURROWED: untyped
|
5309
|
-
LURKERASPECTMPFROMHYDRALISKBURROWED_CANCEL: untyped
|
5310
|
-
LURKERASPECTMP_LURKERMP: untyped
|
5311
|
-
LURKERASPECTMP_CANCEL: untyped
|
5312
5253
|
BURROWDOWN_LURKER: untyped
|
5313
5254
|
BURROWLURKERMPDOWN_CANCEL: untyped
|
5314
5255
|
BURROWUP_LURKER: untyped
|
5315
|
-
MORPH_LURKERDEN: untyped
|
5316
|
-
CANCEL_MORPHLURKERDEN: untyped
|
5317
5256
|
HALLUCINATION_ORACLE: untyped
|
5318
5257
|
EFFECT_MEDIVACIGNITEAFTERBURNERS: untyped
|
5319
|
-
EXTENDINGBRIDGENEWIDE8OUT_BRIDGEEXTEND: untyped
|
5320
|
-
EXTENDINGBRIDGENEWIDE8_BRIDGERETRACT: untyped
|
5321
|
-
EXTENDINGBRIDGENWWIDE8OUT_BRIDGEEXTEND: untyped
|
5322
|
-
EXTENDINGBRIDGENWWIDE8_BRIDGERETRACT: untyped
|
5323
|
-
EXTENDINGBRIDGENEWIDE10OUT_BRIDGEEXTEND: untyped
|
5324
|
-
EXTENDINGBRIDGENEWIDE10_BRIDGERETRACT: untyped
|
5325
|
-
EXTENDINGBRIDGENWWIDE10OUT_BRIDGEEXTEND: untyped
|
5326
|
-
EXTENDINGBRIDGENWWIDE10_BRIDGERETRACT: untyped
|
5327
|
-
EXTENDINGBRIDGENEWIDE12OUT_BRIDGEEXTEND: untyped
|
5328
|
-
EXTENDINGBRIDGENEWIDE12_BRIDGERETRACT: untyped
|
5329
|
-
EXTENDINGBRIDGENWWIDE12OUT_BRIDGEEXTEND: untyped
|
5330
|
-
EXTENDINGBRIDGENWWIDE12_BRIDGERETRACT: untyped
|
5331
|
-
INVULNERABILITYSHIELD_INVULNERABILITYSHIELD: untyped
|
5332
|
-
CRITTERFLEE_CRITTERFLEE: untyped
|
5333
5258
|
ORACLEREVELATION_ORACLEREVELATION: untyped
|
5334
|
-
ORACLEREVELATIONMODE_ORACLEREVELATIONMODE: untyped
|
5335
|
-
ORACLEREVELATIONMODE_CANCEL: untyped
|
5336
|
-
ORACLENORMALMODE_ORACLENORMALMODE: untyped
|
5337
|
-
ORACLENORMALMODE_CANCEL: untyped
|
5338
5259
|
MORPHTOCOLLAPSIBLEROCKTOWERDEBRISRAMPRIGHT_CANCEL: untyped
|
5339
5260
|
MORPHTOCOLLAPSIBLEROCKTOWERDEBRISRAMPLEFT_CANCEL: untyped
|
5340
|
-
VOIDSIPHON_VOIDSIPHON: untyped
|
5341
5261
|
ULTRALISKWEAPONCOOLDOWN_ULTRALISKWEAPONCOOLDOWN: untyped
|
5342
|
-
MOTHERSHIPCOREPURIFYNEXUSCANCEL_CANCEL: untyped
|
5343
5262
|
EFFECT_PHOTONOVERCHARGE: untyped
|
5344
|
-
XELNAGA_CAVERNS_DOORE_XELNAGA_CAVERNS_DOORDEFAULTCLOSE: untyped
|
5345
|
-
XELNAGA_CAVERNS_DOOREOPENED_XELNAGA_CAVERNS_DOORDEFAULTCLOSE: untyped
|
5346
|
-
XELNAGA_CAVERNS_DOORN_XELNAGA_CAVERNS_DOORDEFAULTCLOSE: untyped
|
5347
|
-
XELNAGA_CAVERNS_DOORNE_XELNAGA_CAVERNS_DOORDEFAULTCLOSE: untyped
|
5348
5263
|
XELNAGA_CAVERNS_DOORNEOPENED_XELNAGA_CAVERNS_DOORDEFAULTOPEN: untyped
|
5349
5264
|
XELNAGA_CAVERNS_DOORNOPENED_XELNAGA_CAVERNS_DOORDEFAULTOPEN: untyped
|
5350
|
-
XELNAGA_CAVERNS_DOORNW_XELNAGA_CAVERNS_DOORDEFAULTCLOSE: untyped
|
5351
5265
|
XELNAGA_CAVERNS_DOORNWOPENED_XELNAGA_CAVERNS_DOORDEFAULTOPEN: untyped
|
5352
|
-
XELNAGA_CAVERNS_DOORS_XELNAGA_CAVERNS_DOORDEFAULTCLOSE: untyped
|
5353
|
-
XELNAGA_CAVERNS_DOORSE_XELNAGA_CAVERNS_DOORDEFAULTCLOSE: untyped
|
5354
5266
|
XELNAGA_CAVERNS_DOORSEOPENED_XELNAGA_CAVERNS_DOORDEFAULTOPEN: untyped
|
5355
5267
|
XELNAGA_CAVERNS_DOORSOPENED_XELNAGA_CAVERNS_DOORDEFAULTOPEN: untyped
|
5356
|
-
XELNAGA_CAVERNS_DOORSW_XELNAGA_CAVERNS_DOORDEFAULTCLOSE: untyped
|
5357
5268
|
XELNAGA_CAVERNS_DOORSWOPENED_XELNAGA_CAVERNS_DOORDEFAULTOPEN: untyped
|
5358
|
-
XELNAGA_CAVERNS_DOORW_XELNAGA_CAVERNS_DOORDEFAULTCLOSE: untyped
|
5359
5269
|
XELNAGA_CAVERNS_DOORWOPENED_XELNAGA_CAVERNS_DOORDEFAULTOPEN: untyped
|
5360
|
-
XELNAGA_CAVERNS_FLOATING_BRIDGENE8OUT_BRIDGEEXTEND: untyped
|
5361
|
-
XELNAGA_CAVERNS_FLOATING_BRIDGENE8_BRIDGERETRACT: untyped
|
5362
|
-
XELNAGA_CAVERNS_FLOATING_BRIDGENW8OUT_BRIDGEEXTEND: untyped
|
5363
|
-
XELNAGA_CAVERNS_FLOATING_BRIDGENW8_BRIDGERETRACT: untyped
|
5364
|
-
XELNAGA_CAVERNS_FLOATING_BRIDGENE10OUT_BRIDGEEXTEND: untyped
|
5365
|
-
XELNAGA_CAVERNS_FLOATING_BRIDGENE10_BRIDGERETRACT: untyped
|
5366
|
-
XELNAGA_CAVERNS_FLOATING_BRIDGENW10OUT_BRIDGEEXTEND: untyped
|
5367
|
-
XELNAGA_CAVERNS_FLOATING_BRIDGENW10_BRIDGERETRACT: untyped
|
5368
|
-
XELNAGA_CAVERNS_FLOATING_BRIDGENE12OUT_BRIDGEEXTEND: untyped
|
5369
|
-
XELNAGA_CAVERNS_FLOATING_BRIDGENE12_BRIDGERETRACT: untyped
|
5370
|
-
XELNAGA_CAVERNS_FLOATING_BRIDGENW12OUT_BRIDGEEXTEND: untyped
|
5371
|
-
XELNAGA_CAVERNS_FLOATING_BRIDGENW12_BRIDGERETRACT: untyped
|
5372
|
-
XELNAGA_CAVERNS_FLOATING_BRIDGEH8OUT_BRIDGEEXTEND: untyped
|
5373
|
-
XELNAGA_CAVERNS_FLOATING_BRIDGEH8_BRIDGERETRACT: untyped
|
5374
|
-
XELNAGA_CAVERNS_FLOATING_BRIDGEV8OUT_BRIDGEEXTEND: untyped
|
5375
|
-
XELNAGA_CAVERNS_FLOATING_BRIDGEV8_BRIDGERETRACT: untyped
|
5376
|
-
XELNAGA_CAVERNS_FLOATING_BRIDGEH10OUT_BRIDGEEXTEND: untyped
|
5377
|
-
XELNAGA_CAVERNS_FLOATING_BRIDGEH10_BRIDGERETRACT: untyped
|
5378
|
-
XELNAGA_CAVERNS_FLOATING_BRIDGEV10OUT_BRIDGEEXTEND: untyped
|
5379
|
-
XELNAGA_CAVERNS_FLOATING_BRIDGEV10_BRIDGERETRACT: untyped
|
5380
|
-
XELNAGA_CAVERNS_FLOATING_BRIDGEH12OUT_BRIDGEEXTEND: untyped
|
5381
|
-
XELNAGA_CAVERNS_FLOATING_BRIDGEH12_BRIDGERETRACT: untyped
|
5382
|
-
XELNAGA_CAVERNS_FLOATING_BRIDGEV12OUT_BRIDGEEXTEND: untyped
|
5383
|
-
XELNAGA_CAVERNS_FLOATING_BRIDGEV12_BRIDGERETRACT: untyped
|
5384
5270
|
EFFECT_TIMEWARP: untyped
|
5385
|
-
SNOWREFINERY_TERRAN_EXTENDINGBRIDGENESHORT8OUT_BRIDGEEXTEND: untyped
|
5386
|
-
SNOWREFINERY_TERRAN_EXTENDINGBRIDGENESHORT8_BRIDGERETRACT: untyped
|
5387
|
-
SNOWREFINERY_TERRAN_EXTENDINGBRIDGENWSHORT8OUT_BRIDGEEXTEND: untyped
|
5388
|
-
SNOWREFINERY_TERRAN_EXTENDINGBRIDGENWSHORT8_BRIDGERETRACT: untyped
|
5389
|
-
SNOWREFINERY_TERRAN_EXTENDINGBRIDGENESHORT10OUT_BRIDGEEXTEND: untyped
|
5390
|
-
SNOWREFINERY_TERRAN_EXTENDINGBRIDGENESHORT10_BRIDGERETRACT: untyped
|
5391
|
-
SNOWREFINERY_TERRAN_EXTENDINGBRIDGENWSHORT10OUT_BRIDGEEXTEND: untyped
|
5392
|
-
SNOWREFINERY_TERRAN_EXTENDINGBRIDGENWSHORT10_BRIDGERETRACT: untyped
|
5393
|
-
ARMORYRESEARCHSWARM_TERRANVEHICLEANDSHIPWEAPONSLEVEL1: untyped
|
5394
|
-
ARMORYRESEARCHSWARM_TERRANVEHICLEANDSHIPWEAPONSLEVEL2: untyped
|
5395
|
-
ARMORYRESEARCHSWARM_TERRANVEHICLEANDSHIPWEAPONSLEVEL3: untyped
|
5396
|
-
ARMORYRESEARCHSWARM_TERRANVEHICLEANDSHIPPLATINGLEVEL1: untyped
|
5397
|
-
ARMORYRESEARCHSWARM_TERRANVEHICLEANDSHIPPLATINGLEVEL2: untyped
|
5398
|
-
ARMORYRESEARCHSWARM_TERRANVEHICLEANDSHIPPLATINGLEVEL3: untyped
|
5399
5271
|
CAUSTICSPRAY_CAUSTICSPRAY: untyped
|
5400
|
-
ORACLECLOAKINGFIELDTARGETED_ORACLECLOAKINGFIELDTARGETED: untyped
|
5401
|
-
EFFECT_IMMORTALBARRIER: untyped
|
5402
5272
|
MORPHTORAVAGER_RAVAGER: untyped
|
5403
5273
|
CANCEL_MORPHRAVAGER: untyped
|
5404
5274
|
MORPH_LURKER: untyped
|
5405
5275
|
CANCEL_MORPHLURKER: untyped
|
5406
|
-
ORACLEPHASESHIFT_ORACLEPHASESHIFT: untyped
|
5407
|
-
RELEASEINTERCEPTORS_RELEASEINTERCEPTORS: untyped
|
5408
5276
|
EFFECT_CORROSIVEBILE: untyped
|
5409
5277
|
BURROWDOWN_RAVAGER: untyped
|
5410
5278
|
BURROWRAVAGERDOWN_CANCEL: untyped
|
5411
5279
|
BURROWUP_RAVAGER: untyped
|
5412
5280
|
PURIFICATIONNOVA_PURIFICATIONNOVA: untyped
|
5413
5281
|
EFFECT_PURIFICATIONNOVA: untyped
|
5414
|
-
IMPALE_IMPALE: untyped
|
5415
5282
|
LOCKON_LOCKON: untyped
|
5416
|
-
LOCKONAIR_LOCKONAIR: untyped
|
5417
5283
|
CANCEL_LOCKON: untyped
|
5418
|
-
CORRUPTIONBOMB_CORRUPTIONBOMB: untyped
|
5419
|
-
CORRUPTIONBOMB_CANCEL: untyped
|
5420
5284
|
EFFECT_TACTICALJUMP: untyped
|
5421
|
-
OVERCHARGE_OVERCHARGE: untyped
|
5422
5285
|
MORPH_THORHIGHIMPACTMODE: untyped
|
5423
5286
|
THORAPMODE_CANCEL: untyped
|
5424
5287
|
MORPH_THOREXPLOSIVEMODE: untyped
|
5425
5288
|
CANCEL_MORPHTHOREXPLOSIVEMODE: untyped
|
5426
|
-
LIGHTOFAIUR_LIGHTOFAIUR: untyped
|
5427
|
-
EFFECT_MASSRECALL_MOTHERSHIP: untyped
|
5428
5289
|
LOAD_NYDUSWORM: untyped
|
5429
5290
|
UNLOADALL_NYDUSWORM: untyped
|
5430
5291
|
BEHAVIOR_PULSARBEAMON: untyped
|
5431
5292
|
BEHAVIOR_PULSARBEAMOFF: untyped
|
5432
|
-
PULSARBEAM_RIPFIELD: untyped
|
5433
|
-
PULSARCANNON_PULSARCANNON: untyped
|
5434
|
-
VOIDSWARMHOSTSPAWNLOCUST_VOIDSWARMHOSTSPAWNLOCUST: untyped
|
5435
5293
|
LOCUSTMPFLYINGMORPHTOGROUND_LOCUSTMPFLYINGSWOOP: untyped
|
5436
5294
|
LOCUSTMPMORPHTOAIR_LOCUSTMPFLYINGSWOOP: untyped
|
5437
5295
|
EFFECT_LOCUSTSWOOP: untyped
|
5438
5296
|
HALLUCINATION_DISRUPTOR: untyped
|
5439
5297
|
HALLUCINATION_ADEPT: untyped
|
5440
5298
|
EFFECT_VOIDRAYPRISMATICALIGNMENT: untyped
|
5441
|
-
AIURLIGHTBRIDGENE8OUT_BRIDGEEXTEND: untyped
|
5442
|
-
AIURLIGHTBRIDGENE8_BRIDGERETRACT: untyped
|
5443
|
-
AIURLIGHTBRIDGENE10OUT_BRIDGEEXTEND: untyped
|
5444
|
-
AIURLIGHTBRIDGENE10_BRIDGERETRACT: untyped
|
5445
|
-
AIURLIGHTBRIDGENE12OUT_BRIDGEEXTEND: untyped
|
5446
|
-
AIURLIGHTBRIDGENE12_BRIDGERETRACT: untyped
|
5447
|
-
AIURLIGHTBRIDGENW8OUT_BRIDGEEXTEND: untyped
|
5448
|
-
AIURLIGHTBRIDGENW8_BRIDGERETRACT: untyped
|
5449
|
-
AIURLIGHTBRIDGENW10OUT_BRIDGEEXTEND: untyped
|
5450
|
-
AIURLIGHTBRIDGENW10_BRIDGERETRACT: untyped
|
5451
|
-
AIURLIGHTBRIDGENW12OUT_BRIDGEEXTEND: untyped
|
5452
|
-
AIURLIGHTBRIDGENW12_BRIDGERETRACT: untyped
|
5453
|
-
AIURTEMPLEBRIDGENE8OUT_BRIDGEEXTEND: untyped
|
5454
|
-
AIURTEMPLEBRIDGENE8_BRIDGERETRACT: untyped
|
5455
|
-
AIURTEMPLEBRIDGENE10OUT_BRIDGEEXTEND: untyped
|
5456
|
-
AIURTEMPLEBRIDGENE10_BRIDGERETRACT: untyped
|
5457
|
-
AIURTEMPLEBRIDGENE12OUT_BRIDGEEXTEND: untyped
|
5458
|
-
AIURTEMPLEBRIDGENE12_BRIDGERETRACT: untyped
|
5459
|
-
AIURTEMPLEBRIDGENW8OUT_BRIDGEEXTEND: untyped
|
5460
|
-
AIURTEMPLEBRIDGENW8_BRIDGERETRACT: untyped
|
5461
|
-
AIURTEMPLEBRIDGENW10OUT_BRIDGEEXTEND: untyped
|
5462
|
-
AIURTEMPLEBRIDGENW10_BRIDGERETRACT: untyped
|
5463
|
-
AIURTEMPLEBRIDGENW12OUT_BRIDGEEXTEND: untyped
|
5464
|
-
AIURTEMPLEBRIDGENW12_BRIDGERETRACT: untyped
|
5465
|
-
SHAKURASLIGHTBRIDGENE8OUT_BRIDGEEXTEND: untyped
|
5466
|
-
SHAKURASLIGHTBRIDGENE8_BRIDGERETRACT: untyped
|
5467
|
-
SHAKURASLIGHTBRIDGENE10OUT_BRIDGEEXTEND: untyped
|
5468
|
-
SHAKURASLIGHTBRIDGENE10_BRIDGERETRACT: untyped
|
5469
|
-
SHAKURASLIGHTBRIDGENE12OUT_BRIDGEEXTEND: untyped
|
5470
|
-
SHAKURASLIGHTBRIDGENE12_BRIDGERETRACT: untyped
|
5471
|
-
SHAKURASLIGHTBRIDGENW8OUT_BRIDGEEXTEND: untyped
|
5472
|
-
SHAKURASLIGHTBRIDGENW8_BRIDGERETRACT: untyped
|
5473
|
-
SHAKURASLIGHTBRIDGENW10OUT_BRIDGEEXTEND: untyped
|
5474
|
-
SHAKURASLIGHTBRIDGENW10_BRIDGERETRACT: untyped
|
5475
|
-
SHAKURASLIGHTBRIDGENW12OUT_BRIDGEEXTEND: untyped
|
5476
|
-
SHAKURASLIGHTBRIDGENW12_BRIDGERETRACT: untyped
|
5477
5299
|
VOIDMPIMMORTALREVIVEREBUILD_IMMORTAL: untyped
|
5478
|
-
VOIDMPIMMORTALREVIVEDEATH_IMMORTAL: untyped
|
5479
5300
|
ARBITERMPSTASISFIELD_ARBITERMPSTASISFIELD: untyped
|
5480
5301
|
ARBITERMPRECALL_ARBITERMPRECALL: untyped
|
5481
5302
|
CORSAIRMPDISRUPTIONWEB_CORSAIRMPDISRUPTIONWEB: untyped
|
@@ -5492,18 +5313,11 @@ module Api
|
|
5492
5313
|
QUEENMPENSNARE_QUEENMPENSNARE: untyped
|
5493
5314
|
QUEENMPSPAWNBROODLINGS_QUEENMPSPAWNBROODLINGS: untyped
|
5494
5315
|
QUEENMPINFESTCOMMANDCENTER_QUEENMPINFESTCOMMANDCENTER: untyped
|
5495
|
-
LIGHTNINGBOMB_LIGHTNINGBOMB: untyped
|
5496
|
-
GRAPPLE_GRAPPLE: untyped
|
5497
|
-
ORACLESTASISTRAP_ORACLEBUILDSTASISTRAP: untyped
|
5498
5316
|
BUILD_STASISTRAP: untyped
|
5499
5317
|
CANCEL_STASISTRAP: untyped
|
5500
5318
|
ORACLESTASISTRAPACTIVATE_ACTIVATESTASISWARD: untyped
|
5501
|
-
SELFREPAIR_SELFREPAIR: untyped
|
5502
|
-
SELFREPAIR_CANCEL: untyped
|
5503
|
-
AGGRESSIVEMUTATION_AGGRESSIVEMUTATION: untyped
|
5504
5319
|
PARASITICBOMB_PARASITICBOMB: untyped
|
5505
5320
|
ADEPTPHASESHIFT_ADEPTPHASESHIFT: untyped
|
5506
|
-
PURIFICATIONNOVAMORPH_PURIFICATIONNOVA: untyped
|
5507
5321
|
PURIFICATIONNOVAMORPHBACK_PURIFICATIONNOVA: untyped
|
5508
5322
|
BEHAVIOR_HOLDFIREON_LURKER: untyped
|
5509
5323
|
BEHAVIOR_HOLDFIREOFF_LURKER: untyped
|
@@ -5511,77 +5325,11 @@ module Api
|
|
5511
5325
|
LIBERATORMORPHTOAA_LIBERATORAAMODE: untyped
|
5512
5326
|
MORPH_LIBERATORAGMODE: untyped
|
5513
5327
|
MORPH_LIBERATORAAMODE: untyped
|
5514
|
-
TIMESTOP_TIMESTOP: untyped
|
5515
|
-
TIMESTOP_CANCEL: untyped
|
5516
|
-
AIURLIGHTBRIDGEABANDONEDNE8OUT_BRIDGEEXTEND: untyped
|
5517
|
-
AIURLIGHTBRIDGEABANDONEDNE8_BRIDGERETRACT: untyped
|
5518
|
-
AIURLIGHTBRIDGEABANDONEDNE10OUT_BRIDGEEXTEND: untyped
|
5519
|
-
AIURLIGHTBRIDGEABANDONEDNE10_BRIDGERETRACT: untyped
|
5520
|
-
AIURLIGHTBRIDGEABANDONEDNE12OUT_BRIDGEEXTEND: untyped
|
5521
|
-
AIURLIGHTBRIDGEABANDONEDNE12_BRIDGERETRACT: untyped
|
5522
|
-
AIURLIGHTBRIDGEABANDONEDNW8OUT_BRIDGEEXTEND: untyped
|
5523
|
-
AIURLIGHTBRIDGEABANDONEDNW8_BRIDGERETRACT: untyped
|
5524
|
-
AIURLIGHTBRIDGEABANDONEDNW10OUT_BRIDGEEXTEND: untyped
|
5525
|
-
AIURLIGHTBRIDGEABANDONEDNW10_BRIDGERETRACT: untyped
|
5526
|
-
AIURLIGHTBRIDGEABANDONEDNW12OUT_BRIDGEEXTEND: untyped
|
5527
|
-
AIURLIGHTBRIDGEABANDONEDNW12_BRIDGERETRACT: untyped
|
5528
5328
|
KD8CHARGE_KD8CHARGE: untyped
|
5529
|
-
PENETRATINGSHOT_PENETRATINGSHOT: untyped
|
5530
|
-
CLOAKINGDRONE_CLOAKINGDRONE: untyped
|
5531
5329
|
CANCEL_ADEPTPHASESHIFT: untyped
|
5532
5330
|
CANCEL_ADEPTSHADEPHASESHIFT: untyped
|
5533
5331
|
SLAYNELEMENTALGRAB_SLAYNELEMENTALGRAB: untyped
|
5534
5332
|
MORPHTOCOLLAPSIBLEPURIFIERTOWERDEBRIS_CANCEL: untyped
|
5535
|
-
PORTCITY_BRIDGE_UNITNE8OUT_BRIDGEEXTEND: untyped
|
5536
|
-
PORTCITY_BRIDGE_UNITNE8_BRIDGERETRACT: untyped
|
5537
|
-
PORTCITY_BRIDGE_UNITSE8OUT_BRIDGEEXTEND: untyped
|
5538
|
-
PORTCITY_BRIDGE_UNITSE8_BRIDGERETRACT: untyped
|
5539
|
-
PORTCITY_BRIDGE_UNITNW8OUT_BRIDGEEXTEND: untyped
|
5540
|
-
PORTCITY_BRIDGE_UNITNW8_BRIDGERETRACT: untyped
|
5541
|
-
PORTCITY_BRIDGE_UNITSW8OUT_BRIDGEEXTEND: untyped
|
5542
|
-
PORTCITY_BRIDGE_UNITSW8_BRIDGERETRACT: untyped
|
5543
|
-
PORTCITY_BRIDGE_UNITNE10OUT_BRIDGEEXTEND: untyped
|
5544
|
-
PORTCITY_BRIDGE_UNITNE10_BRIDGERETRACT: untyped
|
5545
|
-
PORTCITY_BRIDGE_UNITSE10OUT_BRIDGEEXTEND: untyped
|
5546
|
-
PORTCITY_BRIDGE_UNITSE10_BRIDGERETRACT: untyped
|
5547
|
-
PORTCITY_BRIDGE_UNITNW10OUT_BRIDGEEXTEND: untyped
|
5548
|
-
PORTCITY_BRIDGE_UNITNW10_BRIDGERETRACT: untyped
|
5549
|
-
PORTCITY_BRIDGE_UNITSW10OUT_BRIDGEEXTEND: untyped
|
5550
|
-
PORTCITY_BRIDGE_UNITSW10_BRIDGERETRACT: untyped
|
5551
|
-
PORTCITY_BRIDGE_UNITNE12OUT_BRIDGEEXTEND: untyped
|
5552
|
-
PORTCITY_BRIDGE_UNITNE12_BRIDGERETRACT: untyped
|
5553
|
-
PORTCITY_BRIDGE_UNITSE12OUT_BRIDGEEXTEND: untyped
|
5554
|
-
PORTCITY_BRIDGE_UNITSE12_BRIDGERETRACT: untyped
|
5555
|
-
PORTCITY_BRIDGE_UNITNW12OUT_BRIDGEEXTEND: untyped
|
5556
|
-
PORTCITY_BRIDGE_UNITNW12_BRIDGERETRACT: untyped
|
5557
|
-
PORTCITY_BRIDGE_UNITSW12OUT_BRIDGEEXTEND: untyped
|
5558
|
-
PORTCITY_BRIDGE_UNITSW12_BRIDGERETRACT: untyped
|
5559
|
-
PORTCITY_BRIDGE_UNITN8OUT_BRIDGEEXTEND: untyped
|
5560
|
-
PORTCITY_BRIDGE_UNITN8_BRIDGERETRACT: untyped
|
5561
|
-
PORTCITY_BRIDGE_UNITS8OUT_BRIDGEEXTEND: untyped
|
5562
|
-
PORTCITY_BRIDGE_UNITS8_BRIDGERETRACT: untyped
|
5563
|
-
PORTCITY_BRIDGE_UNITE8OUT_BRIDGEEXTEND: untyped
|
5564
|
-
PORTCITY_BRIDGE_UNITE8_BRIDGERETRACT: untyped
|
5565
|
-
PORTCITY_BRIDGE_UNITW8OUT_BRIDGEEXTEND: untyped
|
5566
|
-
PORTCITY_BRIDGE_UNITW8_BRIDGERETRACT: untyped
|
5567
|
-
PORTCITY_BRIDGE_UNITN10OUT_BRIDGEEXTEND: untyped
|
5568
|
-
PORTCITY_BRIDGE_UNITN10_BRIDGERETRACT: untyped
|
5569
|
-
PORTCITY_BRIDGE_UNITS10OUT_BRIDGEEXTEND: untyped
|
5570
|
-
PORTCITY_BRIDGE_UNITS10_BRIDGERETRACT: untyped
|
5571
|
-
PORTCITY_BRIDGE_UNITE10OUT_BRIDGEEXTEND: untyped
|
5572
|
-
PORTCITY_BRIDGE_UNITE10_BRIDGERETRACT: untyped
|
5573
|
-
PORTCITY_BRIDGE_UNITW10OUT_BRIDGEEXTEND: untyped
|
5574
|
-
PORTCITY_BRIDGE_UNITW10_BRIDGERETRACT: untyped
|
5575
|
-
PORTCITY_BRIDGE_UNITN12OUT_BRIDGEEXTEND: untyped
|
5576
|
-
PORTCITY_BRIDGE_UNITN12_BRIDGERETRACT: untyped
|
5577
|
-
PORTCITY_BRIDGE_UNITS12OUT_BRIDGEEXTEND: untyped
|
5578
|
-
PORTCITY_BRIDGE_UNITS12_BRIDGERETRACT: untyped
|
5579
|
-
PORTCITY_BRIDGE_UNITE12OUT_BRIDGEEXTEND: untyped
|
5580
|
-
PORTCITY_BRIDGE_UNITE12_BRIDGERETRACT: untyped
|
5581
|
-
PORTCITY_BRIDGE_UNITW12OUT_BRIDGEEXTEND: untyped
|
5582
|
-
PORTCITY_BRIDGE_UNITW12_BRIDGERETRACT: untyped
|
5583
|
-
TEMPESTDISRUPTIONBLAST_TEMPESTDISRUPTIONBLAST: untyped
|
5584
|
-
CANCEL_TEMPESTDISRUPTIONBLAST: untyped
|
5585
5333
|
EFFECT_SHADOWSTRIDE: untyped
|
5586
5334
|
EFFECT_SPAWNLOCUSTS: untyped
|
5587
5335
|
LOCUSTMPFLYINGSWOOPATTACK_LOCUSTMPFLYINGSWOOP: untyped
|
@@ -5592,305 +5340,6 @@ module Api
|
|
5592
5340
|
PURIFYMORPHPYLON_MOTHERSHIPCOREWEAPON: untyped
|
5593
5341
|
PURIFYMORPHPYLONBACK_MOTHERSHIPCOREWEAPON: untyped
|
5594
5342
|
RESEARCH_SHADOWSTRIKE: untyped
|
5595
|
-
HEAL_MEDICHEAL: untyped
|
5596
|
-
LURKERASPECT_LURKER: untyped
|
5597
|
-
LURKERASPECT_CANCEL: untyped
|
5598
|
-
BURROWLURKERDOWN_BURROWDOWN: untyped
|
5599
|
-
BURROWLURKERDOWN_CANCEL: untyped
|
5600
|
-
BURROWLURKERUP_BURROWUP: untyped
|
5601
|
-
D8CHARGE_D8CHARGE: untyped
|
5602
|
-
DEFENSIVEMATRIX_DEFENSIVEMATRIX: untyped
|
5603
|
-
MISSILEPODS_MISSILEPODS: untyped
|
5604
|
-
LOKIMISSILEPODS_MISSILEPODS: untyped
|
5605
|
-
HUTTRANSPORT_HUTLOAD: untyped
|
5606
|
-
HUTTRANSPORT_HUTUNLOADALL: untyped
|
5607
|
-
LEVIATHANSPAWNBROODLORD_SPAWNBROODLORD: untyped
|
5608
|
-
SS_CARRIERBOSSATTACKLAUNCH_SS_SHOOTING: untyped
|
5609
|
-
SS_CARRIERSPAWNINTERCEPTOR_SS_CARRIERSPAWNINTERCEPTOR: untyped
|
5610
|
-
SS_CARRIERBOSSATTACKTARGET_SS_SHOOTING: untyped
|
5611
|
-
SS_FIGHTERBOMB_SS_FIGHTERBOMB: untyped
|
5612
|
-
SS_PHOENIXSHOOTING_SS_SHOOTING: untyped
|
5613
|
-
SS_BATTLECRUISERMISSILEATTACK_SS_SHOOTING: untyped
|
5614
|
-
SS_LEVIATHANSPAWNBOMBS_SS_LEVIATHANSPAWNBOMBS: untyped
|
5615
|
-
SS_BATTLECRUISERHUNTERSEEKERATTACK_SS_SHOOTING: untyped
|
5616
|
-
SS_LEVIATHANTENTACLEATTACKL1NODELAY_SS_LEVIATHANTENTACLEATTACKL1NODELAY: untyped
|
5617
|
-
SS_LEVIATHANTENTACLEATTACKL2NODELAY_SS_LEVIATHANTENTACLEATTACKL2NODELAY: untyped
|
5618
|
-
SS_LEVIATHANTENTACLEATTACKR1NODELAY_SS_LEVIATHANTENTACLEATTACKR1NODELAY: untyped
|
5619
|
-
SS_LEVIATHANTENTACLEATTACKR2NODELAY_SS_LEVIATHANTENTACLEATTACKR2NODELAY: untyped
|
5620
|
-
SS_SCIENCEVESSELTELEPORT_ZERATULBLINK: untyped
|
5621
|
-
SS_TERRATRONBEAMATTACK_SS_TERRATRONBEAMATTACK: untyped
|
5622
|
-
SS_TERRATRONSAWATTACK_SS_TERRATRONSAWATTACK: untyped
|
5623
|
-
SS_WRAITHATTACK_SS_SHOOTING: untyped
|
5624
|
-
SS_SWARMGUARDIANATTACK_SS_SHOOTING: untyped
|
5625
|
-
SS_SCOUTATTACK_SS_SHOOTING: untyped
|
5626
|
-
SS_INTERCEPTORATTACK_SS_SHOOTING: untyped
|
5627
|
-
SS_CORRUPTORATTACK_SS_SHOOTING: untyped
|
5628
|
-
SS_LEVIATHANTENTACLEATTACKL2_SS_LEVIATHANTENTACLEATTACKL2: untyped
|
5629
|
-
SS_LEVIATHANTENTACLEATTACKR1_SS_LEVIATHANTENTACLEATTACKR1: untyped
|
5630
|
-
SS_LEVIATHANTENTACLEATTACKL1_SS_LEVIATHANTENTACLEATTACKL1: untyped
|
5631
|
-
SS_LEVIATHANTENTACLEATTACKR2_SS_LEVIATHANTENTACLEATTACKR2: untyped
|
5632
|
-
SS_SCIENCEVESSELATTACK_SS_SHOOTING: untyped
|
5633
|
-
LURKERASPECTFROMHYDRALISKBURROWED_LURKERFROMHYDRALISKBURROWED: untyped
|
5634
|
-
LURKERASPECTFROMHYDRALISKBURROWED_CANCEL: untyped
|
5635
|
-
UPGRADETOLURKERDEN_LURKERDEN: untyped
|
5636
|
-
UPGRADETOLURKERDEN_CANCEL: untyped
|
5637
|
-
ADVANCEDCONSTRUCTION_CANCEL: untyped
|
5638
|
-
BUILDINPROGRESSNONCANCELLABLE_CANCEL: untyped
|
5639
|
-
INFESTEDVENTSPAWNCORRUPTOR_SPAWNCORRUPTOR: untyped
|
5640
|
-
INFESTEDVENTSPAWNBROODLORD_SPAWNBROODLORD: untyped
|
5641
|
-
IRRADIATE_IRRADIATE: untyped
|
5642
|
-
IRRADIATE_CANCEL: untyped
|
5643
|
-
INFESTEDVENTSPAWNMUTALISK_LEVIATHANSPAWNMUTALISK: untyped
|
5644
|
-
MAKEVULTURESPIDERMINES_SPIDERMINEREPLENISH: untyped
|
5645
|
-
MEDIVACDOUBLEBEAMHEAL_HEAL: untyped
|
5646
|
-
MINDCONTROL_MINDCONTROL: untyped
|
5647
|
-
OBLITERATE_OBLITERATE: untyped
|
5648
|
-
VOODOOSHIELD_VOODOOSHIELD: untyped
|
5649
|
-
RELEASEMINION_RELEASEMINION: untyped
|
5650
|
-
ULTRASONICPULSE_ULTRASONICPULSE: untyped
|
5651
|
-
ARCHIVESEAL_ARCHIVESEAL: untyped
|
5652
|
-
ARTANISVORTEX_VORTEX: untyped
|
5653
|
-
ARTANISWORMHOLETRANSIT_WORMHOLETRANSIT: untyped
|
5654
|
-
BUNKERATTACK_BUNKERATTACK: untyped
|
5655
|
-
BUNKERATTACK_ATTACKTOWARDS: untyped
|
5656
|
-
BUNKERATTACK_ATTACKBARRAGE: untyped
|
5657
|
-
BUNKERSTOP_STOPBUNKER: untyped
|
5658
|
-
BUNKERSTOP_HOLDFIRESPECIAL: untyped
|
5659
|
-
CANCELTERRAZINEHARVEST_CANCEL: untyped
|
5660
|
-
LEVIATHANSPAWNMUTALISK_LEVIATHANSPAWNMUTALISK: untyped
|
5661
|
-
PARKCOLONISTVEHICLE_PARKCOLONISTVEHICLE: untyped
|
5662
|
-
STARTCOLONISTVEHICLE_STARTCOLONISTVEHICLE: untyped
|
5663
|
-
CONSUMPTION_CONSUMPTION: untyped
|
5664
|
-
CONSUMEDNA_CONSUMEDNA: untyped
|
5665
|
-
EGGPOP_EGGPOP: untyped
|
5666
|
-
EXPERIMENTALPLASMAGUN_EXPERIMENTALPLASMAGUN: untyped
|
5667
|
-
GATHERSPECIALOBJECT_GATHERSPECIALOBJECT: untyped
|
5668
|
-
LOKIUNDOCK_LIFT: untyped
|
5669
|
-
MINDBLAST_MINDBLAST: untyped
|
5670
|
-
MORPHTOINFESTEDCIVILIAN_MORPHTOINFESTEDCIVILIAN: untyped
|
5671
|
-
QUEENSHOCKWAVE_QUEENSHOCKWAVE: untyped
|
5672
|
-
TAURENOUTHOUSELIFTOFF_TAURENOUTHOUSEFLY: untyped
|
5673
|
-
TAURENOUTHOUSETRANSPORT_LOADTAURENOUTHOUSE: untyped
|
5674
|
-
TAURENOUTHOUSETRANSPORT_UNLOADTAURENOUTHOUSE: untyped
|
5675
|
-
TYCHUS03OMEGASTORM_OMEGASTORM: untyped
|
5676
|
-
RAYNORSNIPE_RAYNORSNIPE: untyped
|
5677
|
-
BONESHEAL_BONESHEAL: untyped
|
5678
|
-
BONESTOSSGRENADE_TOSSGRENADETYCHUS: untyped
|
5679
|
-
HERCULESTRANSPORT_MEDIVACLOAD: untyped
|
5680
|
-
HERCULESTRANSPORT_MEDIVACUNLOADALL: untyped
|
5681
|
-
SPECOPSDROPSHIPTRANSPORT_MEDIVACLOAD: untyped
|
5682
|
-
SPECOPSDROPSHIPTRANSPORT_MEDIVACUNLOADALL: untyped
|
5683
|
-
DUSKWINGBANSHEECLOAKINGFIELD_CLOAKONBANSHEE: untyped
|
5684
|
-
DUSKWINGBANSHEECLOAKINGFIELD_CLOAKOFF: untyped
|
5685
|
-
HYPERIONYAMATOSPECIAL_HYPERIONYAMATOGUN: untyped
|
5686
|
-
INFESTABLEHUTTRANSPORT_HUTLOAD: untyped
|
5687
|
-
INFESTABLEHUTTRANSPORT_HUTUNLOADALL: untyped
|
5688
|
-
DUTCHPLACETURRET_DUTCHPLACETURRET: untyped
|
5689
|
-
BURROWINFESTEDCIVILIANDOWN_BURROWDOWN: untyped
|
5690
|
-
BURROWINFESTEDCIVILIANUP_BURROWUP: untyped
|
5691
|
-
SELENDISHANGAR_INTERCEPTOR: untyped
|
5692
|
-
SIEGEBREAKERSIEGE_SIEGEMODE: untyped
|
5693
|
-
SIEGEBREAKERUNSIEGE_UNSIEGE: untyped
|
5694
|
-
SOULCHANNEL_CANCEL: untyped
|
5695
|
-
SENTRYGUNBURROW_BURROWTURRET: untyped
|
5696
|
-
SENTRYGUNUNBURROW_UNBURROWTURRET: untyped
|
5697
|
-
GRAVITONPRISON_GRAVITONPRISON: untyped
|
5698
|
-
IMPLOSION_IMPLOSION: untyped
|
5699
|
-
OMEGASTORM_OMEGASTORM: untyped
|
5700
|
-
PSIONICSHOCKWAVE_PSIONICSHOCKWAVE: untyped
|
5701
|
-
HYBRIDFAOESTUN_HYBRIDFAOESTUN: untyped
|
5702
|
-
SUMMONMERCENARIES_HIREKELMORIANMINERS: untyped
|
5703
|
-
SUMMONMERCENARIES_HIREDEVILDOGS: untyped
|
5704
|
-
SUMMONMERCENARIES_HIRESPARTANCOMPANY: untyped
|
5705
|
-
SUMMONMERCENARIES_HIREHAMMERSECURITIES: untyped
|
5706
|
-
SUMMONMERCENARIES_HIRESIEGEBREAKERS: untyped
|
5707
|
-
SUMMONMERCENARIES_HIREHELSANGELS: untyped
|
5708
|
-
SUMMONMERCENARIES_HIREDUSKWING: untyped
|
5709
|
-
SUMMONMERCENARIES_HIREDUKESREVENGE: untyped
|
5710
|
-
SUMMONMERCENARIESPH_HIREKELMORIANMINERSPH: untyped
|
5711
|
-
ENERGYNOVA_ENERGYNOVA: untyped
|
5712
|
-
THEMOROSDEVICE_THEMOROSDEVICE: untyped
|
5713
|
-
TOSSGRENADE_TOSSGRENADE: untyped
|
5714
|
-
VOIDSEEKERTRANSPORT_MEDIVACLOAD: untyped
|
5715
|
-
VOIDSEEKERTRANSPORT_MEDIVACUNLOADALL: untyped
|
5716
|
-
TERRANBUILDDROP_SUPPLYDEPOTDROP: untyped
|
5717
|
-
TERRANBUILDDROP_CANCEL: untyped
|
5718
|
-
ODINNUCLEARSTRIKE_ODINNUKECALLDOWN: untyped
|
5719
|
-
ODINNUCLEARSTRIKE_CANCEL: untyped
|
5720
|
-
ODINWRECKAGE_ODIN: untyped
|
5721
|
-
RESEARCHLABTRANSPORT_HUTLOAD: untyped
|
5722
|
-
RESEARCHLABTRANSPORT_HUTUNLOADALL: untyped
|
5723
|
-
COLONYSHIPTRANSPORT_MEDIVACLOAD: untyped
|
5724
|
-
COLONYSHIPTRANSPORT_MEDIVACUNLOADALL: untyped
|
5725
|
-
COLONYINFESTATION_COLONYINFESTATION: untyped
|
5726
|
-
DOMINATION_DOMINATION: untyped
|
5727
|
-
DOMINATION_CANCEL: untyped
|
5728
|
-
KARASSPLASMASURGE_KARASSPLASMASURGE: untyped
|
5729
|
-
KARASSPSISTORM_PSISTORM: untyped
|
5730
|
-
HYBRIDBLINK_ZERATULBLINK: untyped
|
5731
|
-
HYBRIDCPLASMABLAST_HYBRIDCPLASMABLAST: untyped
|
5732
|
-
HEROARMNUKE_NUKEARM: untyped
|
5733
|
-
HERONUCLEARSTRIKE_NUKECALLDOWN: untyped
|
5734
|
-
HERONUCLEARSTRIKE_CANCEL: untyped
|
5735
|
-
ODINBARRAGE_ODINBARRAGE: untyped
|
5736
|
-
ODINBARRAGE_CANCEL: untyped
|
5737
|
-
PURIFIERTOGGLEPOWER_PURIFIERPOWERDOWN: untyped
|
5738
|
-
PURIFIERTOGGLEPOWER_PURIFIERPOWERUP: untyped
|
5739
|
-
PHASEMINEBLAST_PHASEMINEBLAST: untyped
|
5740
|
-
VOIDSEEKERPHASEMINEBLAST_PHASEMINEBLAST: untyped
|
5741
|
-
TRANSPORTTRUCKTRANSPORT_TRANSPORTTRUCKLOAD: untyped
|
5742
|
-
TRANSPORTTRUCKTRANSPORT_TRANSPORTTRUCKUNLOADALL: untyped
|
5743
|
-
VAL03QUEENOFBLADESBURROW_BURROWDOWN: untyped
|
5744
|
-
VAL03QUEENOFBLADESDEEPTUNNEL_DEEPTUNNEL: untyped
|
5745
|
-
VAL03QUEENOFBLADESUNBURROW_BURROWUP: untyped
|
5746
|
-
LOKIYAMATO_LOKIYAMATOGUN: untyped
|
5747
|
-
DUKESREVENGEYAMATO_YAMATOGUN: untyped
|
5748
|
-
ZERATULBLINK_ZERATULBLINK: untyped
|
5749
|
-
ROGUEGHOSTCLOAK_CLOAKONSPECTRE: untyped
|
5750
|
-
ROGUEGHOSTCLOAK_CLOAKOFF: untyped
|
5751
|
-
VULTURESPIDERMINES_SPIDERMINE: untyped
|
5752
|
-
VULTUREQUEUE3_CANCEL: untyped
|
5753
|
-
VULTUREQUEUE3_CANCELSLOT: untyped
|
5754
|
-
SUPERWARPGATETRAIN_ZEALOT: untyped
|
5755
|
-
SUPERWARPGATETRAIN_STALKER: untyped
|
5756
|
-
SUPERWARPGATETRAIN_IMMORTAL: untyped
|
5757
|
-
SUPERWARPGATETRAIN_HIGHTEMPLAR: untyped
|
5758
|
-
SUPERWARPGATETRAIN_DARKTEMPLAR: untyped
|
5759
|
-
SUPERWARPGATETRAIN_SENTRY: untyped
|
5760
|
-
SUPERWARPGATETRAIN_CARRIER: untyped
|
5761
|
-
SUPERWARPGATETRAIN_PHOENIX: untyped
|
5762
|
-
SUPERWARPGATETRAIN_VOIDRAY: untyped
|
5763
|
-
SUPERWARPGATETRAIN_ARCHON: untyped
|
5764
|
-
SUPERWARPGATETRAIN_WARPINZERATUL: untyped
|
5765
|
-
SUPERWARPGATETRAIN_WARPINURUN: untyped
|
5766
|
-
SUPERWARPGATETRAIN_WARPINMOHANDAR: untyped
|
5767
|
-
SUPERWARPGATETRAIN_WARPINSELENDIS: untyped
|
5768
|
-
SUPERWARPGATETRAIN_WARPINSCOUT: untyped
|
5769
|
-
SUPERWARPGATETRAIN_COLOSSUS: untyped
|
5770
|
-
SUPERWARPGATETRAIN_WARPPRISM: untyped
|
5771
|
-
BURROWOMEGALISKDOWN_BURROWDOWN: untyped
|
5772
|
-
BURROWOMEGALISKUP_BURROWUP: untyped
|
5773
|
-
BURROWINFESTEDABOMINATIONDOWN_BURROWDOWN: untyped
|
5774
|
-
BURROWINFESTEDABOMINATIONUP_BURROWUP: untyped
|
5775
|
-
BURROWHUNTERKILLERDOWN_BURROWDOWN: untyped
|
5776
|
-
BURROWHUNTERKILLERDOWN_CANCEL: untyped
|
5777
|
-
BURROWHUNTERKILLERUP_BURROWUP: untyped
|
5778
|
-
NOVASNIPE_NOVASNIPE: untyped
|
5779
|
-
VORTEXPURIFIER_VORTEX: untyped
|
5780
|
-
TALDARIMVORTEX_VORTEX: untyped
|
5781
|
-
PURIFIERPLANETCRACKER_PLANETCRACKER: untyped
|
5782
|
-
BURROWINFESTEDTERRANCAMPAIGNDOWN_BURROWDOWN: untyped
|
5783
|
-
BURROWINFESTEDTERRANCAMPAIGNUP_BURROWUP: untyped
|
5784
|
-
INFESTEDMONSTERTRAIN_INFESTEDCIVILIAN: untyped
|
5785
|
-
INFESTEDMONSTERTRAIN_INFESTEDTERRANCAMPAIGN: untyped
|
5786
|
-
INFESTEDMONSTERTRAIN_INFESTEDABOMINATION: untyped
|
5787
|
-
BIODOMETRANSPORT_BIODOMELOAD: untyped
|
5788
|
-
BIODOMETRANSPORT_BIODOMEUNLOADALL: untyped
|
5789
|
-
ATTACKALLOWSINVULNERABLE_ATTACKALLOWSINVULNERABLE: untyped
|
5790
|
-
ATTACKALLOWSINVULNERABLE_ATTACKTOWARDS: untyped
|
5791
|
-
ATTACKALLOWSINVULNERABLE_ATTACKBARRAGE: untyped
|
5792
|
-
ZERATULSTUN_ZERATULSTUN: untyped
|
5793
|
-
WRAITHCLOAK_CLOAKOFF: untyped
|
5794
|
-
BARRACKSTECHREACTORMORPH_TECHLABBARRACKS: untyped
|
5795
|
-
FACTORYTECHREACTORMORPH_TECHLABFACTORY: untyped
|
5796
|
-
STARPORTTECHREACTORMORPH_TECHLABSTARPORT: untyped
|
5797
|
-
SS_FIGHTERSHOOTING_SS_SHOOTING: untyped
|
5798
|
-
RAYNORC4_PLANTC4CHARGE: untyped
|
5799
|
-
DUKESREVENGEDEFENSIVEMATRIX_DEFENSIVEMATRIX: untyped
|
5800
|
-
DUKESREVENGEMISSILEPODS_MISSILEPODS: untyped
|
5801
|
-
THORWRECKAGE_THOR: untyped
|
5802
|
-
THORREBORN_THOR: untyped
|
5803
|
-
THORREBORN_CANCEL: untyped
|
5804
|
-
SPECTRENUKE_SPECTRENUKECALLDOWN: untyped
|
5805
|
-
SPECTRENUKE_CANCEL: untyped
|
5806
|
-
SPECTRENUKESILOARMMAGAZINE_SPECTRENUKEARM: untyped
|
5807
|
-
COLONISTSHIPLIFTOFF_LIFT: untyped
|
5808
|
-
COLONISTSHIPLAND_LAND: untyped
|
5809
|
-
BIODOMECOMMANDLIFTOFF_LIFT: untyped
|
5810
|
-
BIODOMECOMMANDLAND_LAND: untyped
|
5811
|
-
HERCULESLIFTOFF_LIFT: untyped
|
5812
|
-
HERCULESLAND_HERCULESLAND: untyped
|
5813
|
-
LIGHTBRIDGEOFF_LIGHTBRIDGEOFF: untyped
|
5814
|
-
LIGHTBRIDGEON_LIGHTBRIDGEON: untyped
|
5815
|
-
LIBRARYDOWN_LIBRARYDOWN: untyped
|
5816
|
-
LIBRARYUP_LIBRARYUP: untyped
|
5817
|
-
TEMPLEDOORDOWN_TEMPLEDOORDOWN: untyped
|
5818
|
-
TEMPLEDOORUP_TEMPLEDOORUP: untyped
|
5819
|
-
TEMPLEDOORDOWNURDL_TEMPLEDOORDOWNURDL: untyped
|
5820
|
-
TEMPLEDOORUPURDL_TEMPLEDOORUPURDL: untyped
|
5821
|
-
PSYTROUSOXIDE_PSYTROUSOXIDEON: untyped
|
5822
|
-
PSYTROUSOXIDE_PSYTROUSOXIDEOFF: untyped
|
5823
|
-
BIOPLASMIDDISCHARGE_BIOPLASMIDDISCHARGE: untyped
|
5824
|
-
WRECKINGCREWASSAULTMODE_ASSAULTMODE: untyped
|
5825
|
-
WRECKINGCREWFIGHTERMODE_FIGHTERMODE: untyped
|
5826
|
-
BIOSTASIS_BIOSTASIS: untyped
|
5827
|
-
COLONISTTRANSPORTTRANSPORT_COLONISTTRANSPORTLOAD: untyped
|
5828
|
-
COLONISTTRANSPORTTRANSPORT_COLONISTTRANSPORTUNLOADALL: untyped
|
5829
|
-
DROPTOSUPPLYDEPOT_RAISE: untyped
|
5830
|
-
REFINERYTOAUTOMATEDREFINERY_RAISE: untyped
|
5831
|
-
HELIOSCRASHMORPH_CRASHMORPH: untyped
|
5832
|
-
NANOREPAIR_HEAL: untyped
|
5833
|
-
PICKUP_PICKUP: untyped
|
5834
|
-
PICKUPARCADE_PICKUP: untyped
|
5835
|
-
PICKUPGAS100_PICKUPGAS100: untyped
|
5836
|
-
PICKUPMINERALS100_PICKUPMINERALS100: untyped
|
5837
|
-
TAURENSTIMPACK_STIM: untyped
|
5838
|
-
TESTREVIVE_SCV: untyped
|
5839
|
-
TESTINTERACT_DESIGNATE: untyped
|
5840
|
-
CLIFFDOOROPEN0_SPACEPLATFORMDOOROPEN: untyped
|
5841
|
-
CLIFFDOORCLOSE0_SPACEPLATFORMDOORCLOSE: untyped
|
5842
|
-
CLIFFDOOROPEN1_SPACEPLATFORMDOOROPEN: untyped
|
5843
|
-
CLIFFDOORCLOSE1_SPACEPLATFORMDOORCLOSE: untyped
|
5844
|
-
DESTRUCTIBLEGATEDIAGONALBLURLOWERED_GATEOPEN: untyped
|
5845
|
-
DESTRUCTIBLEGATEDIAGONALULBRLOWERED_GATEOPEN: untyped
|
5846
|
-
DESTRUCTIBLEGATESTRAIGHTHORIZONTALBFLOWERED_GATEOPEN: untyped
|
5847
|
-
DESTRUCTIBLEGATESTRAIGHTHORIZONTALLOWERED_GATEOPEN: untyped
|
5848
|
-
DESTRUCTIBLEGATESTRAIGHTVERTICALLFLOWERED_GATEOPEN: untyped
|
5849
|
-
DESTRUCTIBLEGATESTRAIGHTVERTICALLOWERED_GATEOPEN: untyped
|
5850
|
-
DESTRUCTIBLEGATEDIAGONALBLUR_GATECLOSE: untyped
|
5851
|
-
DESTRUCTIBLEGATEDIAGONALULBR_GATECLOSE: untyped
|
5852
|
-
DESTRUCTIBLEGATESTRAIGHTHORIZONTALBF_GATECLOSE: untyped
|
5853
|
-
DESTRUCTIBLEGATESTRAIGHTHORIZONTAL_GATECLOSE: untyped
|
5854
|
-
DESTRUCTIBLEGATESTRAIGHTVERTICALLF_GATECLOSE: untyped
|
5855
|
-
DESTRUCTIBLEGATESTRAIGHTVERTICAL_GATECLOSE: untyped
|
5856
|
-
TESTLEARN_TESTLEARN: untyped
|
5857
|
-
TESTLEVELEDSPELL_YAMATOGUN: untyped
|
5858
|
-
METALGATEDIAGONALBLURLOWERED_GATEOPEN: untyped
|
5859
|
-
METALGATEDIAGONALULBRLOWERED_GATEOPEN: untyped
|
5860
|
-
METALGATESTRAIGHTHORIZONTALBFLOWERED_GATEOPEN: untyped
|
5861
|
-
METALGATESTRAIGHTHORIZONTALLOWERED_GATEOPEN: untyped
|
5862
|
-
METALGATESTRAIGHTVERTICALLFLOWERED_GATEOPEN: untyped
|
5863
|
-
METALGATESTRAIGHTVERTICALLOWERED_GATEOPEN: untyped
|
5864
|
-
METALGATEDIAGONALBLUR_GATECLOSE: untyped
|
5865
|
-
METALGATEDIAGONALULBR_GATECLOSE: untyped
|
5866
|
-
METALGATESTRAIGHTHORIZONTALBF_GATECLOSE: untyped
|
5867
|
-
METALGATESTRAIGHTHORIZONTAL_GATECLOSE: untyped
|
5868
|
-
METALGATESTRAIGHTVERTICALLF_GATECLOSE: untyped
|
5869
|
-
METALGATESTRAIGHTVERTICAL_GATECLOSE: untyped
|
5870
|
-
SECURITYGATEDIAGONALBLURLOWERED_GATEOPEN: untyped
|
5871
|
-
SECURITYGATEDIAGONALULBRLOWERED_GATEOPEN: untyped
|
5872
|
-
SECURITYGATESTRAIGHTHORIZONTALBFLOWERED_GATEOPEN: untyped
|
5873
|
-
SECURITYGATESTRAIGHTHORIZONTALLOWERED_GATEOPEN: untyped
|
5874
|
-
SECURITYGATESTRAIGHTVERTICALLFLOWERED_GATEOPEN: untyped
|
5875
|
-
SECURITYGATESTRAIGHTVERTICALLOWERED_GATEOPEN: untyped
|
5876
|
-
SECURITYGATEDIAGONALBLUR_GATECLOSE: untyped
|
5877
|
-
SECURITYGATEDIAGONALULBR_GATECLOSE: untyped
|
5878
|
-
SECURITYGATESTRAIGHTHORIZONTALBF_GATECLOSE: untyped
|
5879
|
-
SECURITYGATESTRAIGHTHORIZONTAL_GATECLOSE: untyped
|
5880
|
-
SECURITYGATESTRAIGHTVERTICALLF_GATECLOSE: untyped
|
5881
|
-
SECURITYGATESTRAIGHTVERTICAL_GATECLOSE: untyped
|
5882
|
-
CHANGESHRINETERRAN_CHANGESHRINETERRAN: untyped
|
5883
|
-
CHANGESHRINEPROTOSS_CHANGESHRINEPROTOSS: untyped
|
5884
|
-
SPECTREHOLDFIRE_SPECTREHOLDFIRE: untyped
|
5885
|
-
SPECTREWEAPONSFREE_WEAPONSFREE: untyped
|
5886
|
-
GWALEARN_TESTLEARN: untyped
|
5887
|
-
LIGHTBRIDGEOFFTOPRIGHT_LIGHTBRIDGEOFF: untyped
|
5888
|
-
LIGHTBRIDGEONTOPRIGHT_LIGHTBRIDGEON: untyped
|
5889
|
-
TESTHEROGRAB_GRABZERGLING: untyped
|
5890
|
-
TESTHEROTHROW_THROWZERGLING: untyped
|
5891
|
-
TESTHERODEBUGMISSILEABILITY_TESTHERODEBUGMISSILEABILITY: untyped
|
5892
|
-
TESTHERODEBUGTRACKINGABILITY_TESTHERODEBUGTRACKINGABILITY: untyped
|
5893
|
-
TESTHERODEBUGTRACKINGABILITY_CANCEL: untyped
|
5894
5343
|
CANCEL: untyped
|
5895
5344
|
HALT: untyped
|
5896
5345
|
BURROWDOWN: untyped
|
@@ -5902,7 +5351,6 @@ module Api
|
|
5902
5351
|
HARVEST_RETURN: untyped
|
5903
5352
|
LOAD: untyped
|
5904
5353
|
UNLOADALLAT: untyped
|
5905
|
-
UNLOADUNIT: untyped
|
5906
5354
|
CANCEL_LAST: untyped
|
5907
5355
|
CANCEL_SLOT: untyped
|
5908
5356
|
RALLY_UNITS: untyped
|
@@ -5924,21 +5372,6 @@ module Api
|
|
5924
5372
|
BEHAVIOR_HOLDFIREOFF: untyped
|
5925
5373
|
RALLY_WORKERS: untyped
|
5926
5374
|
BUILD_CREEPTUMOR: untyped
|
5927
|
-
RESEARCH_PROTOSSAIRARMOR: untyped
|
5928
|
-
RESEARCH_PROTOSSAIRWEAPONS: untyped
|
5929
|
-
RESEARCH_PROTOSSGROUNDARMOR: untyped
|
5930
|
-
RESEARCH_PROTOSSGROUNDWEAPONS: untyped
|
5931
|
-
RESEARCH_PROTOSSSHIELDS: untyped
|
5932
|
-
RESEARCH_TERRANINFANTRYARMOR: untyped
|
5933
|
-
RESEARCH_TERRANINFANTRYWEAPONS: untyped
|
5934
|
-
RESEARCH_TERRANSHIPWEAPONS: untyped
|
5935
|
-
RESEARCH_TERRANVEHICLEANDSHIPPLATING: untyped
|
5936
|
-
RESEARCH_TERRANVEHICLEWEAPONS: untyped
|
5937
|
-
RESEARCH_ZERGFLYERARMOR: untyped
|
5938
|
-
RESEARCH_ZERGFLYERATTACK: untyped
|
5939
|
-
RESEARCH_ZERGGROUNDARMOR: untyped
|
5940
|
-
RESEARCH_ZERGMELEEWEAPONS: untyped
|
5941
|
-
RESEARCH_ZERGMISSILEWEAPONS: untyped
|
5942
5375
|
CANCEL_VOIDRAYPRISMATICALIGNMENT: untyped
|
5943
5376
|
RESEARCH_ADAPTIVETALONS: untyped
|
5944
5377
|
LURKERDENRESEARCH_RESEARCHLURKERRANGE: untyped
|
@@ -5947,27 +5380,19 @@ module Api
|
|
5947
5380
|
MORPH_OVERSIGHTMODE: untyped
|
5948
5381
|
MORPH_OVERSEERMODE: untyped
|
5949
5382
|
EFFECT_INTERFERENCEMATRIX: untyped
|
5950
|
-
EFFECT_REPAIRDRONE: untyped
|
5951
5383
|
EFFECT_REPAIR_REPAIRDRONE: untyped
|
5952
5384
|
EFFECT_ANTIARMORMISSILE: untyped
|
5953
5385
|
EFFECT_CHRONOBOOSTENERGYCOST: untyped
|
5954
5386
|
EFFECT_MASSRECALL_NEXUS: untyped
|
5955
|
-
NEXUSSHIELDRECHARGE_NEXUSSHIELDRECHARGE: untyped
|
5956
|
-
NEXUSSHIELDRECHARGEONPYLON_NEXUSSHIELDRECHARGEONPYLON: untyped
|
5957
5387
|
INFESTORENSNARE_INFESTORENSNARE: untyped
|
5958
|
-
EFFECT_RESTORE: untyped
|
5959
|
-
NEXUSSHIELDOVERCHARGE_NEXUSSHIELDOVERCHARGE: untyped
|
5960
|
-
NEXUSSHIELDOVERCHARGEOFF_NEXUSSHIELDOVERCHARGEOFF: untyped
|
5961
5388
|
ATTACK_BATTLECRUISER: untyped
|
5962
5389
|
BATTLECRUISERATTACK_ATTACKTOWARDS: untyped
|
5963
5390
|
BATTLECRUISERATTACK_ATTACKBARRAGE: untyped
|
5964
|
-
BATTLECRUISERATTACKEVALUATOR_MOTHERSHIPCOREATTACK: untyped
|
5965
5391
|
MOVE_BATTLECRUISER: untyped
|
5966
5392
|
PATROL_BATTLECRUISER: untyped
|
5967
5393
|
HOLDPOSITION_BATTLECRUISER: untyped
|
5968
5394
|
BATTLECRUISERMOVE_ACQUIREMOVE: untyped
|
5969
5395
|
BATTLECRUISERMOVE_TURN: untyped
|
5970
|
-
BATTLECRUISERSTOPEVALUATOR_STOP: untyped
|
5971
5396
|
STOP_BATTLECRUISER: untyped
|
5972
5397
|
BATTLECRUISERSTOP_HOLDFIRE: untyped
|
5973
5398
|
BATTLECRUISERSTOP_CHEER: untyped
|
@@ -5977,41 +5402,19 @@ module Api
|
|
5977
5402
|
HOLDPOSITION: untyped
|
5978
5403
|
MOVE: untyped
|
5979
5404
|
PATROL: untyped
|
5980
|
-
|
5981
|
-
LOADOUTSPRAY_LOADOUTSPRAY2: untyped
|
5982
|
-
LOADOUTSPRAY_LOADOUTSPRAY3: untyped
|
5983
|
-
LOADOUTSPRAY_LOADOUTSPRAY4: untyped
|
5984
|
-
LOADOUTSPRAY_LOADOUTSPRAY5: untyped
|
5985
|
-
LOADOUTSPRAY_LOADOUTSPRAY6: untyped
|
5986
|
-
LOADOUTSPRAY_LOADOUTSPRAY7: untyped
|
5987
|
-
LOADOUTSPRAY_LOADOUTSPRAY8: untyped
|
5988
|
-
LOADOUTSPRAY_LOADOUTSPRAY9: untyped
|
5989
|
-
LOADOUTSPRAY_LOADOUTSPRAY10: untyped
|
5990
|
-
LOADOUTSPRAY_LOADOUTSPRAY11: untyped
|
5991
|
-
LOADOUTSPRAY_LOADOUTSPRAY12: untyped
|
5992
|
-
LOADOUTSPRAY_LOADOUTSPRAY13: untyped
|
5993
|
-
LOADOUTSPRAY_LOADOUTSPRAY14: untyped
|
5405
|
+
UNLOADUNIT: untyped
|
5994
5406
|
MORPHTOCOLLAPSIBLEROCKTOWERDEBRISRAMPLEFTGREEN_CANCEL: untyped
|
5995
5407
|
MORPHTOCOLLAPSIBLEROCKTOWERDEBRISRAMPRIGHTGREEN_CANCEL: untyped
|
5996
|
-
BATTERYOVERCHARGE_BATTERYOVERCHARGE: untyped
|
5997
5408
|
AMORPHOUSARMORCLOUD_AMORPHOUSARMORCLOUD: untyped
|
5998
5409
|
SHIELDBATTERYRECHARGEEX5_SHIELDBATTERYRECHARGE: untyped
|
5999
5410
|
SHIELDBATTERYRECHARGEEX5_STOP: untyped
|
6000
5411
|
MORPHTOBANELING_BANELING: untyped
|
6001
5412
|
MORPHTOBANELING_CANCEL: untyped
|
6002
5413
|
MOTHERSHIPCLOAK_ORACLECLOAKFIELD: untyped
|
6003
|
-
|
6004
|
-
|
6005
|
-
|
6006
|
-
|
6007
|
-
# sord omit - no YARD return type given, using untyped
|
6008
|
-
def self._250MMSTRIKECANNONS_CANCEL: () -> untyped
|
6009
|
-
|
6010
|
-
# sord omit - no YARD return type given, using untyped
|
6011
|
-
def self._330MMBARRAGECANNONS_330MMBARRAGECANNONS: () -> untyped
|
6012
|
-
|
6013
|
-
# sord omit - no YARD return type given, using untyped
|
6014
|
-
def self._330MMBARRAGECANNONS_CANCEL: () -> untyped
|
5414
|
+
ENERGYRECHARGE_ENERGYRECHARGE: untyped
|
5415
|
+
SALVAGEEFFECT_SALVAGE: untyped
|
5416
|
+
WORKERSTOPIDLEABILITYVESPENE_GATHER: untyped
|
5417
|
+
FRENZY: untyped
|
6015
5418
|
|
6016
5419
|
# Returns an array of all constants
|
6017
5420
|
def self.ids: () -> ::Array[Integer]
|
@@ -6029,7 +5432,6 @@ module Api
|
|
6029
5432
|
|
6030
5433
|
# Constant reference of Upgrade ids
|
6031
5434
|
module UpgradeId
|
6032
|
-
NULL: untyped
|
6033
5435
|
CARRIERLAUNCHSPEEDUPGRADE: untyped
|
6034
5436
|
GLIALRECONSTITUTION: untyped
|
6035
5437
|
TUNNELINGCLAWS: untyped
|
@@ -6047,7 +5449,6 @@ module Api
|
|
6047
5449
|
STIMPACK: untyped
|
6048
5450
|
SHIELDWALL: untyped
|
6049
5451
|
PUNISHERGRENADES: untyped
|
6050
|
-
SIEGETECH: untyped
|
6051
5452
|
HIGHCAPACITYBARRELS: untyped
|
6052
5453
|
BANSHEECLOAK: untyped
|
6053
5454
|
MEDIVACCADUCEUSREACTOR: untyped
|
@@ -6055,7 +5456,6 @@ module Api
|
|
6055
5456
|
HUNTERSEEKER: untyped
|
6056
5457
|
DURABLEMATERIALS: untyped
|
6057
5458
|
PERSONALCLOAKING: untyped
|
6058
|
-
GHOSTMOEBIUSREACTOR: untyped
|
6059
5459
|
TERRANVEHICLEARMORSLEVEL1: untyped
|
6060
5460
|
TERRANVEHICLEARMORSLEVEL2: untyped
|
6061
5461
|
TERRANVEHICLEARMORSLEVEL3: untyped
|
@@ -6080,7 +5480,6 @@ module Api
|
|
6080
5480
|
OBSERVERGRAVITICBOOSTER: untyped
|
6081
5481
|
GRAVITICDRIVE: untyped
|
6082
5482
|
EXTENDEDTHERMALLANCE: untyped
|
6083
|
-
HIGHTEMPLARKHAYDARINAMULET: untyped
|
6084
5483
|
PSISTORMTECH: untyped
|
6085
5484
|
ZERGMELEEWEAPONSLEVEL1: untyped
|
6086
5485
|
ZERGMELEEWEAPONSLEVEL2: untyped
|
@@ -6096,17 +5495,14 @@ module Api
|
|
6096
5495
|
BURROW: untyped
|
6097
5496
|
ZERGLINGATTACKSPEED: untyped
|
6098
5497
|
ZERGLINGMOVEMENTSPEED: untyped
|
6099
|
-
HYDRALISKSPEED: untyped
|
6100
5498
|
ZERGFLYERWEAPONSLEVEL1: untyped
|
6101
5499
|
ZERGFLYERWEAPONSLEVEL2: untyped
|
6102
5500
|
ZERGFLYERWEAPONSLEVEL3: untyped
|
6103
5501
|
ZERGFLYERARMORSLEVEL1: untyped
|
6104
5502
|
ZERGFLYERARMORSLEVEL2: untyped
|
6105
5503
|
ZERGFLYERARMORSLEVEL3: untyped
|
6106
|
-
INFESTORENERGYUPGRADE: untyped
|
6107
5504
|
CENTRIFICALHOOKS: untyped
|
6108
5505
|
BATTLECRUISERENABLESPECIALIZATIONS: untyped
|
6109
|
-
BATTLECRUISERBEHEMOTHREACTOR: untyped
|
6110
5506
|
PROTOSSAIRWEAPONSLEVEL1: untyped
|
6111
5507
|
PROTOSSAIRWEAPONSLEVEL2: untyped
|
6112
5508
|
PROTOSSAIRWEAPONSLEVEL3: untyped
|
@@ -6118,51 +5514,24 @@ module Api
|
|
6118
5514
|
CHARGE: untyped
|
6119
5515
|
BLINKTECH: untyped
|
6120
5516
|
ANABOLICSYNTHESIS: untyped
|
6121
|
-
OBVERSEINCUBATION: untyped
|
6122
|
-
VIKINGJOTUNBOOSTERS: untyped
|
6123
|
-
ORGANICCARAPACE: untyped
|
6124
|
-
INFESTORPERISTALSIS: untyped
|
6125
|
-
ABDOMINALFORTITUDE: untyped
|
6126
|
-
HYDRALISKSPEEDUPGRADE: untyped
|
6127
|
-
BANELINGBURROWMOVE: untyped
|
6128
|
-
COMBATDRUGS: untyped
|
6129
|
-
STRIKECANNONS: untyped
|
6130
5517
|
TRANSFORMATIONSERVOS: untyped
|
6131
5518
|
PHOENIXRANGEUPGRADE: untyped
|
6132
5519
|
TEMPESTRANGEUPGRADE: untyped
|
6133
5520
|
NEURALPARASITE: untyped
|
6134
5521
|
LOCUSTLIFETIMEINCREASE: untyped
|
6135
|
-
ULTRALISKBURROWCHARGEUPGRADE: untyped
|
6136
|
-
ORACLEENERGYUPGRADE: untyped
|
6137
|
-
RESTORESHIELDS: untyped
|
6138
|
-
PROTOSSHEROSHIPWEAPON: untyped
|
6139
|
-
PROTOSSHEROSHIPDETECTOR: untyped
|
6140
|
-
PROTOSSHEROSHIPSPELL: untyped
|
6141
|
-
REAPERJUMP: untyped
|
6142
|
-
INCREASEDRANGE: untyped
|
6143
|
-
ZERGBURROWMOVE: untyped
|
6144
|
-
ANIONPULSECRYSTALS: untyped
|
6145
5522
|
TERRANVEHICLEANDSHIPWEAPONSLEVEL1: untyped
|
6146
5523
|
TERRANVEHICLEANDSHIPWEAPONSLEVEL2: untyped
|
6147
5524
|
TERRANVEHICLEANDSHIPWEAPONSLEVEL3: untyped
|
6148
5525
|
TERRANVEHICLEANDSHIPARMORSLEVEL1: untyped
|
6149
5526
|
TERRANVEHICLEANDSHIPARMORSLEVEL2: untyped
|
6150
5527
|
TERRANVEHICLEANDSHIPARMORSLEVEL3: untyped
|
6151
|
-
FLYINGLOCUSTS: untyped
|
6152
5528
|
ROACHSUPPLY: untyped
|
6153
5529
|
IMMORTALREVIVE: untyped
|
6154
5530
|
DRILLCLAWS: untyped
|
6155
5531
|
CYCLONELOCKONRANGEUPGRADE: untyped
|
6156
|
-
CYCLONEAIRUPGRADE: untyped
|
6157
5532
|
LIBERATORMORPH: untyped
|
6158
|
-
ADEPTSHIELDUPGRADE: untyped
|
6159
5533
|
LURKERRANGE: untyped
|
6160
|
-
IMMORTALBARRIER: untyped
|
6161
|
-
ADEPTKILLBOUNCE: untyped
|
6162
5534
|
ADEPTPIERCINGATTACK: untyped
|
6163
|
-
CINEMATICMODE: untyped
|
6164
|
-
CURSORDEBUG: untyped
|
6165
|
-
MAGFIELDLAUNCHERS: untyped
|
6166
5535
|
EVOLVEGROOVEDSPINES: untyped
|
6167
5536
|
EVOLVEMUSCULARAUGMENTS: untyped
|
6168
5537
|
BANSHEESPEED: untyped
|
@@ -6171,171 +5540,22 @@ module Api
|
|
6171
5540
|
MEDIVACINCREASESPEEDBOOST: untyped
|
6172
5541
|
LIBERATORAGRANGEUPGRADE: untyped
|
6173
5542
|
DARKTEMPLARBLINKUPGRADE: untyped
|
6174
|
-
RAVAGERRANGE: untyped
|
6175
|
-
RAVENDAMAGEUPGRADE: untyped
|
6176
5543
|
CYCLONELOCKONDAMAGEUPGRADE: untyped
|
6177
|
-
ARESCLASSWEAPONSSYSTEMVIKING: untyped
|
6178
|
-
AUTOHARVESTER: untyped
|
6179
|
-
HYBRIDCPLASMAUPGRADEHARD: untyped
|
6180
|
-
HYBRIDCPLASMAUPGRADEINSANE: untyped
|
6181
|
-
INTERCEPTORLIMIT4: untyped
|
6182
|
-
INTERCEPTORLIMIT6: untyped
|
6183
|
-
NOTPOSSIBLESIEGEMODE: untyped
|
6184
|
-
NEOSTEELFRAME_2: untyped
|
6185
|
-
NEOSTEELANDSHRIKETURRETICONUPGRADE: untyped
|
6186
|
-
OCULARIMPLANTS: untyped
|
6187
|
-
CROSSSPECTRUMDAMPENERS: untyped
|
6188
|
-
ORBITALSTRIKE: untyped
|
6189
|
-
CLUSTERBOMB: untyped
|
6190
|
-
SHAPEDHULL: untyped
|
6191
|
-
SPECTRETOOLTIPUPGRADE: untyped
|
6192
|
-
ULTRACAPACITORS: untyped
|
6193
|
-
VANADIUMPLATING: untyped
|
6194
|
-
COMMANDCENTERREACTOR: untyped
|
6195
|
-
REGENERATIVEBIOSTEEL: untyped
|
6196
|
-
CELLULARREACTORS: untyped
|
6197
|
-
BANSHEECLOAKEDDAMAGE: untyped
|
6198
|
-
DISTORTIONBLASTERS: untyped
|
6199
|
-
EMPTOWER: untyped
|
6200
|
-
SUPPLYDEPOTDROP: untyped
|
6201
|
-
HIVEMINDEMULATOR: untyped
|
6202
|
-
FORTIFIEDBUNKERCARAPACE: untyped
|
6203
|
-
PREDATOR: untyped
|
6204
|
-
SCIENCEVESSEL: untyped
|
6205
|
-
DUALFUSIONWELDERS: untyped
|
6206
|
-
ADVANCEDCONSTRUCTION: untyped
|
6207
|
-
ADVANCEDMEDICTRAINING: untyped
|
6208
|
-
PROJECTILEACCELERATORS: untyped
|
6209
|
-
REINFORCEDSUPERSTRUCTURE: untyped
|
6210
|
-
MULE: untyped
|
6211
|
-
ORBITALRELAY: untyped
|
6212
|
-
RAZORWIRE: untyped
|
6213
|
-
ADVANCEDHEALINGAI: untyped
|
6214
|
-
TWINLINKEDFLAMETHROWERS: untyped
|
6215
|
-
NANOCONSTRUCTOR: untyped
|
6216
|
-
CERBERUSMINES: untyped
|
6217
|
-
HYPERFLUXOR: untyped
|
6218
|
-
TRILITHIUMPOWERCELLS: untyped
|
6219
|
-
PERMANENTCLOAKGHOST: untyped
|
6220
|
-
PERMANENTCLOAKSPECTRE: untyped
|
6221
|
-
ULTRASONICPULSE: untyped
|
6222
|
-
SURVIVALPODS: untyped
|
6223
|
-
ENERGYSTORAGE: untyped
|
6224
|
-
FULLBORECANISTERAMMO: untyped
|
6225
|
-
CAMPAIGNJOTUNBOOSTERS: untyped
|
6226
|
-
MICROFILTERING: untyped
|
6227
|
-
PARTICLECANNONAIR: untyped
|
6228
|
-
VULTUREAUTOREPAIR: untyped
|
6229
|
-
PSIDISRUPTOR: untyped
|
6230
|
-
SCIENCEVESSELENERGYMANIPULATION: untyped
|
6231
|
-
SCIENCEVESSELPLASMAWEAPONRY: untyped
|
6232
|
-
SHOWGATLINGGUN: untyped
|
6233
|
-
TECHREACTOR: untyped
|
6234
|
-
TECHREACTORAI: untyped
|
6235
|
-
TERRANDEFENSERANGEBONUS: untyped
|
6236
|
-
X88TNAPALMUPGRADE: untyped
|
6237
|
-
HURRICANEMISSILES: untyped
|
6238
|
-
MECHANICALREBIRTH: untyped
|
6239
|
-
MARINESTIMPACK: untyped
|
6240
|
-
DARKTEMPLARTACTICS: untyped
|
6241
|
-
CLUSTERWARHEADS: untyped
|
6242
|
-
CLOAKDISTORTIONFIELD: untyped
|
6243
|
-
DEVASTATORMISSILES: untyped
|
6244
|
-
DISTORTIONTHRUSTERS: untyped
|
6245
|
-
DYNAMICPOWERROUTING: untyped
|
6246
|
-
IMPALERROUNDS: untyped
|
6247
|
-
KINETICFIELDS: untyped
|
6248
|
-
BURSTCAPACITORS: untyped
|
6249
|
-
HAILSTORMMISSILEPODS: untyped
|
6250
|
-
RAPIDDEPLOYMENT: untyped
|
6251
|
-
REAPERSTIMPACK: untyped
|
6252
|
-
REAPERD8CHARGE: untyped
|
6253
|
-
TYCHUS05BATTLECRUISERPENETRATION: untyped
|
6254
|
-
VIRALPLASMA: untyped
|
6255
|
-
FIREBATJUGGERNAUTPLATING: untyped
|
6256
|
-
MULTILOCKTARGETINGSYSTEMS: untyped
|
6257
|
-
TURBOCHARGEDENGINES: untyped
|
6258
|
-
DISTORTIONSENSORS: untyped
|
6259
|
-
INFERNALPREIGNITERS: untyped
|
6260
|
-
HELLIONCAMPAIGNINFERNALPREIGNITER: untyped
|
6261
|
-
NAPALMFUELTANKS: untyped
|
6262
|
-
AUXILIARYMEDBOTS: untyped
|
6263
|
-
JUGGERNAUTPLATING: untyped
|
6264
|
-
MARAUDERLIFEBOOST: untyped
|
6265
|
-
COMBATSHIELD: untyped
|
6266
|
-
REAPERU238ROUNDS: untyped
|
6267
|
-
MAELSTROMROUNDS: untyped
|
6268
|
-
SIEGETANKSHAPEDBLAST: untyped
|
6269
|
-
TUNGSTENSPIKES: untyped
|
6270
|
-
BEARCLAWNOZZLES: untyped
|
6271
|
-
NANOBOTINJECTORS: untyped
|
6272
|
-
STABILIZERMEDPACKS: untyped
|
6273
|
-
HALOROCKETS: untyped
|
6274
|
-
SCAVENGINGSYSTEMS: untyped
|
6275
|
-
EXTRAMINES: untyped
|
6276
|
-
ARESCLASSWEAPONSSYSTEM: untyped
|
6277
|
-
WHITENAPALM: untyped
|
6278
|
-
VIRALMUNITIONS: untyped
|
6279
|
-
JACKHAMMERCONCUSSIONGRENADES: untyped
|
6280
|
-
FIRESUPPRESSIONSYSTEMS: untyped
|
6281
|
-
FLARERESEARCH: untyped
|
6282
|
-
MODULARCONSTRUCTION: untyped
|
6283
|
-
EXPANDEDHULL: untyped
|
6284
|
-
SHRIKETURRET: untyped
|
6285
|
-
MICROFUSIONREACTORS: untyped
|
6286
|
-
WRAITHCLOAK: untyped
|
6287
|
-
SINGULARITYCHARGE: untyped
|
6288
|
-
GRAVITICTHRUSTERS: untyped
|
6289
|
-
YAMATOCANNON: untyped
|
6290
|
-
DEFENSIVEMATRIX: untyped
|
6291
|
-
DARKPROTOSS: untyped
|
6292
|
-
TERRANINFANTRYWEAPONSULTRACAPACITORSLEVEL1: untyped
|
6293
|
-
TERRANINFANTRYWEAPONSULTRACAPACITORSLEVEL2: untyped
|
6294
|
-
TERRANINFANTRYWEAPONSULTRACAPACITORSLEVEL3: untyped
|
6295
|
-
TERRANINFANTRYARMORSVANADIUMPLATINGLEVEL1: untyped
|
6296
|
-
TERRANINFANTRYARMORSVANADIUMPLATINGLEVEL2: untyped
|
6297
|
-
TERRANINFANTRYARMORSVANADIUMPLATINGLEVEL3: untyped
|
6298
|
-
TERRANVEHICLEWEAPONSULTRACAPACITORSLEVEL1: untyped
|
6299
|
-
TERRANVEHICLEWEAPONSULTRACAPACITORSLEVEL2: untyped
|
6300
|
-
TERRANVEHICLEWEAPONSULTRACAPACITORSLEVEL3: untyped
|
6301
|
-
TERRANVEHICLEARMORSVANADIUMPLATINGLEVEL1: untyped
|
6302
|
-
TERRANVEHICLEARMORSVANADIUMPLATINGLEVEL2: untyped
|
6303
|
-
TERRANVEHICLEARMORSVANADIUMPLATINGLEVEL3: untyped
|
6304
|
-
TERRANSHIPWEAPONSULTRACAPACITORSLEVEL1: untyped
|
6305
|
-
TERRANSHIPWEAPONSULTRACAPACITORSLEVEL2: untyped
|
6306
|
-
TERRANSHIPWEAPONSULTRACAPACITORSLEVEL3: untyped
|
6307
|
-
TERRANSHIPARMORSVANADIUMPLATINGLEVEL1: untyped
|
6308
|
-
TERRANSHIPARMORSVANADIUMPLATINGLEVEL2: untyped
|
6309
|
-
TERRANSHIPARMORSVANADIUMPLATINGLEVEL3: untyped
|
6310
|
-
HIREKELMORIANMINERSPH: untyped
|
6311
|
-
HIREDEVILDOGSPH: untyped
|
6312
|
-
HIRESPARTANCOMPANYPH: untyped
|
6313
|
-
HIREHAMMERSECURITIESPH: untyped
|
6314
|
-
HIRESIEGEBREAKERSPH: untyped
|
6315
|
-
HIREHELSANGELSPH: untyped
|
6316
|
-
HIREDUSKWINGPH: untyped
|
6317
|
-
HIREDUKESREVENGE: untyped
|
6318
|
-
TOSHEASYMODE: untyped
|
6319
5544
|
VOIDRAYSPEEDUPGRADE: untyped
|
6320
5545
|
SMARTSERVOS: untyped
|
6321
5546
|
ARMORPIERCINGROCKETS: untyped
|
6322
5547
|
CYCLONERAPIDFIRELAUNCHERS: untyped
|
6323
5548
|
RAVENENHANCEDMUNITIONS: untyped
|
6324
5549
|
DIGGINGCLAWS: untyped
|
6325
|
-
CARRIERCARRIERCAPACITY: untyped
|
6326
|
-
CARRIERLEASHRANGEUPGRADE: untyped
|
6327
5550
|
HURRICANETHRUSTERS: untyped
|
6328
5551
|
TEMPESTGROUNDATTACKUPGRADE: untyped
|
5552
|
+
FRENZY: untyped
|
6329
5553
|
MICROBIALSHROUD: untyped
|
6330
5554
|
INTERFERENCEMATRIX: untyped
|
6331
5555
|
SUNDERINGIMPACT: untyped
|
6332
5556
|
AMPLIFIEDSHIELDING: untyped
|
6333
5557
|
PSIONICAMPLIFIERS: untyped
|
6334
5558
|
SECRETEDCOATING: untyped
|
6335
|
-
ENHANCEDSHOCKWAVES: untyped
|
6336
|
-
|
6337
|
-
# sord omit - no YARD return type given, using untyped
|
6338
|
-
def self._330MMBARRAGECANNONS: () -> untyped
|
6339
5559
|
end
|
6340
5560
|
|
6341
5561
|
class ObservationUI
|
@@ -8484,63 +7704,62 @@ module Api
|
|
8484
7704
|
#
|
8485
7705
|
# ```ruby
|
8486
7706
|
# unit.has_attribute?(Api::Attribute::MECHANICAL)
|
8487
|
-
# unit.has_attribute?(:MECHANICAL)
|
8488
7707
|
# ```
|
8489
7708
|
def has_attribute?: (untyped attribute) -> bool
|
8490
7709
|
|
8491
7710
|
# Checks if unit is light
|
8492
7711
|
#
|
8493
|
-
# _@return_ — whether unit has attribute :
|
7712
|
+
# _@return_ — whether unit has attribute :LIGHT
|
8494
7713
|
def is_light?: () -> bool
|
8495
7714
|
|
8496
7715
|
# Checks if unit is armored
|
8497
7716
|
#
|
8498
|
-
# _@return_ — whether unit has attribute :
|
7717
|
+
# _@return_ — whether unit has attribute :ARMORED
|
8499
7718
|
def is_armored?: () -> bool
|
8500
7719
|
|
8501
7720
|
# Checks if unit is biological
|
8502
7721
|
#
|
8503
|
-
# _@return_ — whether unit has attribute :
|
7722
|
+
# _@return_ — whether unit has attribute :BIOLOGICAL
|
8504
7723
|
def is_biological?: () -> bool
|
8505
7724
|
|
8506
7725
|
# Checks if unit is mechanical
|
8507
7726
|
#
|
8508
|
-
# _@return_ — whether unit has attribute :
|
7727
|
+
# _@return_ — whether unit has attribute :MECHANICAL
|
8509
7728
|
def is_mechanical?: () -> bool
|
8510
7729
|
|
8511
7730
|
# Checks if unit is robotic
|
8512
7731
|
#
|
8513
|
-
# _@return_ — whether unit has attribute :
|
7732
|
+
# _@return_ — whether unit has attribute :ROBOTIC
|
8514
7733
|
def is_robotic?: () -> bool
|
8515
7734
|
|
8516
7735
|
# Checks if unit is psionic
|
8517
7736
|
#
|
8518
|
-
# _@return_ — whether unit has attribute :
|
7737
|
+
# _@return_ — whether unit has attribute :PSIONIC
|
8519
7738
|
def is_psionic?: () -> bool
|
8520
7739
|
|
8521
7740
|
# Checks if unit is massive
|
8522
7741
|
#
|
8523
|
-
# _@return_ — whether unit has attribute :
|
7742
|
+
# _@return_ — whether unit has attribute :MASSIVE
|
8524
7743
|
def is_massive?: () -> bool
|
8525
7744
|
|
8526
7745
|
# Checks if unit is structure
|
8527
7746
|
#
|
8528
|
-
# _@return_ — whether unit has attribute :
|
7747
|
+
# _@return_ — whether unit has attribute :STRUCTURE
|
8529
7748
|
def is_structure?: () -> bool
|
8530
7749
|
|
8531
7750
|
# Checks if unit is hovering
|
8532
7751
|
#
|
8533
|
-
# _@return_ — whether unit has attribute :
|
7752
|
+
# _@return_ — whether unit has attribute :HOVER
|
8534
7753
|
def is_hover?: () -> bool
|
8535
7754
|
|
8536
7755
|
# Checks if unit is heroic
|
8537
7756
|
#
|
8538
|
-
# _@return_ — whether unit has attribute :
|
7757
|
+
# _@return_ — whether unit has attribute :HEROIC
|
8539
7758
|
def is_heroic?: () -> bool
|
8540
7759
|
|
8541
7760
|
# Checks if unit is summoned
|
8542
7761
|
#
|
8543
|
-
# _@return_ — whether unit has attribute :
|
7762
|
+
# _@return_ — whether unit has attribute :SUMMONED
|
8544
7763
|
def is_summoned?: () -> bool
|
8545
7764
|
|
8546
7765
|
# Returns whether the unit is cloaked. Revealed cloak units also return true.
|
@@ -11384,12 +10603,64 @@ module Api
|
|
11384
10603
|
MINERALFIELD450: untyped
|
11385
10604
|
MINERALFIELDOPAQUE: untyped
|
11386
10605
|
MINERALFIELDOPAQUE900: untyped
|
10606
|
+
MECHAZERGLINGACGLUESCREENDUMMY_2: untyped
|
10607
|
+
MECHABANELINGACGLUESCREENDUMMY_2: untyped
|
10608
|
+
MECHAHYDRALISKACGLUESCREENDUMMY_2: untyped
|
10609
|
+
MECHAINFESTORACGLUESCREENDUMMY_2: untyped
|
10610
|
+
MECHACORRUPTORACGLUESCREENDUMMY_2: untyped
|
10611
|
+
MECHAULTRALISKACGLUESCREENDUMMY_2: untyped
|
10612
|
+
MECHAOVERSEERACGLUESCREENDUMMY_2: untyped
|
10613
|
+
MECHALURKERACGLUESCREENDUMMY_2: untyped
|
10614
|
+
MECHABATTLECARRIERLORDACGLUESCREENDUMMY_2: untyped
|
10615
|
+
MECHASPINECRAWLERACGLUESCREENDUMMY_2: untyped
|
10616
|
+
MECHASPORECRAWLERACGLUESCREENDUMMY_2: untyped
|
10617
|
+
TROOPERMENGSKACGLUESCREENDUMMY_2: untyped
|
10618
|
+
MEDIVACMENGSKACGLUESCREENDUMMY_2: untyped
|
10619
|
+
BLIMPMENGSKACGLUESCREENDUMMY_2: untyped
|
10620
|
+
MARAUDERMENGSKACGLUESCREENDUMMY_2: untyped
|
10621
|
+
GHOSTMENGSKACGLUESCREENDUMMY_2: untyped
|
10622
|
+
SIEGETANKMENGSKACGLUESCREENDUMMY_2: untyped
|
10623
|
+
THORMENGSKACGLUESCREENDUMMY_2: untyped
|
10624
|
+
VIKINGMENGSKACGLUESCREENDUMMY_2: untyped
|
10625
|
+
BATTLECRUISERMENGSKACGLUESCREENDUMMY_2: untyped
|
10626
|
+
BUNKERDEPOTMENGSKACGLUESCREENDUMMY_2: untyped
|
10627
|
+
MISSILETURRETMENGSKACGLUESCREENDUMMY_2: untyped
|
10628
|
+
ARTILLERYMENGSKACGLUESCREENDUMMY_2: untyped
|
10629
|
+
LOADOUTSPRAY1_2: untyped
|
10630
|
+
LOADOUTSPRAY2_2: untyped
|
10631
|
+
LOADOUTSPRAY3_2: untyped
|
10632
|
+
LOADOUTSPRAY4_2: untyped
|
10633
|
+
LOADOUTSPRAY5_2: untyped
|
10634
|
+
LOADOUTSPRAY6_2: untyped
|
10635
|
+
LOADOUTSPRAY7_2: untyped
|
10636
|
+
LOADOUTSPRAY8_2: untyped
|
10637
|
+
LOADOUTSPRAY9_2: untyped
|
10638
|
+
LOADOUTSPRAY10_2: untyped
|
10639
|
+
LOADOUTSPRAY11_2: untyped
|
10640
|
+
LOADOUTSPRAY12_2: untyped
|
10641
|
+
LOADOUTSPRAY13_2: untyped
|
10642
|
+
LOADOUTSPRAY14_2: untyped
|
11387
10643
|
COLLAPSIBLEROCKTOWERDEBRISRAMPLEFTGREEN: untyped
|
11388
10644
|
COLLAPSIBLEROCKTOWERDEBRISRAMPRIGHTGREEN: untyped
|
11389
10645
|
COLLAPSIBLEROCKTOWERPUSHUNITRAMPLEFTGREEN: untyped
|
11390
10646
|
COLLAPSIBLEROCKTOWERPUSHUNITRAMPRIGHTGREEN: untyped
|
11391
10647
|
COLLAPSIBLEROCKTOWERRAMPLEFTGREEN: untyped
|
11392
10648
|
COLLAPSIBLEROCKTOWERRAMPRIGHTGREEN: untyped
|
10649
|
+
DUMMYUNIT000: untyped
|
10650
|
+
DUMMYUNIT001: untyped
|
10651
|
+
DUMMYUNIT002: untyped
|
10652
|
+
DUMMYUNIT003: untyped
|
10653
|
+
DUMMYUNIT004: untyped
|
10654
|
+
DUMMYUNIT005: untyped
|
10655
|
+
DUMMYUNIT006: untyped
|
10656
|
+
DUMMYUNIT007: untyped
|
10657
|
+
DUMMYUNIT008: untyped
|
10658
|
+
DUMMYUNIT009: untyped
|
10659
|
+
DUMMYUNIT010: untyped
|
10660
|
+
DUMMYUNIT011: untyped
|
10661
|
+
DUMMYUNIT012: untyped
|
10662
|
+
DUMMYUNIT013: untyped
|
10663
|
+
DUMMYUNIT014: untyped
|
11393
10664
|
|
11394
10665
|
# sord omit - no YARD return type given, using untyped
|
11395
10666
|
def self._4SLOTBAG: () -> untyped
|
@@ -20433,63 +19704,62 @@ module Api
|
|
20433
19704
|
#
|
20434
19705
|
# ```ruby
|
20435
19706
|
# unit.has_attribute?(Api::Attribute::MECHANICAL)
|
20436
|
-
# unit.has_attribute?(:MECHANICAL)
|
20437
19707
|
# ```
|
20438
19708
|
def has_attribute?: (untyped attribute) -> bool
|
20439
19709
|
|
20440
19710
|
# Checks if unit is light
|
20441
19711
|
#
|
20442
|
-
# _@return_ — whether unit has attribute :
|
19712
|
+
# _@return_ — whether unit has attribute :LIGHT
|
20443
19713
|
def is_light?: () -> bool
|
20444
19714
|
|
20445
19715
|
# Checks if unit is armored
|
20446
19716
|
#
|
20447
|
-
# _@return_ — whether unit has attribute :
|
19717
|
+
# _@return_ — whether unit has attribute :ARMORED
|
20448
19718
|
def is_armored?: () -> bool
|
20449
19719
|
|
20450
19720
|
# Checks if unit is biological
|
20451
19721
|
#
|
20452
|
-
# _@return_ — whether unit has attribute :
|
19722
|
+
# _@return_ — whether unit has attribute :BIOLOGICAL
|
20453
19723
|
def is_biological?: () -> bool
|
20454
19724
|
|
20455
19725
|
# Checks if unit is mechanical
|
20456
19726
|
#
|
20457
|
-
# _@return_ — whether unit has attribute :
|
19727
|
+
# _@return_ — whether unit has attribute :MECHANICAL
|
20458
19728
|
def is_mechanical?: () -> bool
|
20459
19729
|
|
20460
19730
|
# Checks if unit is robotic
|
20461
19731
|
#
|
20462
|
-
# _@return_ — whether unit has attribute :
|
19732
|
+
# _@return_ — whether unit has attribute :ROBOTIC
|
20463
19733
|
def is_robotic?: () -> bool
|
20464
19734
|
|
20465
19735
|
# Checks if unit is psionic
|
20466
19736
|
#
|
20467
|
-
# _@return_ — whether unit has attribute :
|
19737
|
+
# _@return_ — whether unit has attribute :PSIONIC
|
20468
19738
|
def is_psionic?: () -> bool
|
20469
19739
|
|
20470
19740
|
# Checks if unit is massive
|
20471
19741
|
#
|
20472
|
-
# _@return_ — whether unit has attribute :
|
19742
|
+
# _@return_ — whether unit has attribute :MASSIVE
|
20473
19743
|
def is_massive?: () -> bool
|
20474
19744
|
|
20475
19745
|
# Checks if unit is structure
|
20476
19746
|
#
|
20477
|
-
# _@return_ — whether unit has attribute :
|
19747
|
+
# _@return_ — whether unit has attribute :STRUCTURE
|
20478
19748
|
def is_structure?: () -> bool
|
20479
19749
|
|
20480
19750
|
# Checks if unit is hovering
|
20481
19751
|
#
|
20482
|
-
# _@return_ — whether unit has attribute :
|
19752
|
+
# _@return_ — whether unit has attribute :HOVER
|
20483
19753
|
def is_hover?: () -> bool
|
20484
19754
|
|
20485
19755
|
# Checks if unit is heroic
|
20486
19756
|
#
|
20487
|
-
# _@return_ — whether unit has attribute :
|
19757
|
+
# _@return_ — whether unit has attribute :HEROIC
|
20488
19758
|
def is_heroic?: () -> bool
|
20489
19759
|
|
20490
19760
|
# Checks if unit is summoned
|
20491
19761
|
#
|
20492
|
-
# _@return_ — whether unit has attribute :
|
19762
|
+
# _@return_ — whether unit has attribute :SUMMONED
|
20493
19763
|
def is_summoned?: () -> bool
|
20494
19764
|
|
20495
19765
|
# Returns whether the unit is cloaked. Revealed cloak units also return true.
|